@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Regular.eot");
  src: local("Roboto"), local("Roboto-Regular"), url("fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Regular.woff2") format("woff2"), url("fonts/Roboto-Regular.woff") format("woff"), url("fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Medium.eot");
  src: local("Roboto Medium"), local("Roboto-Medium"), url("fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Medium.woff2") format("woff2"), url("fonts/Roboto-Medium.woff") format("woff"), url("fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'Roboto';
  src: url("fonts/Roboto-Bold.eot");
  src: local("Roboto Bold"), local("Roboto-Bold"), url("fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Roboto-Bold.woff2") format("woff2"), url("fonts/Roboto-Bold.woff") format("woff"), url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }
@font-face {
  font-family: 'Alethia Pro';
  src: local("Alethia Pro Italic"), local("AlethiaPro-Italic"), url("fonts/Alethiaproitalic.woff2") format("woff2"), url("fonts/Alethiaproitalic.woff") format("woff"), url("fonts/Alethiaproitalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }
:root {
  font-size: 30px; }

ul, li {
  margin: 0;
  padding: 0;
  display: block; }

a {
  transition: .3s all;
  outline: none;
  text-decoration: none; }
  a:hover {
    text-decoration: none; }

button {
  transition: .6s all;
  border: none;
  outline: none;
  background: none;
  padding: 0; }

h1, h2, h3, h4, h5, p {
  margin: 0; }

input {
  outline: none;
  border-radius: 0; }
  input.error {
    color: red !important;
    border-color: red !important; }

html {
  scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: #FFF4DC;
  color: #5D4F4D; }

.overflowH {
  overflow: hidden; }

::-webkit-scrollbar {
  width: .5rem;
  height: 0.5rem; }

::-webkit-scrollbar-track {
  background: #ddd; }

::-webkit-scrollbar-thumb {
  background: #F9A287;
  border: 1px solid #ddd; }

.lazy {
  opacity: 0; }

.disabled {
  pointer-events: none; }

.container {
  padding: 0 3rem;
  width: 100%;
  margin: 0 auto;
  max-width: 80rem; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #F9A287;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 4rem; }
  .btn:hover {
    background: #E5876A; }
  .btn-trans {
    background: transparent;
    color: #5D4F4D;
    border: 1px solid; }
    .btn-trans:hover {
      color: #F9A287;
      background: transparent; }
  .btn-white {
    background: #fff;
    color: #5D4F4D; }
    .btn-white:hover {
      background: #f4f4f4; }
  .btn.disabled {
    opacity: .6; }

.section-title {
  text-align: center;
  font-size: 2.6rem;
  text-transform: uppercase; }
  .section-title span {
    display: block;
    font-family: "Alethia Pro", sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    text-transform: none; }

.page-head {
  display: flex;
  justify-content: space-between;
  align-items: center; }
.page-title {
  font-weight: 500;
  font-size: 1.8rem;
  padding: 1.6rem 0; }
.page__back {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  color: #5D4F4D;
  font-size: 0.9rem;
  gap: .6rem;
  flex-shrink: 0; }
  .page__back svg {
    width: 1.1rem; }
  .page__back:hover {
    color: #F9A287; }

.zoom-image {
  cursor: pointer; }
  .zoom-image__popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    background: rgba(0, 0, 0, 0.5);
    display: none; }
  .zoom-image__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    color: #F9A287; }
    .zoom-image__close svg {
      width: 1.2rem; }
  .zoom-image__img {
    height: calc(100% - 3rem);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    .zoom-image__img img {
      height: 100%;
      display: block;
      object-fit: contain;
      max-width: 94vw; }

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  cursor: pointer;
  display: none; }
  .popup-content {
    position: absolute;
    right: 0;
    top: 0;
    transition: .6s transform;
    background: #fff;
    height: 100%;
    width: 36rem;
    padding: 2.5rem;
    cursor: default;
    transform: translateX(100%); }
  .popup-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #E7E7E7;
    margin-bottom: 1.25rem; }
    .popup-head .page-title {
      padding: 0; }
  .popup-main {
    overflow: auto;
    max-height: calc(100dvh - 20rem);
    padding-right: 1rem;
    margin-right: -1rem; }
    .popup-main::-webkit-scrollbar {
      width: 0.35rem; }
  .popup.active .popup-content {
    transform: none; }

.basket {
  font-size: 0.9rem; }
  .basket-remove {
    display: flex;
    gap: .5rem;
    align-items: center; }
    .basket-remove__btn {
      background: #F5F5F5;
      color: #7b7b7b;
      padding: 0.5rem 1rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none; }
      .basket-remove__btn:hover {
        color: #fff; }
    .basket-remove__close {
      color: #5D4F4D;
      display: flex;
      padding: 0.5rem; }
      .basket-remove__close svg {
        width: 1.1rem;
        height: 1.1rem; }
      .basket-remove__close:hover {
        color: #F9A287; }
  .basket-item {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem; }
    .basket-item:last-child {
      margin-bottom: 0; }
    .basket-item__wrap {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-grow: 1; }
    .basket-item__img {
      width: 5.5rem;
      height: 5.5rem;
      flex-shrink: 0; }
      .basket-item__img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: .4rem; }
    .basket-item__name {
      font-weight: 700;
      margin-bottom: 0.4rem; }
      .basket-item__name a {
        color: #5D4F4D; }
        .basket-item__name a:hover {
          color: #F9A287; }
    .basket-item__text {
      margin-bottom: 0.4rem; }
    .basket-item__price {
      font-weight: 700;
      color: #F9A287; }
    .basket-item__counter {
      flex-shrink: 0;
      margin-right: 1rem;
      display: flex;
      align-items: center;
      user-select: none; }
      .basket-item__counter span {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: .6s all;
        cursor: pointer;
        user-select: none;
        color: #E7E7E7;
        width: 1.1rem; }
        .basket-item__counter span svg {
          width: 1.1rem;
          height: 1.1rem; }
        .basket-item__counter span:hover {
          color: #5D4F4D; }
      .basket-item__counter p {
        width: 2rem;
        text-align: center; }
    .basket-item__remove {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      color: #E7E7E7;
      width: 1.1rem; }
      .basket-item__remove svg {
        width: 1.1rem;
        height: 1.1rem; }
      .basket-item__remove:hover {
        color: #5D4F4D; }
  .basket-total {
    margin: 2rem 0 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E7E7E7;
    text-align: right; }
    .basket-total__min {
      color: #aea7a6;
      font-size: 0.8rem;
      margin-bottom: 0.6rem; }
    .basket-total__price {
      font-weight: 700; }
  .basket-empty {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 4rem 0;
    display: none; }
  .basket__btn {
    height: 3.3rem;
    width: 100%;
    font-weight: 700; }
  .basket__done {
    height: 3.3rem;
    display: none;
    align-items: center;
    color: #61BF1A;
    font-size: 1.3rem;
    font-weight: 500;
    gap: 1rem;
    justify-content: center; }
    .basket__done img {
      width: 3rem; }

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background: #fff;
  display: none; }
  .mobile-menu .container {
    padding-top: 1.1rem;
    padding-bottom: 5rem;
    height: 100dvh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%; }
  .mobile-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; }
  .mobile-menu__close {
    display: inline-flex;
    width: 3.2rem; }
    .mobile-menu__close img {
      width: 100%; }
  .mobile-menu__logo {
    width: 7rem;
    display: inline-block; }
    .mobile-menu__logo img {
      width: 100%;
      display: block; }
  .mobile-menu__list {
    font-size: 1.7rem;
    text-align: center; }
    .mobile-menu__list li {
      margin-bottom: 1.5rem; }
    .mobile-menu__list a {
      color: #5D4F4D; }
  .mobile-menu .footer-social {
    justify-content: center; }

.header {
  padding: 1.1rem 0; }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header__logo {
    display: block;
    width: 7rem;
    margin-right: 2rem; }
    .header__logo img {
      width: 100%;
      display: block; }
  .header-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-weight: 700; }
    .header-menu li {
      display: flex; }
    .header-menu a {
      color: #5D4F4D; }
      .header-menu a:hover {
        color: #F9A287; }
  .header-wrap {
    gap: .5rem;
    display: flex;
    align-items: center; }
  .header__btn {
    height: 3.2rem;
    width: 13rem;
    font-weight: 700; }
    .header__btn img {
      display: none; }
  .header__basket {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    background: #F9DD9D;
    border-radius: 50%;
    position: relative; }
    .header__basket span {
      width: 1rem;
      height: 1rem;
      background: #F9A287;
      color: #fff;
      top: 0.2rem;
      right: 0.2rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-size: 0.55rem;
      position: absolute;
      border-radius: 50%;
      opacity: 0; }
    .header__basket:hover {
      background: #FFCF61; }
    .header__basket.active span {
      opacity: 1; }
  .header-mobile {
    display: none; }

.main .container {
  display: flex;
  gap: 1rem; }
.main-wrap {
  width: 58.5%;
  background: #fff url(../img/icons/pattern-main.svg) center center no-repeat;
  background-size: cover;
  padding: 4.5rem 7rem 4.5rem 4rem;
  border-radius: 1rem; }
.main__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-transform: uppercase;
  margin-bottom: 1.1rem; }
  .main__title div {
    color: #fff;
    font-size: 3rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4rem;
    background: #F9A287; }
  .main__title span {
    font-size: 1.8rem;
    background: #F9DD9D;
    padding: 0.75rem 1.1rem;
    border-radius: 4rem;
    align-self: flex-end;
    margin-top: -.8rem; }
.main__text {
  font-size: 1.2rem;
  margin-bottom: 1.7rem; }
.main-btns {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem; }
  .main-btns .btn {
    height: 3.5rem;
    width: 13rem;
    font-size: 1.2rem; }
.main__tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.9rem; }
  .main__tags li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 2.7rem;
    border-radius: 3rem;
    background: #fff;
    padding: 0 1.1rem;
    border: 1px solid #dfdcdb; }
.main-emojis {
  font-size: 0.9rem;
  max-width: 15rem; }
  .main-emojis img {
    display: block;
    width: 100%;
    margin-bottom: 0.4rem; }
.main__video {
  width: 41.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 1.5rem;
  position: relative; }
  .main__video span {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;
    border-radius: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    padding: 0 1.2rem;
    color: #fff;
    box-shadow: -2px -2px 7px 0px rgba(46, 46, 46, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.3); }
  .main__video video {
    width: 104%;
    height: 104%;
    object-fit: cover;
    object-position: bottom;
    position: absolute; }

.categories {
  padding-top: 6rem;
  background: url(../img/icons/pattern-category.svg) top center no-repeat;
  background-size: contain; }
  .categories .section-title {
    font-size: 3rem;
    margin-bottom: 2.8rem; }
    .categories .section-title span {
      color: #F9A287; }
  .categories-list {
    display: flex;
    gap: .6rem 1rem;
    flex-wrap: wrap;
    margin-bottom: 6rem; }
  .categories-item {
    width: calc(50% - .5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background: #fff;
    border-radius: 4rem;
    padding: 1rem 1rem 1rem 2.8rem;
    font-size: 1.3rem;
    gap: 1rem;
    transition: .6s all; }
    .categories-item__name {
      font-weight: 700;
      margin-bottom: 0.3rem; }
    .categories-item__text {
      font-weight: 500;
      color: #F9A287;
      transition: .6s all; }
    .categories-item__arrow {
      border-radius: 50%;
      display: flex;
      flex-shrink: 0;
      width: 3.5rem;
      transition: .6s all;
      opacity: 0; }
      .categories-item__arrow img {
        width: 100%; }
    .categories-item__link {
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute; }
    .categories-item:hover {
      background: #F9A287; }
      .categories-item:hover .categories-item__text {
        color: #fff; }
      .categories-item:hover .categories-item__arrow {
        opacity: 1; }
  .categories-banner {
    display: block; }
    .categories-banner img {
      width: 100%;
      display: block; }
  .categories-wrap {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    padding-top: 2.2rem; }
  .categories-info {
    width: 50%;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap; }
    .categories-info__item {
      width: calc(50% - .5rem);
      border-radius: 2rem;
      background: #fff;
      padding: 2.7rem 1.5rem 0 2.3rem; }
    .categories-info__title {
      font-size: 1.3rem;
      font-weight: 700; }
    .categories-info__subtitle {
      font-size: 1.8rem;
      font-weight: 500;
      color: #F9A287;
      margin-bottom: 1rem; }
  .categories-description {
    width: 50%;
    border-radius: 2rem;
    background: #fff;
    padding: 2.6rem 3rem; }
    .categories-description h4 {
      font-size: 1.3rem;
      color: #F9A287; }
    .categories-description ul {
      padding-left: 1.5rem; }
      .categories-description ul li {
        display: list-item; }

.gallery {
  padding: 6rem 0; }
  .gallery-list {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(12, calc(8.3333% - .91rem));
    grid-template-rows: repeat(2, 17rem);
    justify-content: center;
    align-content: end; }
  .gallery-item {
    overflow: hidden;
    border-radius: 1.5rem; }
    .gallery-item:nth-child(1) {
      grid-column: span  3; }
    .gallery-item:nth-child(2) {
      grid-column: span  5; }
    .gallery-item:nth-child(3) {
      grid-column: span  4;
      grid-row: span  2; }
    .gallery-item:nth-child(4) {
      grid-column: span  5; }
    .gallery-item:nth-child(5) {
      grid-column: span  3; }
    .gallery-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover; }

.catalog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.7rem; }
  .catalog-categories li {
    display: flex; }
  .catalog-categories a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.1rem;
    border-radius: .8rem;
    border: 1px solid;
    color: #5D4F4D;
    height: 3.1rem; }
    .catalog-categories a:hover {
      color: #F9A287; }
    .catalog-categories a.active {
      border-color: #F9A287;
      background: #F9A287;
      color: #fff;
      pointer-events: none; }
.catalog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1rem;
  margin-bottom: 3rem; }
.catalog-item {
  width: calc(25% - .75rem); }
.catalog__img {
  border-radius: 1rem;
  width: 100%;
  height: 17rem;
  overflow: hidden;
  margin-bottom: 1rem;
  display: block; }
  .catalog__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; }
.catalog__price {
  margin-bottom: 0.6rem;
  font-size: 0.9rem; }
.catalog__name {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  height: 2.2rem;
  line-height: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.3rem; }
  .catalog__name a {
    color: #5D4F4D; }
    .catalog__name a:hover {
      color: #F9A287; }
.catalog-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15rem;
  font-size: 1.3rem;
  font-weight: 500;
  width: 100%; }
.catalog__btn {
  height: 2.6rem;
  width: 100%;
  font-weight: 700; }
.catalog-more {
  margin-bottom: 3rem;
  text-align: center;
  min-height: 3.3rem; }
  .catalog-more .btn {
    font-weight: 700;
    width: 24rem;
    height: 3.3rem; }

.product {
  padding-top: 4rem; }
  .product__back {
    margin-bottom: 4rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500; }
    .product__back a {
      color: #5D4F4D;
      display: inline-flex;
      align-items: center;
      gap: .5rem; }
      .product__back a svg {
        width: 1.3rem; }
      .product__back a:hover {
        color: #F9A287; }
  .product-main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 5rem; }
  .product-slider {
    width: calc(50% - .5rem);
    position: relative;
    margin-bottom: 2rem; }
    .product-slider__item {
      cursor: pointer; }
      .product-slider__item img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: 2rem; }
    .product-slider__arrows {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      pointer-events: none;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 0.7rem; }
      .product-slider__arrows span {
        pointer-events: auto;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: .6s all;
        cursor: pointer;
        user-select: none;
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 50%;
        color: #5D4F4D;
        background: #fff; }
        .product-slider__arrows span:hover {
          background: #F9A287;
          color: #fff; }
        .product-slider__arrows span svg {
          width: 100%;
          height: 100%; }
    .product-slider .owl-dots {
      position: absolute;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: .25rem;
      margin-top: 1rem; }
      .product-slider .owl-dots .owl-dot {
        background: #5D4F4D;
        opacity: .15;
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%; }
        .product-slider .owl-dots .owl-dot.active {
          opacity: 1; }
  .product-info {
    width: calc(50% - .5rem);
    font-size: 0.9rem; }
  .product__name {
    font-size: 1.3rem;
    margin-bottom: 1rem; }
  .product__price {
    font-size: 1.15rem;
    margin-bottom: 2rem; }
  .product-price {
    margin-bottom: 2rem; }
    .product-price__title {
      font-weight: 700;
      margin-bottom: 1rem; }
    .product-price__choose {
      display: flex;
      gap: 1rem; }
      .product-price__choose label {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: .6s all;
        cursor: pointer;
        user-select: none; }
        .product-price__choose label input {
          display: none;
          appearance: none; }
          .product-price__choose label input:checked + span {
            background: #F9DD9D; }
        .product-price__choose label span {
          height: 3rem;
          width: 8rem;
          border-radius: .75rem;
          border: 1px solid;
          display: inline-flex;
          justify-content: center;
          align-items: center; }
  .product-radio li {
    margin-bottom: 1rem; }
    .product-radio li:last-child {
      margin-bottom: 1.5rem; }
  .product-radio label {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: .4rem; }
    .product-radio label input {
      appearance: none;
      width: 20px;
      height: 20px;
      border: 2px solid #F9A287;
      border-radius: 50%;
      flex-shrink: 0;
      position: relative; }
      .product-radio label input::after {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 12px;
        height: 12px;
        background: #F9A287;
        border-radius: 50%;
        content: none; }
      .product-radio label input:checked::after {
        content: ''; }
  .product-wrap {
    display: flex;
    gap: .8rem;
    margin-bottom: 1.5rem; }
  .product-counter {
    display: flex;
    border-radius: .3rem;
    background: #fff;
    user-select: none; }
    .product-counter span {
      width: 2.6rem;
      height: 2.6rem;
      border-radius: .3rem;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: .6s all;
      cursor: pointer;
      user-select: none;
      background: #F9A287; }
      .product-counter span img {
        width: 0.9rem; }
      .product-counter span.disabled {
        opacity: .6;
        pointer-events: none; }
    .product-counter__value {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 3.8rem; }
  .product__description li {
    display: list-item; }
  .product__description ul, .product__description ol {
    padding-left: 1.5rem; }
  .product__btn {
    height: 2.6rem;
    font-weight: 700;
    width: 9.5rem; }
  .product-more__title {
    font-size: 1.3rem;
    margin-bottom: 3rem; }
  .product-more .catalog-list {
    margin-bottom: 0; }

.help-list {
  display: flex;
  gap: 1.5rem 1rem;
  flex-wrap: wrap; }
.help-item {
  width: calc(50% - .5rem);
  border: 1px solid #5D4F4D;
  overflow: hidden;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  position: relative; }
.help__img {
  width: 47%;
  height: 15rem; }
  .help__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; }
.help-wrap {
  width: 53%;
  padding: 1.6rem; }
.help__name {
  font-weight: 700;
  margin-bottom: 1.1rem; }
.help__text {
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
  color: #aea194; }
.help__link {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  color: #F9A287;
  font-size: 0.9rem;
  gap: .6rem; }
  .help__link::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    content: '';
    z-index: 2; }
  .help__link svg {
    width: 1.1rem; }
  .help__link:hover {
    color: #E5876A; }

.info-delivery {
  margin-bottom: 3rem; }
.info-block {
  background: #fff;
  border-radius: 1rem;
  padding: 2.7rem 2rem;
  font-size: 0.9rem;
  margin-bottom: 1rem; }
  .info-block h2, .info-block h3, .info-block h4, .info-block h5 {
    font-size: 1rem; }
.info-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; }
  .info-wrap .info-block {
    width: calc(50% - .5rem); }

.faq-item {
  margin-bottom: .5rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 1rem; }
  .faq-item.active .faq-question span {
    color: #fff;
    background: #F9A287; }
    .faq-item.active .faq-question span svg path:last-child {
      opacity: 0; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none; }
  .faq-question span {
    border: 1px solid #F9A287;
    border-radius: 50%;
    color: #F9A287;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    flex-shrink: 0; }
    .faq-question span svg {
      width: 1.3rem;
      height: 1.3rem; }
      .faq-question span svg path {
        transition: .6s all; }
.faq-answer {
  margin-top: 1rem;
  max-width: 55rem;
  font-size: 0.95rem;
  display: none; }

.load-choose {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap; }
  .load-choose li {
    width: calc(33.3333% - .6666rem);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: .6s all;
    cursor: pointer;
    user-select: none;
    height: 3.1rem;
    border-radius: .8rem;
    border: 1px solid; }
    .load-choose li:hover {
      color: #F9A287; }
    .load-choose li.active {
      pointer-events: none;
      border-color: #F9A287;
      background: #F9A287;
      color: #fff; }
.load-tab {
  display: none; }
  .load-tab.active {
    display: block; }
.load-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; }
.load-item {
  width: calc(33.3333% - .6666rem); }
.load__img {
  margin-bottom: 1.6rem; }
  .load__img img {
    width: 100%;
    display: block; }
.load__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem; }
.load__text a {
  text-decoration: underline;
  color: #5D4F4D; }
  .load__text a:hover {
    color: #F9A287; }

.contact-main {
  display: flex;
  gap: 1rem; }
.contact-list {
  width: 58.5%; }
.contact-item {
  margin-bottom: 1rem;
  border: 1px solid #5D4F4D;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem; }
  .contact-item:last-child {
    margin-bottom: 0; }
  .contact-item__ico {
    height: 11rem;
    width: 12rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-right: 1px solid #5D4F4D; }
    .contact-item__ico img {
      width: 4rem; }
  .contact-item__wrap {
    padding: 1rem 2rem; }
  .contact-item__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem; }
  .contact-item__text {
    color: #aea194; }
    .contact-item__text a {
      color: #F9A287;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-weight: 500; }
      .contact-item__text a svg {
        width: 1rem; }
      .contact-item__text a:hover {
        color: #E5876A; }

.order {
  background: #fff;
  padding-bottom: 6rem; }
  .order-main {
    display: flex;
    gap: 6.5rem;
    padding-top: 3rem;
    align-items: flex-start;
    font-size: 0.9rem; }
    .order-main .page-title {
      padding-top: 0; }
  .order-left {
    width: calc(50% - .5rem); }
  .order-right {
    width: calc(50% - 6rem); }
  .order__input {
    margin-bottom: 1rem; }
    .order__input input {
      width: 100%;
      height: 3rem;
      border: 1px solid #dfdcdb;
      padding: 0 1.3rem;
      border-radius: 3rem; }
      .order__input input::placeholder {
        color: #dfdcdb; }
  .order__text {
    margin-top: -0.25rem; }
  .order__info {
    margin-top: 2rem;
    padding: 1.6rem 2rem;
    border-radius: .8rem;
    border: 1px solid #F9A287; }
    .order__info span {
      font-weight: 700; }
  .order__subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem; }
  .order__text {
    line-height: 1.4; }
    .order__text ul {
      padding-left: 1.5rem; }
      .order__text ul li {
        display: list-item; }
  .order-delivery__tab {
    display: none; }
    .order-delivery__tab:first-child {
      display: block; }
  .order-head {
    padding: 2rem 0;
    border: 1px solid #dfdcdb; }
    .order-head .container {
      display: flex;
      justify-content: space-between;
      align-items: center; }
  .order__back {
    color: #5D4F4D;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.3rem;
    font-weight: 500; }
    .order__back svg {
      width: 1.3rem; }
    .order__back:hover {
      color: #F9A287; }
  .order-space {
    height: 2rem; }

.cert-card {
  border-radius: 2rem;
  background: #F9A287 url(../img/icons/pattern-cert.svg) center center no-repeat;
  background-size: cover;
  padding: 3.3rem;
  text-align: center; }
.cert .section-title {
  margin-bottom: 0.6rem; }
  .cert .section-title span {
    color: #fff; }
.cert__text {
  margin: 0 auto;
  margin-bottom: 1.3rem;
  max-width: 35rem;
  font-size: 1.3rem;
  color: #fff; }
.cert__btn {
  width: 17rem;
  height: 3.3rem;
  font-size: 1.2rem; }
.cert-tabs {
  background: #fff;
  padding: 1rem 0 6rem; }
.cert-tab {
  display: none; }
  .cert-tab-el .order-main {
    gap: 1rem;
    align-items: stretch; }
  .cert-tab-el .order-left .order__info {
    margin-top: 1.1rem; }
  .cert-tab-el .order-right {
    width: calc(50% - .5rem); }
    .cert-tab-el .order-right .page-title {
      display: none; }
  .cert-tab.active {
    display: block; }
.cert-image {
  background: #FFF4DC;
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; }
  .cert-image__img {
    width: 100%; }
    .cert-image__img img {
      width: 100%;
      display: block; }

.footer {
  padding: 6rem 0 5rem;
  font-size: 0.9rem; }
  .footer-wrap {
    display: flex;
    align-items: flex-start;
    gap: 2.6rem;
    position: relative; }
  .footer__logo {
    margin-bottom: 6rem;
    display: block;
    width: 7rem;
    margin-right: 13rem; }
    .footer__logo img {
      width: 100%;
      display: block; }
  .footer-bot {
    position: absolute;
    left: 0;
    top: 6rem; }
  .footer-worktime__item {
    width: 14rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 0.6rem;
    padding: 0.75rem 0;
    border: 1px solid; }
  .footer-menu {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem; }
    .footer-menu__title {
      margin-bottom: 0.8rem;
      font-weight: 700; }
    .footer-menu__list li {
      margin-bottom: 0.5rem; }
      .footer-menu__list li:last-child {
        margin-bottom: 0; }
    .footer-menu__list a {
      color: #5D4F4D; }
      .footer-menu__list a:hover {
        color: #F9A287; }
  .footer-social {
    display: flex;
    gap: .6rem;
    margin-bottom: 1.3rem; }
    .footer-social li {
      display: flex; }
    .footer-social a {
      display: flex;
      width: 1.8rem; }
      .footer-social a:hover {
        opacity: .8; }
      .footer-social a img {
        width: 100%;
        display: block; }

@media (max-width: 2800.98px) {
  :root {
    font-size: 26px; } }
@media (max-width: 2600.98px) {
  :root {
    font-size: 24px; } }
@media (max-width: 2300.98px) {
  :root {
    font-size: 22px; } }
@media (max-width: 2100.98px) {
  :root {
    font-size: 20px; } }
@media (max-width: 1800.98px) {
  :root {
    font-size: 19px; } }
@media (max-width: 1700.98px) {
  :root {
    font-size: 18px; } }
@media (max-width: 1600.98px) {
  :root {
    font-size: 17px; } }
@media (max-width: 1500.98px) {
  :root {
    font-size: 16px; } }
@media (max-width: 1400.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 1300.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 1200.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 1100.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 1000.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 900.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 767.98px), (max-width: 1080px) and (orientation: portrait) {
  :root {
    font-size: 17px; }

  .zoom-image__img {
    width: 100vw;
    height: auto; }
    .zoom-image__img img {
      object-fit: cover;
      max-width: none;
      max-height: 90svh;
      width: 100%; }

  .header-menu {
    display: none; }
  .header-mobile {
    display: inline-flex;
    width: 3.2rem; }
    .header-mobile img {
      width: 100%; }

  .main .container {
    flex-direction: column; }
  .main-wrap {
    width: 100%; }
  .main__video {
    width: 100%;
    height: 40rem; }

  .categories {
    background-size: 200vw;
    background-position: top left; }
    .categories-item {
      width: 100%; }
    .categories-wrap {
      flex-direction: column-reverse; }
    .categories-info {
      width: 100%; }
      .categories-info__item {
        padding-bottom: 3rem; }
    .categories-description {
      width: 100%; }

  .gallery-list {
    display: flex;
    flex-wrap: wrap; }
  .gallery-item {
    width: 100%; }

  .catalog-item {
    width: calc(50% - .5rem); }

  .product-main {
    flex-direction: column; }
  .product-slider, .product-info {
    width: 100%; }

  .help-item {
    width: 100%; }
  .help__img {
    height: 17rem; }

  .info-wrap {
    display: block; }
    .info-wrap .info-block {
      width: 100%; }

  .load-choose {
    gap: .5rem; }
    .load-choose li {
      width: 100%; }
  .load-list {
    gap: 2.5rem; }
  .load-item {
    width: 100%; }

  .contact-main {
    flex-direction: column; }
  .contact-list {
    width: 100%; }

  .order {
    position: relative;
    padding-bottom: 8rem; }
    .order-main {
      gap: 2rem;
      flex-direction: column; }
    .order .order-main {
      gap: 0; }
    .order-left, .order-right {
      width: 100%; }
    .order .basket__btn, .order .basket__done {
      position: absolute;
      bottom: 4.5rem;
      width: calc(100% - 6rem); }

  .cert-tab-el .order-main {
    flex-direction: column-reverse;
    gap: 2rem; }
  .cert-tab-el .order-left .page-title {
    display: none; }
  .cert-tab-el .order-right {
    width: 100%; }
    .cert-tab-el .order-right .page-title {
      display: block; }

  .footer-wrap {
    flex-direction: column;
    align-items: center; }
  .footer__logo {
    margin: 0; }
  .footer-worktime {
    display: flex;
    gap: .6rem; }
    .footer-worktime__item {
      margin-bottom: 0; }
  .footer-menu {
    align-self: flex-start;
    justify-content: space-between;
    width: 100%; }
  .footer-bot {
    position: static;
    align-self: flex-start; } }
@media (max-width: 767.98px) {
  :root {
    font-size: 16px; }

  .container {
    padding: 0 1rem; }

  .section-title {
    font-size: 2rem; }
    .section-title span {
      font-size: 1.5rem; }

  .page-head {
    flex-direction: column;
    margin-bottom: 1.6rem;
    text-align: center; }
    .page-head .page-title {
      padding-bottom: 1rem; }
  .page-title {
    font-size: 1.5rem; }

  .popup-content {
    width: 100%;
    padding: 2.5rem 1rem; }

  .basket-item {
    gap: .75rem; }
    .basket-item__wrap {
      gap: .5rem; }
    .basket-item__img {
      width: 4rem;
      height: 4rem; }
    .basket-item__counter {
      margin-right: 0; }

  .mobile-menu .container {
    padding-top: 0.75rem;
    padding-bottom: 3rem; }
  .mobile-menu__list {
    font-size: 1.2rem; }
    .mobile-menu__list li {
      margin-bottom: 1rem; }
  .mobile-menu__logo {
    width: 5rem; }
  .mobile-menu__close {
    width: 2.5rem; }

  .header {
    padding: 0.75rem 0; }
    .header__logo {
      width: 5rem;
      margin-right: 0; }
    .header__btn {
      width: 2.5rem;
      height: 2.5rem;
      background: transparent; }
      .header__btn:hover {
        background: transparent; }
      .header__btn img {
        width: 100%;
        display: block; }
      .header__btn span {
        display: none; }
    .header__basket {
      width: 2.5rem;
      height: 2.5rem; }
      .header__basket span {
        top: 0;
        right: 0; }
    .header-mobile {
      width: 2.5rem;
      height: 2.5rem; }

  .main-wrap {
    padding: 3rem 1rem; }
  .main__title div {
    font-size: 2rem;
    padding: 0.6rem 1rem; }
  .main__title span {
    font-size: 1.3rem;
    margin-top: -0.5rem;
    padding: 0.5rem 1rem; }
  .main__text {
    font-size: 1.1rem; }
  .main-btns {
    flex-direction: column; }
    .main-btns .btn {
      width: 100%; }
      .main-btns .btn-trans {
        background: #fff; }
  .main__tags li {
    height: 2.3rem;
    padding: 0 0.6rem; }
  .main__video {
    height: 30rem; }

  .categories {
    padding-top: 4rem; }
    .categories .section-title {
      font-size: 2rem;
      margin-bottom: 1.5rem; }
    .categories-list {
      margin-bottom: 4rem; }
    .categories-item {
      padding-left: 2rem;
      font-size: 1.1rem; }
      .categories-item__arrow {
        display: none; }
      .categories-item__link {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute; }
    .categories-description {
      border-radius: 1.5rem;
      padding: 2.5rem 1rem; }
    .categories-info__item {
      border-radius: 1.5rem;
      padding: 2.5rem 1rem;
      width: 100%; }

  .gallery {
    padding: 4rem 0; }

  .cert-card {
    border-radius: 1.5rem;
    padding: 3rem 1rem;
    background-position-x: 0; }
  .cert .section-title {
    margin-bottom: 1rem; }
  .cert__text {
    font-size: 1.1rem;
    margin-bottom: 2rem; }
  .cert__btn {
    width: 100%;
    font-size: 1.1rem; }
  .cert-image {
    padding: 1.5rem; }
  .cert-tabs {
    padding: 0 0 4rem; }

  .catalog-categories {
    gap: .4rem; }
    .catalog-categories a {
      padding: 0.5rem;
      font-size: 0.8rem;
      border-radius: .5rem;
      height: 2rem; }
  .catalog__img {
    height: calc(50vw - 1.5rem);
    border-radius: .75rem; }
  .catalog__name {
    font-size: 0.9rem;
    line-height: 1rem;
    height: 3rem;
    margin-bottom: 1rem;
    -webkit-line-clamp: 3; }
  .catalog-more .btn {
    width: 100%; }

  .product {
    padding-top: 1.5rem; }
    .product__back {
      margin-bottom: 1.5rem;
      font-size: 1rem; }
      .product__back a svg {
        width: 1rem; }
    .product-price__choose {
      gap: .5rem;
      flex-wrap: wrap; }
      .product-price__choose label {
        width: calc(50% - .25rem); }
        .product-price__choose label span {
          width: 100%; }
    .product-radio label input {
      width: 18px;
      height: 18px; }
      .product-radio label input::after {
        width: 10px;
        height: 10px; }
    .product-more__title {
      margin-bottom: 2rem; }

  .help-item {
    width: 100%;
    flex-direction: column; }
  .help__img {
    height: 20rem;
    width: 100%; }
  .help-wrap {
    width: 100%; }

  .info-delivery {
    margin-bottom: 0; }
  .info-block {
    padding: 2rem 1rem; }

  .faq-item {
    padding: 1rem; }
  .faq-question {
    font-size: 1rem; }
    .faq-question span {
      width: 1.8rem;
      height: 1.8rem; }
      .faq-question span svg {
        width: 1rem;
        height: 1rem; }
  .faq-answer {
    font-size: 0.9rem;
    margin-bottom: 1rem; }

  .contact-item {
    flex-direction: column; }
    .contact-item__ico {
      width: 100%;
      border-right: 0;
      border-bottom: 1px solid #5D4F4D; }
    .contact-item__wrap {
      padding: 2rem 1rem; }

  .order__input input {
    font-size: 16px;
    height: 55px;
    border-radius: 55px; }
  .order__info {
    padding: 1.5rem 1rem; }
  .order .order-main {
    padding-top: 2rem; }
  .order-head {
    padding: 1.2rem 0; }
  .order__back {
    font-size: 1rem; }
    .order__back a svg {
      width: 1rem; }
  .order .basket__btn, .order .basket__done {
    width: calc(100% - 2rem); }

  .footer {
    padding: 4rem 0 2rem; }
    .footer-worktime {
      width: 100%; }
      .footer-worktime__item {
        width: calc(50% - .3rem); }
    .footer-menu {
      flex-direction: column;
      gap: 1.5rem; } }
@media (max-width: 389.98px) {
  :root {
    font-size: 15px; } }
@media (max-width: 375.98px) {
  :root {
    font-size: 14px; } }
@media (max-width: 345.98px) {
  :root {
    font-size: 13px; } }
@media (max-width: 330.98px) {
  :root {
    font-size: 12px; } }
@media (max-width: 320.98px) {
  :root {
    font-size: 11px; } }
@media (max-width: 300.98px) {
  :root {
    font-size: 10px; } }
@media (max-width: 1000px) and (orientation: landscape) {
  :root {
    font-size: 8.5px; } }
@media (max-width: 700px) and (orientation: landscape) {
  :root {
    font-size: 8px; } }

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