* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  color: #5D5D5D;
  font-family: "Lato", sans-serif;
}

a {
  text-decoration: none;
}

body {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.center {
  padding-left: calc(50% - 570px);
  padding-right: calc(50% - 570px);
}

.text-colored {
  color: #F16D7F !important;
}

.header {
  background-color: #222222;
}
.header__content {
  display: flex;
  justify-content: space-between;
  padding-right: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.header__block {
  display: flex;
  align-items: end;
}
.header__block--left {
  gap: 41px;
}
.header__block--right {
  gap: 33px;
}
.header__link {
  display: block;
}
.header__link--cart {
  position: relative;
}
.header__link--cart::after {
  position: absolute;
  content: "5";
  font-size: 12px;
  line-height: 20px;
  color: white;
  height: 20px;
  width: 20px;
  top: -8px;
  right: -10px;
  text-align: center;
  border-radius: 10px;
  background-color: #F16D7F;
}

.banner {
  background-color: #F1E4E6;
  margin-bottom: 65px;
}
.banner__content {
  height: 764px;
  display: flex;
  gap: 64px;
  background: no-repeat url("../img/banner.png") -228px 0;
  background-size: auto 100%;
  align-items: center;
  justify-content: end;
  padding-right: 105px;
}
.banner__text-block {
  border-left: 12px solid #F16D7F;
  padding-left: 16px;
}
.banner__title {
  color: #222222;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.banner__text {
  color: #222222;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 30px;
  margin-top: 65px;
  margin-bottom: 96px;
}
.main-nav__item {
  position: relative;
  overflow: hidden;
}
.main-nav__item:hover .main-nav__item-text-wrap {
  background-color: transparent;
}
.main-nav__item--big {
  grid-column: 1/4;
  height: fit-content;
}
.main-nav__item-img {
  display: block;
}
.main-nav__item-text-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(33, 22, 22, 0.7);
  transition: background-color 0.3s ease-out;
}
.main-nav__item-subtitle {
  color: #FFF;
}
.main-nav__item-title {
  color: #F16D7F;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.featured-items {
  margin-top: 96px;
}
.featured-items__title {
  color: #222222;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.featured-items__subtitle {
  color: #9F9F9F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.featured-items__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 30px;
  margin-top: 48px;
}
.featured-items__card {
  background-color: #F8F8F8;
}
.featured-items__card-text-wrap {
  padding: 24px 28px 16px;
}
.featured-items__card-title {
  color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.featured-items__card-description {
  color: #5D5D5D;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 16px 0;
}
.featured-items__button {
  display: block;
  width: fit-content;
  color: #F26376;
  margin: 48px auto 60px auto;
  padding: 16px 39px;
  border: 1px solid #FF6A6A;
  transition: all 0.3s;
}
.featured-items__button:hover {
  background-color: #F16D7F;
  color: #FFFFFF;
}

.feature {
  display: flex;
  gap: 30px;
  background-color: #222222;
  padding-top: 104px;
  padding-bottom: 104px;
}
.feature__item {
  flex-basis: 100%;
}
.feature__item-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 84px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.feature__item-title {
  font-size: 20px;
  font-weight: 400;
  color: #FBFBFB;
}
.feature__item-text {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: #FBFBFB;
}

.subscribe {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 97px;
  padding-bottom: 126px;
  color: #222222;
  background-image: url("../img/bg-sub.jpg");
  background-size: cover;
}
.subscribe::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(244, 244, 244, 0.6980392157);
}
.subscribe__side-wrap {
  z-index: 2;
  flex-basis: 50%;
}
.subscribe__side-wrap--center {
  display: flex;
  justify-content: center;
}
.subscribe__info {
  max-width: 360px;
}
.subscribe__info-photo {
  height: 100%;
  width: 100%;
}
.subscribe__info-photo-wrap {
  margin: 0 auto 30px;
  width: 96px;
  height: 96px;
  border-radius: 48px;
  overflow: hidden;
}
.subscribe__info-text {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
.subscribe__form-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 167.2%;
}
.subscribe__form-text {
  font-size: 18px;
  line-height: 167.2%;
}
.subscribe__form-wrap {
  display: flex;
  margin-top: 32px;
}
.subscribe__form-email {
  width: 256px;
  height: 50px;
  background-color: #E1E1E1;
  border: none;
  border-radius: 25px 0 0 25px;
  padding-left: 22px;
  padding-right: 16px;
}
.subscribe__form-button {
  width: 100px;
  height: 50px;
  background-color: #E05C6E;
  color: #FFFFFF;
  font-size: 14px;
  line-height: normal;
  border: none;
  border-radius: 0 25px 25px 0;
}

.footer {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background-color: #222222;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer__copyright {
  color: #FBFBFB;
  line-height: 32px;
}

.footer__social {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.footer__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #FFFFFF;
  transition: all 0.3s;
}
.footer__social-link svg path {
  transition: all 0.3s;
}
.footer__social-link:hover {
  background-color: #F16D7F;
}
.footer__social-link:hover svg path {
  fill: #FFFFFF;
}

.breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 148px;
  background-color: #F8F3F4;
}
.breadcrumb__chapter {
  font-size: 24px;
  font-weight: 400;
}
.breadcrumb__list {
  list-style: none;
  display: flex;
  gap: 3px;
}
.breadcrumb__item {
  color: #636363;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
}
.breadcrumb__item:not(:last-child)::after {
  content: " /";
}
.breadcrumb__item:last-child {
  font-weight: 700;
  color: #F16D7F;
}
.product__slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  height: 777px;
  background-color: #F7F7F7;
  border: 1px solid #EAEAEA;
}
.product__slider-img {
  margin-top: 12px;
  align-self: flex-start;
  height: 724px;
}
.product__slider-button {
  width: 47px;
  height: 47px;
  color: rgba(42, 42, 42, 0.1490196078);
  border: none;
}
.product__slider-button svg path {
  transition: all 0.3s;
}
.product__slider-button:hover svg path {
  fill: #F16D7F;
}
.product__slider-button:first-child img {
  transform: rotate(90deg);
}
.product__slider-button:last-child img {
  transform: rotate(-90deg);
}
.product__description-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  border: 1px solid #EAEAEA;
  transform: translateY(-65px);
  background-color: #FFFFFF;
}
.product__collection {
  color: #F16D7F;
  font-size: 14px;
  font-weight: 300;
}
.product__collection::after {
  display: block;
  content: "";
  background-color: #EF5B70;
  margin: 12px auto;
  width: 63px;
  height: 3px;
}
.product__title {
  color: #4D4D4D;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 48px;
}
.product__text {
  width: 555px;
  text-align: center;
  color: #5E5E5E;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 32px;
}
.product__price {
  color: #EF5B70;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
}
.product__price::after {
  display: block;
  content: "";
  margin: 65px auto;
  width: 641px;
  height: 1px;
  background-color: #EAEAEA;
}
.product__parameters {
  display: flex;
  gap: 42px;
  margin-bottom: 48px;
}
.product__parameter-summary {
  color: #6F6E6E;
  font-size: 14px;
  font-weight: 400;
  list-style: none;
}
.product__parameter-summary::after {
  margin-left: 10px;
  display: inline-block;
  transition: all 0.3s;
  content: url("../img/dropdown.svg");
}
.product__parameter[open] > summary::after {
  transform: rotate(180deg);
}
.product__add-button {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  gap: 24px;
  align-items: center;
  width: fit-content;
  color: #F26376;
  background-color: #FFFFFF;
  margin: 48px auto 60px auto;
  padding: 15px 56px 9px 24px;
  border: 1px solid #FF6A6A;
  transition: all 0.3s;
}
.product__add-button:hover {
  background-color: #F16D7F;
  color: #FFFFFF;
}
.product__add-button:hover svg path {
  fill: #FFFFFF;
}

.similar-product__block {
  display: flex;
  gap: 30px;
  padding-top: 128px;
  padding-bottom: 128px;
}

@media (max-width: 1200px) {
  .center {
    padding-left: calc(50% - 368px);
    padding-right: calc(50% - 368px);
  }
  .header__content {
    padding: 18px 32px 12px;
  }
  .banner__content {
    height: 386px;
    background: no-repeat url("../img/banner.png") 0 0;
    background-size: auto 100%;
    padding-right: 36px;
  }
  .banner__title {
    font-size: 44px;
  }
  .banner__text {
    font-size: 24px;
  }
  .main-nav {
    gap: 20px;
    margin-bottom: 110px;
  }
  .featured-items__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 72px;
  }
  .featured-items__card-text-wrap {
    padding: 25px 18px 20px;
  }
  .featured-items__card-description {
    margin-top: 12px;
    margin-bottom: 18px;
  }
  .featured-items__button {
    margin: 32px auto 70px auto;
  }
  .feature {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 64px;
    margin-top: 64px;
  }
  .feature__item {
    width: 360px;
  }
  .subscribe {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding-top: 64px;
    padding-bottom: 140px;
    background-position: -250px;
  }
}
@media (max-width: 767px) {
  .center {
    padding-left: calc(50% - 180px);
    padding-right: calc(50% - 180px);
  }
  .header.center {
    padding-left: 0;
    padding-right: 0;
  }
  .header__content {
    padding: 18px 16px 12px;
  }
  .header__block--right {
    align-items: center;
  }
  .header__block--right .header__link:not(:first-child) {
    display: none;
  }
  .banner__content {
    height: 363px;
    background: none;
    padding-right: 24px;
  }
  .main-nav {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    margin-bottom: 64px;
  }
  .main-nav__item {
    position: relative;
    height: 248px;
  }
  .main-nav__item-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-nav__item--big {
    grid-column: 1/2;
    height: 112px;
  }
  .main-nav__item--big .main-nav__item-img {
    height: 100%;
  }
  .feature {
    padding-bottom: 82px;
  }
  .featured-items__content {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 64px;
  }
  .featured-items__button {
    margin: 40px auto 85px auto;
  }
  .subscribe {
    padding-bottom: 110px;
    background-position: -450px;
  }
  .footer {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    padding-top: 44px;
    padding-bottom: 8px;
  }
}
@media (max-width: 374px) {
  .center {
    padding-left: 8px;
    padding-right: 8px;
  }
  .featured-items__card img {
    width: 100%;
  }
  .feature__item {
    width: 100%;
  }
  .subscribe__side-wrap {
    width: 100%;
  }
  .subscribe__form {
    width: 100%;
  }
  .subscribe__form-text {
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
