@charset "UTF-8";

.social-list,
.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 30px;
}

.site-footer {
  overflow: hidden;
  width: 100%;
  background: #f2ecec;
  border-radius: 20px;
  padding: 24px 20px 26px;
}

.site-footer * {
  min-width: 0;
}

.site-footer a {
  overflow-wrap: anywhere;
}

.site-footer__logo {
  display: block;
  width: 350px;
  height: 91px;
  margin: -48px auto 30px;
}

.site-footer__logo strong {
  display: block;
}

.site-footer__logo svg {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer {
  /* ===== GRID-КОНТЕЙНЕР ===== */
}

.site-footer__wrapper {
  display: grid;
}

.site-footer__subscribe {
  grid-area: subscribe;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #625f6c;
  width: 100%;
}

.site-footer__form-label {
  display: block;
  margin: 0 0 7px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}

.site-footer__form-field {
  position: relative;
}

.site-footer__form-input {
  padding: 0 26px;
  width: 100%;
  height: 50px;
  background: #fff;
  border: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #878297;
  border-radius: 8px;
}

.site-footer__form-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 0;
  background: #ffffff;
  width: 22px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #e6684e;
}

.site-footer__form-submit:hover {
  color: #000000;
}

.site-footer__form-note {
  margin: 10px 0 17px;
}

.site-footer {
  /* ===== ЛЕВАЯ КОЛОНКА ===== */
}

.site-footer__social {
  grid-area: social;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 33px;
}

.site-footer__social-item {
  margin: 0;
}

.site-footer__social-link {
  display: inline-block;
  vertical-align: top;
}

.site-footer {
  /* ===== ЦЕНТР: НАВИГАЦИЯ ===== */
}

.site-footer__nav {
  grid-area: nav;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 535px;
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr;
  grid-auto-rows: -webkit-max-content;
  grid-auto-rows: max-content;
  gap: 14px 24px;
}

.site-footer__nav-item {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.site-footer__nav-link {
  display: block;
}

.site-footer__nav-link:hover {
  opacity: 0.8;
}

.site-footer {
  /* ===== КОПИРАЙТ ===== */
}

.site-footer__copyright {
  grid-area: copy;
  position: relative;
  padding: 0;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #625f6c;
}

.site-footer__copyright::before {
  content: "";
  position: absolute;
  left: -50px;
  right: -50px;
  top: 0;
  border-top: 1px solid #e1d5d6;
}

.site-footer__copyright-text {
  margin: 0;
}

.social-list a {
  display: inline-block;
  vertical-align: top;
}

.footer-consent {
  margin-top: 16px;
}

.footer-consent__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #625f6c;
}

.footer-consent__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.footer-consent__box {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgb(211, 198, 198);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer-consent__box svg {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.footer-consent__text {
  display: block;
  max-width: 320px;
}

.footer-consent__link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.footer-consent__checkbox:checked + .footer-consent__box {
  border-color: #e6684e;
  background: rgba(230, 104, 78, 0.1);
}

.footer-consent__checkbox:checked + .footer-consent__box svg {
  opacity: 1;
}

.foot {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px 40px;
}

.foot .footer-consent {
  margin: 0;
}

.foot .footer-consent__text {
  max-width: 340px;
}

html.is-scroll-locked,
body.is-scroll-locked {
  overflow: hidden;
}

.drawer-layer-root {
  position: relative;
  z-index: 1100;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 2, 4, 0.1019607843);
  z-index: 1100;
  pointer-events: none;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: var(--drawer-max-width, 986px);
  height: 100vh;
  max-height: 100vh;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  background-color: #fff;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: visibility 0s linear 0.4s, -webkit-transform 0.4s ease;
  transition: visibility 0s linear 0.4s, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, visibility 0s linear 0.4s;
  transition: transform 0.4s ease, visibility 0s linear 0.4s, -webkit-transform 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: var(--drawer-z-index, 1200);
  isolation: isolate;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  padding-top: clamp(50px, 9.022556391vw, 120px);
  -webkit-transition: visibility 0s linear 0s, -webkit-transform 0.4s ease;
  transition: visibility 0s linear 0s, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, visibility 0s linear 0s;
  transition: transform 0.4s ease, visibility 0s linear 0s, -webkit-transform 0.4s ease;
}

.drawer__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow-y: auto;
  max-width: 390px;
  overflow-y: auto;
}

.drawer__close {
  position: absolute;
  top: var(--drawer-close-offset, 32px);
  right: var(--drawer-close-offset, 32px);
  width: var(--drawer-close-size, 18px);
  height: var(--drawer-close-size, 18px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

.drawer__close svg {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.drawer__title {
  margin: 0;
  text-align: left;
}

.drawer ul {
  padding-left: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.drawer ul .title,
.drawer ul .dscr {
  display: inline;
}

.drawer__small {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #58565e;
}

.drawer__link {
  color: #e6684e;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.08em;
}

.drawer__notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 700;
}

.drawer__notice-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e6684e;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #fff;
}

.instruction-video {
  width: 100%;
  height: 246px;
  position: relative;
}

.instruction-video__video::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.instruction-video__btn {
  position: absolute;
  right: 20px;
  bottom: -20px;
  width: clamp(65px, 6.3244047619vw, 85px);
  height: clamp(65px, 6.3244047619vw, 85px);
  border-radius: 50%;
  background: rgba(230, 104, 78, 0.8);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.instruction-video__btn svg.icon {
  width: clamp(27px, 2.7529761905vw, 37px);
  height: clamp(27px, 2.7529761905vw, 37px);
  position: relative;
  left: 2px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.instruction-video__btn:focus-visible {
  outline: 2px solid #e6684e;
  outline-offset: 4px;
}

.instruction-video__dscr {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-weight: 700;
  font-size: fluid 14, 18, 1344;
  line-height: 130%;
  letter-spacing: -0.01em;
  z-index: 1;
  padding-right: 105px;
}

.instruction-video-modal__frame {
  width: min(90vw, 960px);
  aspect-ratio: 16/9;
  margin: 0 auto;
  background: #000;
}

.instruction-video-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.search-holder {
  --drawer-max-width: 420px;
  --drawer-z-index: 1300;
  --drawer-close-offset: clamp(20px, 4.8120300752vw, 64px);
  --drawer-close-size: 18px;
  padding: clamp(20px, 4.5112781955vw, 60px) clamp(20px, 3.007518797vw, 40px);
  height: 100%;
  background: #fff;
}

.search-holder[data-drawer=search] {
  --drawer-max-width: 100%;
  padding: 0;
  bottom: auto;
  height: auto;
  max-height: 100vh;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
}

.search-holder[data-drawer=search].is-open {
  padding-top: 0px;
}

.search-holder[data-drawer=search] > * {
  position: relative;
  z-index: 2;
}

.search-holder[data-drawer=search] .drawer__body {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100vw;
  max-height: 100vh;
  overflow-y: auto;
  background: #fff;
  padding: clamp(30px, 5.2631578947vw, 70px) clamp(20px, 2.2556390977vw, 30px);
  -webkit-box-shadow: 0px 20px 80px 0px rgba(13, 12, 33, 0.2509803922);
          box-shadow: 0px 20px 80px 0px rgba(13, 12, 33, 0.2509803922);
}

.search-holder[data-drawer=search] .search-holder__close {
  position: absolute;
}

.search-holder__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding-inline: clamp(20px, 2.2556390977vw, 30px);
  min-height: auto;
}

.search-holder__products {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 370px;
}

.search-holder__products-title {
  text-align: left;
  margin: 0 0 14px;
  font-family: "Druk Wide Cyr";
  font-weight: 700;
  font-size: 18px;
  line-height: 105%;
}

.search-holder__products-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.search-holder__products-list .product-item {
  min-width: min(130px, 100%);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 130px;
          flex: 1 1 130px;
}

.search-holder__products-list .product-item .like-star {
  color: #b4b4b4;
}

.search-holder__products-list .product-item .like-star svg {
  width: 18px;
  height: 17px;
}

.search-holder__products-list .product-item .like-star svg path {
  fill: currentColor;
}

.search-holder__products-list .product-item p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 16px;
}

.search-holder__products-list .product-item p a {
  color: #1f1f29;
}

.search-holder__products-list .product-item p a:hover,
.search-holder__products-list .product-item p a:focus-visible {
  color: var(--accent, #fda592);
}

.search-holder__products-list .product-item .product-price {
  font-size: 18px;
  margin-bottom: 5px;
}

.search-holder__products-list .product-item .colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding-top: 0;
}

.search-holder__panel {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 398px;
          flex: 0 0 398px;
  max-width: 398px;
}

.search-holder__title {
  font-family: "Druk Wide Cyr";
  font-weight: 700;
  font-size: 40px;
  line-height: 105%;
  margin-bottom: 24px;
  text-align: left;
}

.search-holder__form {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  max-width: none;
  height: 60px;
  margin-bottom: 20px;
}

.search-holder__input {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 0;
  background: #f2f1f4;
  padding: 20px 28px;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: #000;
}

.search-holder__input::-webkit-input-placeholder {
  color: initial;
}

.search-holder__input::-moz-placeholder {
  color: initial;
}

.search-holder__input:-ms-input-placeholder {
  color: initial;
}

.search-holder__input::-ms-input-placeholder {
  color: initial;
}

.search-holder__input::placeholder {
  color: initial;
}

.search-holder__btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  width: 28px;
  height: 28px;
  border: 0;
}

.search-holder__suggestions {
  margin-bottom: 30px;
}

.search-holder__suggestions-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #b4b4b4;
  margin-bottom: 10px;
}

.search-holder__suggestions-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-holder__suggestions-btn {
  font-weight: 500;
  font-size: clamp(14px, 1.2030075188vw, 16px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  padding: 8px 10px;
  border: 1px solid #d6d3dd;
  background: #fff;
  border-radius: 12px;
  -webkit-transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.search-holder__suggestions-btn--active {
  border-color: #e6684e;
  color: #e6684e;
}

.search-holder__suggestions-btn:hover,
.search-holder__suggestions-btn:focus-visible {
  border-color: #e6684e;
  color: #e6684e;
}

.search-holder__sub-title {
  font-family: "Druk Wide Cyr";
  font-weight: 700;
  font-size: 18px;
  line-height: 105%;
  margin-bottom: clamp(20px, 2.2556390977vw, 30px);
}

.search-holder .search-holder__popular-queries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.01em;
  list-style: none;
  padding: 0;
  max-width: 340px;
}

.search-holder__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.search-holder__item a {
  color: #1f1f29;
}

.search-holder__item a:hover,
.search-holder__item a:focus-visible {
  color: var(--accent, #fda592);
}

.search-holder__item::before {
  content: "";
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 14.9731L12.9049 11.878C14.0861 10.4333 14.6669 8.58976 14.5271 6.72881C14.3873 4.86786 13.5376 3.13184 12.1537 1.87983C10.7698 0.627828 8.95759 -0.0443712 7.09197 0.00227494C5.22636 0.0489211 3.45004 0.810843 2.13044 2.13044C0.810843 3.45004 0.0489211 5.22636 0.00227494 7.09197C-0.0443712 8.95759 0.627828 10.7698 1.87983 12.1537C3.13184 13.5376 4.86786 14.3873 6.72881 14.5271C8.58976 14.6669 10.4333 14.0861 11.878 12.9049L14.9731 16L16 14.9731ZM7.28541 13.0951C6.13635 13.0951 5.0131 12.7544 4.05769 12.116C3.10229 11.4776 2.35764 10.5703 1.91792 9.50869C1.47819 8.4471 1.36314 7.27896 1.58731 6.15198C1.81148 5.02501 2.3648 3.98981 3.17731 3.17731C3.98981 2.3648 5.02501 1.81148 6.15198 1.58731C7.27896 1.36314 8.4471 1.47819 9.50869 1.91792C10.5703 2.35764 11.4776 3.10229 12.116 4.05769C12.7544 5.0131 13.0951 6.13635 13.0951 7.28541C13.0934 8.82571 12.4808 10.3024 11.3916 11.3916C10.3024 12.4808 8.82571 13.0934 7.28541 13.0951Z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-transition: background 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: background 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.search-holder__item:hover::before,
.search-holder__item:focus-visible::before {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}

.search-holder__item a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.search-holder__close {
  cursor: pointer;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.search-holder__close:hover svg path {
  stroke: #fda592;
  fill: #fda592;
}

.search-holder__btn svg,
.search-holder__close svg {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.favorites-basket {
  padding: 0;
}

.favorites-basket__search {
  background: none;
  border: 0;
  color: #000;
  padding: 0;
  width: 27px;
  height: 27px;
}

.favorites-basket__search svg {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.white-header .favorites-basket__search {
  color: #fff;
}

.product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #fff;
}

.product-item .product-image {
  position: relative;
  margin: 0 0 15px;
  max-height: 346px;
  overflow: hidden;
}

.product-item .product-image img {
  width: 100%;
  height: auto;
}

.product-item .product-image > .img-frame,
.product-item .product-image > picture {
  pointer-events: none;
}

.product-item .product-image .origin-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.product-item .product-image .origin-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-item p {
  margin: 0 0 7px;
  font-weight: 600;
}

.product-item .colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-item .colors span {
  display: block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  overflow: hidden;
  text-indent: -999px;
}

.product-item .colors li {
  font-size: 13px;
  line-height: 16px;
  color: rgb(135, 130, 151);
  font-weight: 600;
}

.link-basket,
.like-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 21px;
  top: 12px;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #b4b4b4;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.link-basket svg,
.link-basket path,
.like-star svg,
.like-star path {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.link-basket.active,
.like-star.active,
.link-basket:hover,
.like-star:hover {
  color: #e6684e;
}

.link-basket.active path,
.link-basket.active svg,
.like-star.active path,
.like-star.active svg,
.link-basket:hover path,
.link-basket:hover svg,
.like-star:hover path,
.like-star:hover svg {
  fill: #e6684e;
}

.product-price {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #e6684e;
}

.product-price em {
  font-style: normal;
  position: relative;
  top: -3px;
  font-size: 14px;
  line-height: 16px;
  margin: 0 0 0 8px;
  display: inline-block;
  font-weight: 600;
  color: rgb(135, 130, 151);
}

.product-price em:after {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgb(135, 130, 151);
}

.product-gallery {
  position: relative;
}

.product-variant {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 63px;
          flex: 0 0 63px;
  width: 63px;
  height: 81px;
  z-index: 1;
}

.product-variant__link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-variant__holder-img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.product-variant__holder-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.product-variant {
  /* сам дроп-бокс */
}

.product-variant__drop-box {
  position: absolute;
  left: var(--drop-box-shift-x, -100vw);
  top: 100%;
  -webkit-transform: translateY(12px);
      -ms-transform: translateY(12px);
          transform: translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 95;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.product-variant {
  /* показать только у своей карточки */
}

.product-variant {
  /* чтобы перекрыть соседей при раскрытии */
}

.product-variant:hover {
  z-index: 4;
}

.product-drop-box {
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 80px 0px rgba(10, 4, 25, 0.2509803922);
          box-shadow: 0px 20px 80px 0px rgba(10, 4, 25, 0.2509803922);
  padding: 20px 30px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  border-radius: 20px;
  width: auto;
  min-width: 400px;
}

.product-drop-box__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 164px;
          flex: 0 0 164px;
}

.product-drop-box__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-drop-box__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  /* use content width so Firefox doesn't collapse */
  min-width: 0;
  /* allow long text to wrap instead of forcing overflow */
}

.product-drop-box__title {
  font-family: "Druk Wide Cyr", serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 105%;
  color: #000;
  margin-block: 20px 15px;
}

.product-drop-box__color {
  font-size: 13px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #878297;
}

.product-drop-box__color span {
  font-weight: 700;
  color: #000;
}

.product-drop-box__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  margin-top: 15px;
}

.product-drop-box__value {
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #e6684e;
}

.product-drop-box__old {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-decoration: line-through;
  position: relative;
  top: -3px;
  color: #878297;
}

.empty-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-block: clamp(72px, 12.7725856698vw, 164px) clamp(80px, 17.7570093458vw, 228px);
}

.empty-cart__icon {
  width: clamp(72px, 8.8785046729vw, 114px);
  height: clamp(53px, 6.5420560748vw, 84px);
  margin-bottom: clamp(24px, 2.9595015576vw, 38px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.empty-cart__icon .icon,
.empty-cart__icon svg,
.empty-cart__icon img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: visible;
}

.empty-cart__title {
  margin: 0 0 16px;
  max-width: 820px;
  font-size: clamp(28px, 3.1152647975vw, 40px);
  line-height: 1.05;
  font-weight: 700;
}

.empty-cart__text {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.empty-cart__button {
  min-width: 0;
  padding-inline: 34px;
  min-width: 252px;
}

.news-section h2 {
  -moz-text-align-last: left;
       text-align-last: left;
}

@media (min-width: 575px) {
  .product-gallery {
    overflow: visible;
  }

  .product-variant:hover > .product-variant__drop-box[style*="--drop-box-shift-x"],
  .product-variant:focus-within > .product-variant__drop-box[style*="--drop-box-shift-x"],
  .product-variant .product-variant__link:focus-visible + .product-variant__drop-box[style*="--drop-box-shift-x"] {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    pointer-events: auto;
  }
}

@media (min-width: 576px) {
  .site-footer__copyright {
    margin-top: -14%;
  }
}

@media (min-width: 761px) {
  .product-variant {
    height: 100px;
    width: 78px;
    -ms-flex-preferred-size: 78px;
        flex-basis: 78px;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .site-footer {
    padding: 32px 32px 28px;
  }

  .site-footer__wrapper {
    grid-template-columns: fit-content(280px) minmax(298px, 1fr) minmax(300px, 360px);
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 18px;
    grid-template-areas: "social nav subscribe" "copy   nav subscribe";
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .site-footer__subscribe {
    margin: 0;
    -ms-flex-item-align: start;
        align-self: start;
    justify-self: end;
  }

  .site-footer__nav {
    --nav-rows: 5;
    grid-auto-flow: column;
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
    grid-template-columns: none;
    grid-template-rows: repeat(var(--nav-rows), -webkit-max-content);
    grid-template-rows: repeat(var(--nav-rows), max-content);
    gap: 14px 32px;
    justify-items: start;
    width: 100%;
  }

  .site-footer__copyright {
    max-width: 300px;
    -ms-flex-item-align: start;
        align-self: start;
  }

  .site-footer__copyright::before {
    content: none;
  }
}

@media (min-width: 992px) {
  .site-footer {
    padding: 40px 40px 32px;
    border-radius: 20px;
  }

  .site-footer__logo {
    height: auto;
    width: 90%;
    margin-top: -20%;
    margin-bottom: 90px;
  }

  .site-footer__wrapper {
    grid-template-columns: minmax(0, 300px) minmax(298px, 1fr) fit-content(400px);
    -webkit-column-gap: 56px;
       -moz-column-gap: 56px;
            column-gap: 56px;
  }

  .site-footer__subscribe {
    max-width: 400px;
  }

  .site-footer__nav {
    gap: 14px 48px;
  }
}

@media screen and (min-width: 1025px) {
  .product-related .product-image,
  .home-popular-slider .product-image {
    aspect-ratio: 226/326;
    max-height: none;
  }

  .product-related .product-image > .img-frame,
  .product-related .product-image > picture,
  .home-popular-slider .product-image > .img-frame,
  .home-popular-slider .product-image > picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .product-related .product-image .img-frame,
  .product-related .product-image > picture img,
  .home-popular-slider .product-image .img-frame,
  .home-popular-slider .product-image > picture img {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1025px) {
  .product-variant {
    height: 86px;
    width: 66px;
    -ms-flex-preferred-size: 66px;
        flex-basis: 66px;
  }
}

@media (max-width: 1025px) {
  .search-holder__layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media (max-width: 1024px) {
  .search-holder__panel {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }

  .search-holder__title {
    margin-bottom: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
    -ms-hyphens: auto;
        hyphens: auto;
  }
}

@media (max-width: 991px) {
  .site-footer__wrapper {
    grid-template-columns: fit-content(280px) minmax(220px, 1fr);
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 18px;
    grid-template-areas: "subscribe subscribe" "social nav " "copy   nav ";
  }
}

@media (max-width: 575px) {
  .site-footer__wrapper {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
    grid-template-areas: "subscribe" "social" "nav" "copy";
  }

  .empty-cart__button {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

@media (max-width: 574px) {
  .favorites-basket__search {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .site-footer__copyright {
    margin-top: -34%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .instruction-video__btn:hover {
    background: #e6684e;
    -webkit-transform: translateY(-4px);
        -ms-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 16px 35px rgba(230, 104, 78, 0.45);
            box-shadow: 0 16px 35px rgba(230, 104, 78, 0.45);
  }

  .instruction-video__btn:active {
    -webkit-transform: translateY(-1px) scale(0.97);
        -ms-transform: translateY(-1px) scale(0.97);
            transform: translateY(-1px) scale(0.97);
    -webkit-box-shadow: 0 8px 20px rgba(230, 104, 78, 0.35);
            box-shadow: 0 8px 20px rgba(230, 104, 78, 0.35);
  }
}