@charset "UTF-8";

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff") format("woff"), url("../fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff") format("woff"), url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

.topbar {
  background: #E9DAD8;
  padding: 12px 0;
}

.topbar__text {
  font-weight: 300;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.72px;
  color: #24150e;
  text-align: center;
}

.header {
  background: #FFFFFF;
  border-bottom: 1px solid #F5F5F5;
  -webkit-box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  position: relative;
  z-index: 10;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #24150e;
}

.header__logo svg {
  display: block;
  width: 84px;
  height: 40px;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.84px;
  color: #24150e;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__link svg {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__link:hover {
  color: #4d3b39;
}

.header__link--drop svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header__drop {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__drop:hover > .header__link--drop,
.header__drop.is-open > .header__link--drop {
  color: #4d3b39;
}

.header__drop:hover > .header__link--drop svg,
.header__drop.is-open > .header__link--drop svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header__drop:hover .header__submenu,
.header__drop.is-open .header__submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.header__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 10px);
      -ms-transform: translate(-50%, 10px);
          transform: translate(-50%, 10px);
  min-width: 190px;
  background: #FFFFFF;
  border: 1px solid #F5F5F5;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 20;
}

.header__sublink {
  padding: 9px 22px;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  letter-spacing: 0.84px;
  color: #24150e;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__sublink:hover {
  color: #4d3b39;
}

.header__drop--mega {
  position: static;
}

.header__drop--mega:hover .header__mega,
.header__drop--mega.is-open .header__mega {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.header__mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid #F5F5F5;
  -webkit-box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  padding: 32px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 20;
}

.header__mega-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px;
}

.header__mega-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header__mega-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.header__mega-link {
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.84px;
  color: #24150e;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__mega-link:hover {
  color: #4d3b39;
}

.header__mega-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 422px;
  max-width: 36%;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  overflow: hidden;
}

.header__mega-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.header__search {
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 15;
}

.header__search.is-open {
  opacity: 1;
  visibility: visible;
}

.header__search-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.header__search-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #24150e;
}

.header__search-logo svg {
  display: block;
  width: 84px;
  height: 40px;
}

.header__search-form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border: 0.5px solid #24150e;
  padding: 4px 8px;
}

.header__search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  border: none;
  background: none;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #24150e;
}

.header__search-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.header__search-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.header__search-input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.header__search-input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.header__search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.header__search-input:focus {
  outline: none;
}

.header__search-submit {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #24150e;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__search-submit svg {
  width: 24px;
  height: 24px;
}

.header__search-submit:hover {
  color: #4d3b39;
}

.header__search-close {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #24150e;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__search-close svg {
  width: 32px;
  height: 32px;
}

.header__search-close:hover {
  color: #4d3b39;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__sale {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.84px;
  color: #4d3b39;
}

.header__icon {
  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;
  width: 24px;
  height: 24px;
  color: #24150e;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__icon svg {
  width: 24px;
  height: 24px;
}

.header__icon:hover {
  color: #4d3b39;
}

.header__burger {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  color: #24150e;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.header__burger svg {
  width: 32px;
  height: 32px;
}

.header__drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  overflow-y: auto;
}

.header__drawer.is-open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.header__drawer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #F5F5F5;
}

.header__drawer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #24150e;
}

.header__drawer-logo svg {
  display: block;
  width: 72px;
  height: 34px;
}

.header__drawer-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #24150e;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__drawer-close svg {
  width: 28px;
  height: 28px;
}

.header__drawer-close:hover {
  color: #4d3b39;
}

.header__drawer-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 32px 16px;
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.header__icon--cart {
  position: relative;
}

.header__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: #4d3b39;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}

.header__cart-count[hidden] {
  display: none;
}

.header__cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 400px;
  max-width: 90%;
  background: #FFFFFF;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.header__cart-panel.is-open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.header__cart-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #F5F5F5;
}

.header__cart-title {
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #24150e;
}

.header__cart-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #24150e;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__cart-close:hover {
  color: #4d3b39;
}

.header__cart-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.header__cart-content .woocommerce-mini-cart__empty-message {
  color: #999999;
  font-size: 14px;
}

.header__cart-content ul.cart_list,
.header__cart-content ul.product_list_widget {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__cart-content ul.cart_list li,
.header__cart-content ul.product_list_widget li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #F5F5F5;
  font-size: 13px;
  line-height: 1.4;
}

.header__cart-content ul.cart_list li a,
.header__cart-content ul.product_list_widget li a {
  color: #24150e;
}

.header__cart-content ul.cart_list li img,
.header__cart-content ul.product_list_widget li img {
  width: 60px;
  height: auto;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__cart-content ul.cart_list li a.remove,
.header__cart-content ul.product_list_widget li a.remove {
  position: absolute;
  right: 0;
  color: #999999;
}

.header__cart-content .woocommerce-mini-cart__total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: #24150e;
}

.header__cart-content .woocommerce-mini-cart__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 0;
}

.header__cart-content .woocommerce-mini-cart__buttons a {
  display: block;
  text-align: center;
  padding: 13px;
  border: 1px solid #24150e;
  color: #24150e;
  font-size: 13px;
  letter-spacing: 0.5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__cart-content .woocommerce-mini-cart__buttons a.checkout {
  background: #24150e;
  color: #FFFFFF;
}

.header__cart-content .woocommerce-mini-cart__buttons a:hover {
  opacity: 0.85;
}

.cat-panel {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 110;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  overflow-y: auto;
}

.cat-panel.is-open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.cat-panel__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 16px;
  border-bottom: 1px solid #F5F5F5;
  position: sticky;
  top: 0;
  background: #FFFFFF;
  z-index: 2;
}

.cat-panel__title {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #24150e;
}

.cat-panel__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #24150e;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.cat-panel__close svg {
  width: 24px;
  height: 24px;
}

.cat-panel__close:hover {
  color: #4d3b39;
}

.cat-panel__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px;
}

.cat-panel__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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 14px 6px 22px;
  color: #24150e;
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), color-stop(50%, #fafafa), to(#F5F5F5));
  background: linear-gradient(180deg, #F5F5F5 0%, #fafafa 50%, #F5F5F5 100%);
}

.cat-panel__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  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;
}

.cat-panel__img img {
  width: auto;
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cat-panel__label {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
}

.drawer-menu {
  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;
  gap: 20px;
  width: 100%;
}

.drawer-link,
.drawer-toggle {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.84px;
  line-height: 1.2;
  color: #24150e;
  text-align: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.drawer-link:hover {
  color: #4d3b39;
}

.drawer-toggle {
  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;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.drawer-toggle svg {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.drawer-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
}

.drawer-item.is-open > .drawer-toggle {
  color: #4d3b39;
}

.drawer-item.is-open > .drawer-toggle svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.drawer-item--cat > .drawer-toggle--cat {
  color: #4d3b39;
}

.drawer-cats,
.drawer-sub {
  display: none;
  width: 100%;
}

.drawer-item.is-open > .drawer-cats {
  display: -ms-grid;
  display: grid;
}

.drawer-item.is-open > .drawer-sub {
  display: -ms-grid;
  display: grid;
}

.drawer-cats {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  max-width: 240px;
  margin: 0 auto;
}

.drawer-cats__link {
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  letter-spacing: 0.84px;
  color: #24150e;
  text-align: left;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.drawer-cats__link:hover {
  color: #4d3b39;
}

.drawer-sub {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 8px;
  justify-items: center;
}

.drawer-sub__link {
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  letter-spacing: 0.84px;
  color: #24150e;
  text-align: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.drawer-sub__link:hover {
  color: #4d3b39;
}

.footer {
  background: #24150e;
  color: #F5F5F5;
  padding: 64px 0;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #F5F5F5;
}

.footer__logo svg {
  width: 220px;
  height: auto;
}

.footer__cols {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding-left: 100px;
}

.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.footer__title {
  font-size: 16px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #F5F5F5;
}

.footer__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.footer__list a {
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #999999;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__list a:hover {
  color: #F5F5F5;
}

.footer__list a.footer__accent {
  color: #4d3b39;
}

.footer__social {
  color: #999999;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__social svg {
  width: 24px;
  height: 24px;
}

.footer__social:hover {
  color: #F5F5F5;
}

.footer__bottom {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}

.footer__copy {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #999999;
}

.footer__pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.footer__pay img {
  height: 48px;
  width: auto;
  display: block;
}

.page-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 4.48px;
  text-transform: uppercase;
  color: #24150e;
}

.section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.section-head__title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  color: #24150e;
}

.section-head__link {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.24px;
  color: #24150e;
  padding-bottom: 6px;
  border-bottom: 1px solid #24150e;
  white-space: nowrap;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.section-head__link:hover {
  color: #4d3b39;
  border-color: #4d3b39;
}

.swiper-slide .product-card {
  width: 100%;
}

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 304px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #24150e;
}

.product-card__img {
  width: 100%;
  aspect-ratio: 304/490;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.product-card:hover .product-card__img img {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}

.product-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.product-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.product-card__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
}

.product-card__like {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #24150e;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.product-card__like svg {
  width: 16px;
  height: 16px;
}

.product-card__like:hover {
  color: #4d3b39;
}

.product-card__price {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
}

.product-card__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.product-card__colors span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.field__error {
  display: none;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: #c0392b;
}

.field.has-error .field__control {
  border-color: #c0392b;
}

.field.has-error .field__error {
  display: block;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}

.auth-modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.auth-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 36, 36, 0.45);
}

.auth-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  background: #FFFFFF;
  border: 1px solid #cdbfb6;
  padding: 40px;
}

.auth-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  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;
  padding: 0;
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: #24150e;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.auth-modal__close svg {
  width: 20px;
  height: 20px;
}

.auth-modal__close:hover {
  color: #4d3b39;
}

.auth-modal__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.auth-modal__tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 8px;
  border: none;
  background: none;
  border-bottom: 1px solid #cdbfb6;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #999999;
  cursor: pointer;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.auth-modal__tab.is-active {
  color: #24150e;
  border-bottom-color: #24150e;
}

.auth-modal__title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #24150e;
  margin-bottom: 20px;
}

.auth-form {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.auth-form.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.auth-form__notice {
  display: none;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 2px;
}

.auth-form__notice.is-error {
  display: block;
  color: #c0392b;
  background: rgba(226, 46, 29, 0.08);
}

.auth-form__notice.is-success {
  display: block;
  color: #2E7D32;
  background: rgba(46, 125, 50, 0.08);
}

.auth-form__hint,
.auth-form__privacy {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #999999;
  margin: 0;
}

.auth-form__hint a,
.auth-form__privacy a {
  color: #4d3b39;
  text-decoration: underline;
}

.auth-form__submit {
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.auth__remember {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #24150e;
  cursor: pointer;
}

.auth__remember input {
  width: 18px;
  height: 18px;
  accent-color: #24150e;
  cursor: pointer;
}

.auth__lost {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0;
  border: none;
  background: none;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  color: #999999;
  text-decoration: underline;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.auth__lost:hover {
  color: #4d3b39;
}

.auth-prompt {
  max-width: 560px;
  margin: 60px auto 80px;
  text-align: center;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.auth-prompt__title {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #24150e;
}

.auth-prompt__text {
  font-size: 15px;
  line-height: 1.5;
  color: #999999;
  margin: 0;
}

.auth-prompt__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero {
  position: relative;
  min-height: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), color-stop(50%, #fafafa), to(#F5F5F5));
  background: linear-gradient(180deg, #F5F5F5 0%, #fafafa 50%, #F5F5F5 100%);
}

.hero__texture {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  z-index: 1;
  pointer-events: none;
}

.hero__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 55%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero__content {
  max-width: 50%;
  padding-top: 23px;
}

.hero__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 7.68px;
  text-transform: uppercase;
  color: #24150e;
}

.hero__btn {
  margin-top: 34px;
}

.news {
  padding: 64px 0;
  position: relative;
}

.news__viewport {
  position: relative;
  margin-top: 20px;
}

.news__slider {
  overflow: hidden;
}

.news__arrow {
  position: absolute;
  top: 39%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: #24150e;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
}

.news__arrow svg {
  width: 24px;
  height: 24px;
}

.news__arrow:hover {
  color: #4d3b39;
}

.news__arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.news__arrow--prev {
  left: -44px;
}

.news__arrow--next {
  right: -44px;
}

/* На екранах, де зовнішні стрілки не вміщаються поряд із контейнером,
   показуємо їх як круглі кнопки-оверлеї на краях каруселі. */
@media (max-width: 1399px) {
  .news__arrow {
    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;
    top: 33%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 2px 8px rgba(36, 21, 14, 0.16);
            box-shadow: 0 2px 8px rgba(36, 21, 14, 0.16);
    border-radius: 50%;
  }

  .news__arrow svg {
    width: 18px;
    height: 18px;
  }

  .news__arrow--prev {
    left: 8px;
  }

  .news__arrow--next {
    right: 8px;
  }
}

.catalog {
  padding-bottom: 64px;
}

.catalog__grid {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 366px 366px;
  grid-template-rows: 366px 366px;
  gap: 32px;
}

.catalog__all {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  font-size: 14px;
  letter-spacing: 2.24px;
  color: #24150e;
  padding-bottom: 6px;
  border-bottom: 1px solid #24150e;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.catalog__all:hover {
  color: #4d3b39;
  border-color: #4d3b39;
}

.cat-tile {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 40px;
  color: #24150e;
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), color-stop(50%, #fafafa), to(#F5F5F5));
  background: linear-gradient(180deg, #F5F5F5 0%, #fafafa 50%, #F5F5F5 100%);
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.cat-tile__img {
  max-height: 90%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.cat-tile:hover {
  -webkit-box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
          box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.cat-tile:hover .cat-tile__img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.cat-tile:hover .cat-tile__label {
  color: #4d3b39;
}

.cat-tile__label {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.cat-tile__label {
  margin-left: auto;
  padding-left: 20px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cat-tile--big {
  -ms-grid-row-span: 2;
  grid-row: span 2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.cat-tile--big .cat-tile__img {
  max-height: 86%;
}

.cat-tile--big .cat-tile__body {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  margin-left: 0;
}

.cat-tile--big .cat-tile__label {
  margin-left: 0;
  padding-left: 0;
}

.about {
  padding-bottom: 64px;
}

.about__row {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.about__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}

.about__desc {
  max-width: 417px;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.about__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  letter-spacing: 2.24px;
  color: #24150e;
  padding-bottom: 6px;
  border-bottom: 1px solid #24150e;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.about__link:hover {
  color: #4d3b39;
  border-color: #4d3b39;
}

.about__img {
  width: 651px;
  height: 740px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.insta {
  padding-bottom: 64px;
}

.insta__grid {
  margin: 20px auto 0;
  max-width: 1312px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 10px;
}

.insta__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 302px;
  overflow: hidden;
}

.insta__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.insta__item:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.section-head--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-head--center .section-head__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.catalog-page {
  padding: 32px 0 80px;
}

.catalog-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 44px;
}

.catalog-page__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  color: #24150e;
}

.catalog-page__count {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #999999;
  white-space: nowrap;
}

.catalog-page__sort {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  color: #24150e;
  cursor: pointer;
}

.catalog-page__sort svg {
  width: 24px;
  height: 24px;
}

.catalog-page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}

.filter {
  width: 304px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.filter__toggle {
  display: none;
}

.filter__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.filter__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.filter__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.filter__actions .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto;
}

.filter-price {
  margin-top: 20px;
}

.filter-price__values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
  margin-bottom: 8px;
}

.filter-price__track {
  position: relative;
  height: 2px;
  background: #F5F5F5;
  background: #cdbfb6;
}

.filter-price__range {
  position: absolute;
  top: 0;
  height: 2px;
  background: #24150e;
}

.filter-price__handle {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #24150e;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.filter-drop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.filter-drop__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.filter-drop__head svg {
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.filter-drop__list {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.filter-drop.is-open .filter-drop__head svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.filter-drop.is-open .filter-drop__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filter-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
}

.filter-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-check__box {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #cdbfb6;
  position: relative;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

input:checked + .filter-check__box {
  border-color: #24150e;
  background: #24150e;
}

input:checked + .filter-check__box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #FFFFFF;
  border-width: 0 1.5px 1.5px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.filter-check__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.catalog-grid {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.catalog-grid .product-card {
  width: 100%;
}

.pagination {
  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;
  gap: 8px;
  margin-top: 60px;
}

.pagination__item {
  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;
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  font-weight: 400;
  font-size: 14px;
  color: #24150e;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.pagination__item.is-active {
  font-weight: 500;
  color: #4d3b39;
}

.pagination__item:hover {
  color: #4d3b39;
}

.pagination__arrow {
  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;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  color: #24150e;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.pagination__arrow svg {
  width: 24px;
  height: 24px;
}

.pagination__arrow:hover {
  color: #4d3b39;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
  padding: 12px 0 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #24150e;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.breadcrumbs::-webkit-scrollbar {
  display: none;
}

.breadcrumbs > * {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}

.breadcrumbs a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: #4d3b39;
}

.breadcrumbs__sep {
  color: #999999;
}

.product {
  padding: 32px 0 0;
}

.product__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}

.product__gallery {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.product__photo {
  aspect-ratio: 426/562;
  overflow: hidden;
}

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

.product__aside {
  width: 416px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: 20px;
}

.product-info {
  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;
}

.product-info__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.product-info__title {
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  color: #24150e;
}

.product-info__sku {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.84px;
  color: #999999;
}

.product-info__price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.product-info__price {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  color: #24150e;
}

.product-info__attrs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.product-info__desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #4d3b39;
}

.product-info__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.product-info__actions .btn {
  width: auto;
}

.product-info__accordions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product-stock {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 24px;
  padding: 0 8px;
  border: 0.5px solid #24150e;
  border-radius: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #24150e;
}

.product-stock svg {
  width: 16px;
  height: 16px;
}

.product-attr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.product-attr__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.product-attr__colors,
.product-attr__sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.color-swatch {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
}

.color-swatch::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--c);
}

.color-swatch.is-active {
  -webkit-box-shadow: inset 0 0 0 1px #24150e;
          box-shadow: inset 0 0 0 1px #24150e;
}

.size-swatch {
  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;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0.5px solid rgba(145, 145, 145, 0.25);
  border-radius: 2px;
  background: none;
  cursor: pointer;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #999999;
  -webkit-transition: border-color 0.3s, color 0.3s;
  transition: border-color 0.3s, color 0.3s;
}

.size-swatch.is-active {
  border-color: #24150e;
  color: #24150e;
}

.size-swatch:hover {
  border-color: #24150e;
  color: #24150e;
}

.acc {
  border-bottom: 1px solid #cdbfb6;
}

.acc__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 8px 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.acc__head svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.acc__body {
  display: none;
  padding: 0 0 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #4d3b39;
}

.acc.is-open .acc__head svg {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.acc.is-open .acc__body {
  display: block;
}

.reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.reviews__empty {
  font-size: 14px;
  color: #24150e;
}

.reviews__lead {
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.reviews__form {
  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;
}

.reviews__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.reviews__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.reviews__label span {
  color: #4d3b39;
}

.reviews__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  color: #24150e;
}

.reviews__stars svg {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.reviews__input {
  height: 32px;
  padding: 0 10px;
  border: 0.5px solid #cdbfb6;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  color: #24150e;
}

.reviews__textarea {
  min-height: 80px;
  padding: 10px;
  border: 0.5px solid #cdbfb6;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  color: #24150e;
}

.reviews__save {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.reviews__save input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.reviews__save-box {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 0.5px solid #24150e;
  position: relative;
}

input:checked + .reviews__save-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #24150e;
  border-width: 0 1.5px 1.5px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.reviews__save-text {
  font-weight: 300;
  font-style: italic;
  font-size: 12px;
  line-height: 16px;
  color: #24150e;
}

.reviews__submit {
  width: 220px;
}

.related {
  padding: 40px 0;
}

.related .container {
  position: relative;
}

.related__slider {
  margin-top: 24px;
  overflow: hidden;
}

.related .product-card {
  width: 100%;
}

.related__arrow {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  color: #24150e;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.related__arrow svg {
  width: 24px;
  height: 24px;
}

.related__arrow:hover {
  color: #4d3b39;
}

.related__arrow--prev {
  left: -5px;
}

.related__arrow--next {
  right: -5px;
}

.woocommerce a.remove.cart-item__remove {
  color: #24150e !important;
}

.woocommerce a.remove.cart-item__remove:hover {
  color: #4d3b39 !important;
  background: none !important;
}

.cart {
  padding: 32px 0 64px;
}

.cart__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 18px;
}

.cart__items {
  width: 800px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cart__summary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.cart-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  height: 100%;
  border: 1px solid #cdbfb6;
  padding: 32px 50px;
}

.cart-table__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.cart-table__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-table__col {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.cart-table__col--product {
  width: 350px;
  padding-left: 10px;
}

.cart-table__col--price,
.cart-table__col--qty,
.cart-table__col--sub {
  width: 80px;
  text-align: center;
}

.cart-table__divider {
  height: 1px;
  margin-top: auto;
  background: #cdbfb6;
}

.cart-table__foot .btn {
  width: auto;
}

.cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart-item__product {
  width: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  min-width: 0;
}

.cart-item__remove {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  color: #24150e !important;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.cart-item__remove svg {
  width: 32px;
  height: 32px;
}

.cart-item__remove:hover {
  color: #4d3b39 !important;
}

.cart-item__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 57px;
  height: 75px;
  overflow: hidden;
}

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

.cart-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cart-item__name {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #24150e;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.cart-item__name:hover {
  color: #4d3b39;
}

.cart-item__variant {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #999999;
}

.cart-item__cell {
  width: 80px;
  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;
}

.cart-item__label {
  display: none;
}

.cart-item__value {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #24150e;
}

.qty {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.5px solid #cdbfb6;
}

.qty__btn {
  width: 30px;
  height: 36px;
  padding: 0;
  border: none;
  background: none;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #24150e;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.qty__btn:hover {
  color: #4d3b39;
}

.qty__input {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-left: 0.5px solid #cdbfb6;
  border-right: 0.5px solid #cdbfb6;
  text-align: center;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #24150e;
}

.cart-item__cell--qty .qty {
  border: 0.5px solid #cdbfb6;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cart-item__cell--qty .qty__btn {
  display: none;
}

.cart-item__cell--qty input.qty,
.cart-item__cell--qty .qty__input {
  width: 80px;
  height: 38px;
  padding: 6px 10px;
  border: none;
  background: #FFFFFF;
  border-radius: 0;
  text-align: center;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.56px;
  color: #24150e;
  -moz-appearance: textfield;
}

.cart-item__cell--qty input.qty::-webkit-outer-spin-button,
.cart-item__cell--qty input.qty::-webkit-inner-spin-button,
.cart-item__cell--qty .qty__input::-webkit-outer-spin-button,
.cart-item__cell--qty .qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item__cell--qty input.qty:focus,
.cart-item__cell--qty .qty__input:focus {
  outline: none;
}

.cart-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  height: 100%;
  border: 1px solid #cdbfb6;
  padding: 32px 50px;
}

.cart-summary__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #24150e;
}

.cart-summary__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.cart-summary__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.cart-summary__value {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #24150e;
}

.cart-summary__btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.checkout {
  padding: 32px 0 64px;
}

.checkout__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
}

.checkout__form {
  width: 800px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.checkout__aside {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.checkout-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  border: 1px solid #cdbfb6;
  padding: 32px 50px;
}

.checkout-box__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #24150e;
}

.checkout-box__privacy {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #24150e;
}

.checkout-box__submit {
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.form-row .field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.field__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.field__label span {
  color: #c0392b;
}

.field__wrap {
  position: relative;
  width: 100%;
}

.field--select .field__wrap svg {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  pointer-events: none;
  color: #24150e;
}

.field__control {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 0.5px solid #cdbfb6;
  background: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #24150e;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.field__control::-webkit-input-placeholder {
  color: #24150e;
  opacity: 1;
}

.field__control::-moz-placeholder {
  color: #24150e;
  opacity: 1;
}

.field__control:-ms-input-placeholder {
  color: #24150e;
  opacity: 1;
}

.field__control::-ms-input-placeholder {
  color: #24150e;
  opacity: 1;
}

.field__control::placeholder {
  color: #24150e;
  opacity: 1;
}

.field__control:focus {
  border-color: #24150e;
}

.field--select .field__control {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}

.order-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.order-summary__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.order-summary__head span {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.order-summary__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.order-summary__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  min-width: 0;
}

.order-summary__img {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 57px;
  height: 75px;
}

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

.order-summary__qty {
  position: absolute;
  top: -10px;
  left: 47px;
  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;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #24150e;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 9px;
}

.order-summary__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.order-summary__name {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #24150e;
}

.order-summary__variant {
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}

.order-summary__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.order-summary__row span:first-child {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.order-summary__row--total {
  padding-top: 16px;
  border-top: 1px solid #cdbfb6;
}

.order-summary__price {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #24150e;
}

.pay-methods {
  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;
}

.pay-method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border: 0.5px solid #cdbfb6;
  cursor: pointer;
  -webkit-transition: border-color 0.3s, background 0.3s;
  transition: border-color 0.3s, background 0.3s;
}

.pay-method input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pay-method__mark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid #999999;
  border-radius: 50%;
  position: relative;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

input:checked + .pay-method__mark {
  border-color: #24150e;
}

input:checked + .pay-method__mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #24150e;
}

.pay-method__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.pay-method__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.pay-method__desc {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  color: #999999;
}

.pay-method.is-active,
.pay-method:hover {
  border-color: #24150e;
  background: rgba(233, 233, 233, 0.4);
}

.woocommerce-form-coupon-toggle,
.checkout_coupon,
.woocommerce-additional-fields,
#order_comments,
#wcus-shipping-fields,
.wcus-checkout-np-fields > h3,
.order-summary__shipping,
.order-summary .woocommerce-shipping-methods {
  display: none !important;
}

.checkout .woocommerce-billing-fields__field-wrapper {
  gap: 16px;
}

.checkout .woocommerce-billing-fields__field-wrapper .form-row {
  margin: 0;
  padding: 0;
}

.checkout .woocommerce-billing-fields__field-wrapper label.field__label,
.checkout .woocommerce-billing-fields__field-wrapper .field__label {
  display: block;
  margin: 0 0 8px;
  padding: 0;
  line-height: 16px;
  min-height: 0;
}

.checkout .woocommerce-billing-fields__field-wrapper .woocommerce-input-wrapper {
  display: block;
}

.checkout .woocommerce-billing-fields__field-wrapper .field__control {
  height: 42px;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.checkout #billing_country_field {
  clear: both;
  margin-top: 8px;
}

.checkout #billing_country_field label,
.checkout #billing_country_field .woocommerce-input-wrapper {
  display: none !important;
}

.checkout #billing_country_field select {
  width: 100%;
  height: 42px;
  padding: 0 38px 0 12px;
  border: 0.5px solid #cdbfb6;
  background-color: #FFFFFF;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #24150e;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23242424' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.checkout #billing_country_field::before {
  content: "Доставка";
  display: block;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #24150e;
}

#wcus-billing-fields .form-row {
  margin: 0 0 16px;
}

#wcus-billing-fields p:has([name=shipping_type])::before,
#wcus-billing-fields p:has([name=wcus_np_billing_city])::before,
#wcus-billing-fields p:has([name=wcus_np_billing_warehouse])::before {
  display: block;
  margin-bottom: 8px;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

#wcus-billing-fields p:has([name=shipping_type])::before {
  content: "Спосіб доставки";
}

#wcus-billing-fields p:has([name=wcus_np_billing_city])::before {
  content: "Місто/Село";
}

#wcus-billing-fields p:has([name=wcus_np_billing_warehouse])::before {
  content: "Відділення";
}

#wcus-billing-fields .zen-ui-select {
  height: 42px;
  border: 0.5px solid #cdbfb6;
  border-radius: 0;
}

#payment {
  background: transparent !important;
}

#payment ul.payment_methods {
  padding: 0 !important;
  border: 0;
  margin: 0;
}

#payment li.wc_payment_method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  margin: 0 0 8px;
  background: #F6F6F6;
  border-radius: 4px;
  list-style: none;
}

#payment li.wc_payment_method > input[type=radio] {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  float: none;
}

#payment li.wc_payment_method > label {
  margin: 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
  cursor: pointer;
}

#payment li.wc_payment_method label img,
#payment li.wc_payment_method img {
  display: none !important;
}

#payment li.wc_payment_method .payment_box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 8px 0 0;
  background: transparent;
  font-size: 13px;
  line-height: 18px;
  color: #999999;
}

#payment li.wc_payment_method .payment_box::before {
  display: none;
}

.container.container--wide {
  max-width: calc(1312px + 30px);
}

.account {
  padding: 32px 0 64px;
}

.account__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
}

.account__nav {
  width: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.account__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.account-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.account-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 50px;
  border: 1px solid #cdbfb6;
  background: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  text-align: left;
  color: #24150e;
  cursor: pointer;
  -webkit-transition: background 0.3s, border-color 0.3s;
  transition: background 0.3s, border-color 0.3s;
}

.account-nav__item:hover {
  border-color: #24150e;
}

.account-nav__item.is-active {
  background: rgba(233, 233, 233, 0.5);
}

.account-panel {
  display: none;
}

.account-panel.is-active {
  display: block;
}

.panel-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  border: 1px solid #cdbfb6;
  padding: 32px 50px;
}

.panel-box__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #24150e;
}

.account-greeting {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #24150e;
}

.account-greeting span {
  text-transform: none;
  letter-spacing: normal;
}

.account-greeting a {
  text-decoration: underline;
}

.account-intro {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #24150e;
}

.account-intro a {
  color: #24150e;
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.account-intro a:hover {
  color: #4d3b39;
}

.account-intro--addr {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.96px;
  line-height: 1.3;
  margin-bottom: 48px;
}

.wlfmc-wishlist-table.wlfmc-list {
  display: block;
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  background: none;
}

.wlfmc-wishlist-table.wlfmc-list tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
}

.wlfmc-wishlist-table.wlfmc-list tr.wlfmc-table-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
  padding: 32px 50px;
  -webkit-box-shadow: inset 0 0 0 1px #cdbfb6;
          box-shadow: inset 0 0 0 1px #cdbfb6;
  background: none;
}

.wlfmc-wishlist-table.wlfmc-list td {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: auto !important;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
}

.wlfmc-wishlist-table.wlfmc-list .first-column {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wlfmc-wishlist-table.wlfmc-list .wlfmc-thumbnail-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.wlfmc-wishlist-table.wlfmc-list .wlfmc-action-icons {
  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;
  gap: 16px;
}

.wlfmc-wishlist-table.wlfmc-list .product-checkbox {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}

.wlfmc-wishlist-table.wlfmc-list .product-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wlfmc-wishlist-table.wlfmc-list .product-checkbox span {
  display: block;
  width: 16px;
  height: 16px;
  border: 0.5px solid #999999;
  background: #FFFFFF;
}

.wlfmc-wishlist-table.wlfmc-list .product-checkbox input:checked + span {
  border-color: #24150e;
  background: #24150e;
}

.wlfmc-wishlist-table.wlfmc-list .product-remove {
  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;
  width: 16px;
  height: 16px;
  color: #24150e;
  font-size: 16px;
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.wlfmc-wishlist-table.wlfmc-list .product-remove:hover {
  color: #4d3b39;
}

.wlfmc-wishlist-table.wlfmc-list .product-remove i::before {
  font-size: 16px;
}

.wlfmc-wishlist-table.wlfmc-list .product-thumbnail {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 57px;
  height: 75px;
  overflow: hidden;
}

.wlfmc-wishlist-table.wlfmc-list .product-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.wlfmc-wishlist-table.wlfmc-list .center-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.wlfmc-wishlist-table.wlfmc-list .center-column > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 391px;
  max-width: 100%;
}

.wlfmc-wishlist-table.wlfmc-list .center-column > div > a,
.wlfmc-wishlist-table.wlfmc-list .center-column > div > span {
  display: block;
  width: 100%;
}

.wlfmc-wishlist-table.wlfmc-list .product-name {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #24150e;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.wlfmc-wishlist-table.wlfmc-list .product-name strong {
  font-weight: 500;
}

.wlfmc-wishlist-table.wlfmc-list .product-name:hover {
  color: #4d3b39;
}

.wlfmc-wishlist-table.wlfmc-list .wlfmc-variation,
.wlfmc-wishlist-table.wlfmc-list .variation {
  font-size: 14px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  color: #999999;
}

.wlfmc-wishlist-table.wlfmc-list .wlfmc-variation dt,
.wlfmc-wishlist-table.wlfmc-list .wlfmc-variation dd,
.wlfmc-wishlist-table.wlfmc-list .variation dt,
.wlfmc-wishlist-table.wlfmc-list .variation dd {
  display: inline;
  margin: 0;
  font-weight: 500;
}

.wlfmc-wishlist-table.wlfmc-list .product-price,
.wlfmc-wishlist-table.wlfmc-list .product-price .amount {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2.24px;
  color: #24150e;
}

.wlfmc-wishlist-table.wlfmc-list .last-column {
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wlfmc-wishlist-table.wlfmc-list .last-column .button,
.wlfmc-wishlist-table.wlfmc-list .last-column a.add_to_cart_button,
.wlfmc-wishlist-table.wlfmc-list .last-column a.product_type_simple,
.wlfmc-wishlist-table.wlfmc-list .last-column a.product_type_variable,
.wlfmc-wishlist-table.wlfmc-list .last-column a.wlfmc-add-to-cart,
.wlfmc-wishlist-table.wlfmc-list .last-column > a {
  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;
  width: 198px;
  height: 36px;
  padding: 10px 24px;
  border: 1px solid #24150e;
  background: #24150e;
  color: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.wlfmc-wishlist-table.wlfmc-list .last-column .button:hover,
.wlfmc-wishlist-table.wlfmc-list .last-column a.add_to_cart_button:hover,
.wlfmc-wishlist-table.wlfmc-list .last-column a.product_type_simple:hover,
.wlfmc-wishlist-table.wlfmc-list .last-column a.product_type_variable:hover,
.wlfmc-wishlist-table.wlfmc-list .last-column a.wlfmc-add-to-cart:hover,
.wlfmc-wishlist-table.wlfmc-list .last-column > a:hover {
  background: #4d3b39;
  border-color: #4d3b39;
}

.wlfmc-wishlist-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.wlfmc-wishlist-table.wlfmc-list .product-remove svg {
  width: 16px;
  height: 16px;
}

.wlfmc-table-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  -webkit-box-shadow: inset 0 0 0 1px #cdbfb6;
          box-shadow: inset 0 0 0 1px #cdbfb6;
  padding: 32px 50px;
}

.wlfmc-footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.wlfmc-footer-left .product-checkbox {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}

.wlfmc-footer-left .product-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wlfmc-footer-left .product-checkbox span {
  display: block;
  width: 16px;
  height: 16px;
  border: 0.5px solid #999999;
  background: #FFFFFF;
}

.wlfmc-footer-left .product-checkbox input:checked + span {
  border-color: #24150e;
  background: #24150e;
}

.wlfmc-bulk {
  position: relative;
  width: 200px;
}

.wlfmc-bulk__select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 39px;
  padding: 0 36px 0 16px;
  border: 0.5px solid #cdbfb6;
  background: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #24150e;
  cursor: pointer;
}

.wlfmc-bulk svg {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 12px;
  height: 12px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.wlfmc-apply {
  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;
  width: 168px;
  height: 36px;
  padding: 10px 24px;
  border: 1px solid #24150e;
  background: none;
  color: #24150e;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}

.wlfmc-apply:hover {
  background: #24150e;
  color: #FFFFFF;
}

.wlfmc-footer-addcart {
  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;
  width: 198px;
  height: 36px;
  padding: 10px 24px;
  border: 1px solid #24150e;
  background: #24150e;
  color: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.wlfmc-footer-addcart:hover {
  background: #4d3b39;
  border-color: #4d3b39;
}

.panel-box--orders {
  padding: 32px;
}

.acc-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.acc-table__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 170px 100px 100px 150px 131px;
  grid-template-columns: 170px 100px 100px 150px 131px;
  -webkit-column-gap: 44.75px;
     -moz-column-gap: 44.75px;
          column-gap: 44.75px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #24150e;
}

.acc-table__row > span,
.acc-table__row > span > time,
.acc-table__row > span > a {
  padding-left: 10px;
}

.acc-table__head {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #cdbfb6;
}

.acc-table__head span {
  font-weight: 500;
}

.acc-table__th--order-status,
.acc-table__td--order-status {
  text-align: center;
  padding-left: 0;
}

.acc-table__td--order-actions {
  padding-left: 0;
}

.acc-table__btn {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  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;
}

.addresses {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.address-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.address-group__heading {
  padding: 10px 50px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #24150e;
}

.address-card {
  gap: 24px;
}

.address-card__title {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #24150e;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.address-card__title:hover {
  color: #4d3b39;
}

.address-card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  font-style: normal;
  color: #24150e;
}

.account-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.account-form__submit {
  width: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.field__hint {
  font-weight: 300;
  font-style: italic;
  font-size: 12px;
  line-height: 16px;
  color: #999999;
}

.field--pass .field__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.field--pass .field__eye {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  color: #999999;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.field--pass .field__eye svg {
  width: 24px;
  height: 24px;
}

.field--pass .field__eye:hover {
  color: #24150e;
}

.field--pass.is-visible .field__eye {
  color: #24150e;
}

.field__control--area {
  height: auto;
  min-height: 140px;
  padding: 12px;
}

/* Hide country field — Ukraine only */
.woocommerce-address-fields #billing_country_field,
.woocommerce-address-fields #shipping_country_field {
  display: none !important;
}

/* Fix name fields left/right padding in edit account */
.woocommerce-EditAccountForm .form-row,
.edit-account .form-row {
  padding: 0 !important;
  margin: 0 !important;
}

/* Order view page */
.woocommerce-order-overview {
  list-style: none;
  padding: 20px 24px;
  margin: 0 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 32px;
  border: 1px solid #cdbfb6;
}

.woocommerce-order-overview li {
  font-size: 14px;
  color: #999999;
  margin: 0;
}

.woocommerce-order-overview li strong {
  color: #24150e;
  font-weight: 500;
}

.woocommerce-order-details {
  margin-bottom: 32px;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #24150e;
}

.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-table--order-details thead th {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid #cdbfb6;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #999999;
}

.woocommerce-table--order-details tbody td {
  padding: 16px 0;
  border-bottom: 1px solid #cdbfb6;
  vertical-align: middle;
}

.woocommerce-table--order-details tfoot tr th,
.woocommerce-table--order-details tfoot tr td {
  padding: 12px 0;
  border-bottom: 1px solid #cdbfb6;
}

.woocommerce-table--order-details tfoot .order-total th,
.woocommerce-table--order-details tfoot .order-total td {
  font-weight: 600;
  border-bottom: none;
}

.woocommerce-table--order-details .product-total,
.woocommerce-table--order-details tfoot td {
  text-align: right;
}

.woocommerce-customer-details {
  margin-top: 32px;
}

.woocommerce-column--billing-address address,
.woocommerce-column--shipping-address address {
  font-style: normal;
  line-height: 1.8;
  padding: 20px 24px;
  border: 1px solid #cdbfb6;
  color: #24150e;
}

.info-page {
  padding: 32px 0 80px;
}

.info-page__container {
  max-width: 656px;
  margin-left: max(15px, (100% - 1312px) / 2 + 15px);
  padding-left: 0;
  padding-right: 0;
}

.info-page__intro {
  margin-top: 24px;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #24150e;
}

.info-block {
  margin-top: 40px;
}

.info-block__title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  color: #24150e;
  margin-bottom: 20px;
}

.info-block__sub {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #24150e;
  margin-top: 20px;
}

.info-block__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #24150e;
  margin-bottom: 4px;
}

.info-block__lead {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #24150e;
  margin-top: 16px;
}

.info-block__note {
  margin-top: 20px;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #24150e;
}

.info-accent {
  color: #4d3b39;
}

.info-list {
  list-style: none;
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.info-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #24150e;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: #24150e;
}

.info-list--num {
  counter-reset: item;
}

.info-list--num li::before {
  content: counter(item) ".";
  counter-increment: item;
  left: 2px;
}

.info-page__content {
  max-width: 656px;
}

.info-page__content h1 {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #24150e;
  margin-bottom: 24px;
}

.info-page__content h2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  color: #24150e;
  margin-top: 40px;
  margin-bottom: 16px;
}

.info-page__content h3,
.info-page__content h4 {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #24150e;
  margin-top: 20px;
  margin-bottom: 8px;
}

.info-page__content p {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #24150e;
  margin-bottom: 16px;
}

.info-page__content strong {
  font-weight: 500;
}

.info-page__content a {
  color: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.info-page__content a:hover {
  color: #4d3b39;
}

.info-page__content img {
  margin: 24px 0;
}

.info-page__content ul,
.info-page__content ol {
  margin: 8px 0 16px;
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.info-page__content li {
  position: relative;
  padding-left: 22px;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #24150e;
}

.info-page__content ul li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: #24150e;
}

.info-page__content ol {
  counter-reset: item;
}

.info-page__content ol li::before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 2px;
  top: 0;
}

.info-page__content h1:first-child,
.info-page__content h2:first-child {
  margin-top: 0;
}

.info-page__content > *:last-child {
  margin-bottom: 0;
}

.contacts__methods {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.contacts__method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.contacts__label {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  color: #24150e;
}

.contacts__value {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.contacts__value:hover {
  color: #4d3b39;
}

.contacts__intro {
  max-width: 868px;
  margin-top: 32px;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.contacts__form {
  max-width: 868px;
  margin-top: 20px;
}

.contacts__form .form-grid {
  gap: 10px;
}

.contacts__form .form-row {
  gap: 10px;
}

.contacts__form .field__control {
  height: 44px;
  border-width: 1px;
}

.contacts__form .field__control--area {
  min-height: 146px;
}

.contacts__submit {
  margin-top: 10px;
}

.notfound {
  padding: 80px 0;
}

.notfound__head {
  text-align: center;
  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;
  gap: 16px;
}

.notfound__title {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 3.84px;
  text-transform: uppercase;
  color: #24150e;
}

.notfound__text {
  max-width: 520px;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}

.notfound__link {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 2.24px;
  color: #24150e;
  padding-bottom: 6px;
  border-bottom: 1px solid #24150e;
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}

.notfound__link:hover {
  color: #4d3b39;
  border-color: #4d3b39;
}

.notfound__cats {
  margin-top: 64px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.cat-card {
  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;
  color: #24150e;
}

.cat-card__img {
  width: 100%;
  aspect-ratio: 304/343;
  overflow: hidden;
}

.cat-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.cat-card:hover .cat-card__img img {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}

.cat-card__label {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}

.reviews-page {
  padding: 32px 0 80px;
}

.reviews-page__grid {
  margin-top: 44px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  border: 1px solid #cdbfb6;
  padding: 32px;
}

.review-card__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #24150e;
}

.review-card__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  color: #F5A623;
}

.review-card__stars svg {
  width: 20px;
  height: 20px;
}

.review-card__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  color: #999999;
}

.review-card__product {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #cdbfb6;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #999999;
}

.about-hero {
  position: relative;
  min-height: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), color-stop(50%, #fafafa), to(#F5F5F5));
  background: linear-gradient(180deg, #F5F5F5 0%, #fafafa 50%, #F5F5F5 100%);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.about-hero__model {
  position: absolute;
  top: 0;
  right: 3%;
  height: 100%;
  width: 61%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-hero__title {
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 5.12px;
  text-transform: uppercase;
  color: #24150e;
}

.about-story {
  padding: 64px 0;
}

.about-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}

.about-row + .about-row {
  margin-top: 84px;
}

.about-row__img {
  width: 651px;
  height: 740px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.about-row__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-row__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-left: 20px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.about-row__text {
  max-width: 417px;
  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;
}

.about-row__text p {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #24150e;
}

.about-row__sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.about-row__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #24150e;
}

.about-row__role {
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #999999;
}

.about-row__gallery {
  width: 417px;
  max-width: 417px;
  height: 569px;
  overflow: hidden;
}

.about-row__gallery .swiper-wrapper,
.about-row__gallery .swiper-slide {
  height: 100%;
}

.about-row__gallery img {
  width: 100%;
  height: 569px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-row__gallery:not(.swiper) img + img {
  margin-top: 10px;
}

.about-row--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.about-row--reverse .about-row__body {
  padding-left: 0;
  padding-right: 20px;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  list-style: none;
  margin: 0 0 16px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 18px;
  border: 0.5px solid #cdbfb6;
  background: #F5F5F5;
  color: #24150e;
}

.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li {
  list-style: none;
}

.woocommerce-error {
  border-color: #c0392b;
  background: rgba(226, 46, 29, 0.06);
}

.woocommerce-message {
  border-color: #24150e;
}

.breadcrumbs a:hover {
  color: #4d3b39;
}

.catalog-page__sort .woocommerce-ordering {
  margin: 0;
}

.catalog-page__sort select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  height: 42px;
  padding: 0 38px 0 12px;
  border: 0.5px solid #cdbfb6;
  background: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #24150e;
  cursor: pointer;
}

.catalog-grid-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

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

.pagination li {
  list-style: none;
}

.pagination .page-numbers {
  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;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  font-size: 14px;
  color: #24150e;
}

.pagination .page-numbers.current {
  background: #24150e;
  color: #FFFFFF;
}

.pagination .page-numbers:hover:not(.current) {
  color: #4d3b39;
}

.product-info__form {
  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;
}

.product-info__form .variations {
  width: 100%;
  border-collapse: collapse;
}

.product-info__form .variations td,
.product-info__form .variations th {
  padding: 0 0 14px;
  vertical-align: middle;
  text-align: left;
}

.product-info__form .variations .label label {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.product-info__form .variations select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  height: 42px;
  padding: 0 38px 0 12px;
  border: 0.5px solid #cdbfb6;
  background: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  color: #24150e;
  cursor: pointer;
}

.product-info__form .reset_variations {
  display: none !important;
}

.product-info__form .woocommerce-variation-price {
  margin-bottom: 14px;
}

.product-info__form .woocommerce-variation-price .price {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: #24150e;
}

.product-info__form .quantity,
.product-info__form .qty {
  display: none !important;
}

.product-info__form .single_add_to_cart_button,
.product-info__form .single_add_to_cart_button.button,
.product-info__form .single_add_to_cart_button.button.alt {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Gilroy", sans-serif;
  border: none;
  background: none;
  background: #24150e !important;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  padding: 10px 24px;
  width: auto;
  border-radius: 0;
  opacity: 1;
  text-align: center;
  justify-content: center;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.product-info__form .single_add_to_cart_button:hover,
.product-info__form .single_add_to_cart_button.button:hover,
.product-info__form .single_add_to_cart_button.button.alt:hover {
  background: #4d3b39 !important;
}

.product-info__form form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin: 0;
}

.product-info__form .woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.product-info__form .single_variation,
.product-info__form .woocommerce-variation-availability,
.product-info__form .woocommerce-variation-price,
.product-info__form .woocommerce-variation-description,
.product-info__form .woocommerce-variation.single_variation .stock {
  display: none !important;
}

.product-info__form .variable-items-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.product-info__form .variable-item {
  cursor: pointer;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.product-info__form .color-variable-item {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none !important;
  border-radius: 50% !important;
  background: none !important;
}

.product-info__form .color-variable-item .variable-item-contents {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  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;
}

.product-info__form .color-variable-item .variable-item-span-color {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  border: 0.5px solid rgba(0, 0, 0, 0.12) !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.product-info__form .color-variable-item::after {
  display: none !important;
  content: none !important;
}

.product-info__form .color-variable-item .variable-item-contents::before,
.product-info__form .color-variable-item .variable-item-contents::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.product-info__form .color-variable-item.selected,
.product-info__form .color-variable-item[aria-checked=true] {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.product-info__form .color-variable-item.selected .variable-item-span-color,
.product-info__form .color-variable-item[aria-checked=true] .variable-item-span-color {
  -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px #24150e !important;
          box-shadow: 0 0 0 2px #fff, 0 0 0 3px #24150e !important;
}

.product-info__form .button-variable-item {
  min-width: 24px;
  height: 24px;
  padding: 0 4px;
  border: 0.5px solid rgba(145, 145, 145, 0.25) !important;
  border-radius: 2px !important;
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.product-info__form .button-variable-item .variable-item-span-button {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #999999;
}

.product-info__form .button-variable-item:hover {
  border-color: #24150e !important;
}

.product-info__form .button-variable-item.selected,
.product-info__form .button-variable-item[aria-checked=true] {
  border-color: #24150e !important;
}

.product-info__form .button-variable-item.selected .variable-item-span-button,
.product-info__form .button-variable-item[aria-checked=true] .variable-item-span-button {
  color: #24150e;
}

.product-info__wish {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.product-info__wish .wlfmc-add-to-wishlist {
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  min-width: -webkit-max-content !important;
  min-width: -moz-max-content !important;
  min-width: max-content !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  white-space: nowrap;
  display: inline-block;
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.product-info__wish .wlfmc-add-button {
  display: inline-block;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  white-space: nowrap;
}

.product-info__wish a.wlfmc-custom-btn,
.product-info__wish .wlfmc-custom-btn.alt {
  display: inline-block;
  width: auto !important;
  height: auto !important;
  min-width: -webkit-max-content !important;
  min-width: -moz-max-content !important;
  min-width: max-content !important;
  max-width: none !important;
  white-space: nowrap;
  overflow: visible !important;
  text-align: center;
  margin: 0;
  padding: 10px 24px;
  border: 1px solid #24150e !important;
  border-radius: 0 !important;
  background: none !important;
  color: #24150e !important;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.24px;
  line-height: normal;
  text-transform: uppercase;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}

.product-info__wish a.wlfmc-custom-btn i,
.product-info__wish .wlfmc-custom-btn.alt i {
  display: none !important;
}

.product-info__wish a.wlfmc-custom-btn::after,
.product-info__wish .wlfmc-custom-btn.alt::after {
  content: "Додати в бажане";
  display: inline !important;
  position: static !important;
}

.product-info__wish a.wlfmc-custom-btn:hover,
.product-info__wish .wlfmc-custom-btn.alt:hover {
  background: #24150e !important;
  color: #FFFFFF !important;
}

.product-info__wish .wlfmc-removefromwishlist a.wlfmc-custom-btn::after {
  content: "В бажаному";
}

.product-stock--out {
  color: #999999;
}

.cart-item .stock {
  display: none;
}

dl.variation {
  margin: 4px 0 0;
  padding: 0;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: #999999;
}

dl.variation dt {
  display: inline;
  float: none;
  clear: none;
  font-weight: 400;
  margin: 0 4px 0 0;
  padding: 0;
}

dl.variation dd {
  display: inline;
  margin: 0;
  padding: 0;
}

dl.variation dd p {
  display: inline;
  margin: 0;
  padding: 0;
}

dl.variation dd::after {
  content: "\a";
  white-space: pre;
}

.cart-coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 240px;
}

.cart-coupon .field__control {
  height: 42px;
  max-width: 220px;
  padding: 0 12px;
  border: 0.5px solid #cdbfb6;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
}

.checkout #ship-to-different-address {
  display: none;
}

.checkout .woocommerce-shipping-fields > .shipping_address {
  display: none;
}

.checkout .woocommerce-billing-fields h3,
.checkout .woocommerce-shipping-fields h3,
.checkout .woocommerce-additional-fields h3,
.checkout #ship-to-different-address {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #24150e;
  margin: 8px 0 0;
}

.checkout .woocommerce-billing-fields__field-wrapper,
.checkout .woocommerce-shipping-fields__field-wrapper,
.checkout .woocommerce-additional-fields__field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.checkout .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  min-width: 0;
}

.checkout .form-row.form-row-first,
.checkout .form-row.form-row-last {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 8px);
          flex: 1 1 calc(50% - 8px);
}

.checkout label {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.checkout label .required {
  color: #c0392b;
  text-decoration: none;
}

.checkout .woocommerce-input-wrapper {
  width: 100%;
  display: block;
}

.checkout input.input-text,
.checkout textarea,
.checkout select,
.checkout .select2-selection {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 0.5px solid #cdbfb6 !important;
  background: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #24150e;
  border-radius: 0;
}

.checkout input.input-text::-webkit-input-placeholder, .checkout textarea::-webkit-input-placeholder, .checkout select::-webkit-input-placeholder, .checkout .select2-selection::-webkit-input-placeholder {
  color: #24150e;
  opacity: 1;
}

.checkout input.input-text::-moz-placeholder, .checkout textarea::-moz-placeholder, .checkout select::-moz-placeholder, .checkout .select2-selection::-moz-placeholder {
  color: #24150e;
  opacity: 1;
}

.checkout input.input-text:-ms-input-placeholder, .checkout textarea:-ms-input-placeholder, .checkout select:-ms-input-placeholder, .checkout .select2-selection:-ms-input-placeholder {
  color: #24150e;
  opacity: 1;
}

.checkout input.input-text::-ms-input-placeholder, .checkout textarea::-ms-input-placeholder, .checkout select::-ms-input-placeholder, .checkout .select2-selection::-ms-input-placeholder {
  color: #24150e;
  opacity: 1;
}

.checkout input.input-text::placeholder,
.checkout textarea::placeholder,
.checkout select::placeholder,
.checkout .select2-selection::placeholder {
  color: #24150e;
  opacity: 1;
}

.checkout input.input-text:focus,
.checkout textarea:focus,
.checkout select:focus,
.checkout .select2-selection:focus {
  border-color: #24150e;
}

.checkout textarea {
  height: auto;
  min-height: 90px;
  padding: 12px;
}

.checkout .select2-selection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkout .select2-selection__arrow {
  height: 40px;
}

.checkout .select2-container {
  width: 100% !important;
}

#payment {
  background: transparent;
}

#payment ul.wc_payment_methods,
#payment .wc_payment_methods {
  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;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}

#payment li.wc_payment_method,
#payment .wc_payment_method {
  list-style: none;
  display: block;
  padding: 12px;
  border: 0.5px solid #cdbfb6;
  -webkit-transition: border-color 0.3s, background 0.3s;
  transition: border-color 0.3s, background 0.3s;
}

#payment li.wc_payment_method:hover,
#payment .wc_payment_method:hover {
  border-color: #24150e;
  background: rgba(233, 233, 233, 0.4);
}

#payment li.wc_payment_method > label,
#payment .wc_payment_method > label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
  cursor: pointer;
}

#payment li.wc_payment_method > label img,
#payment .wc_payment_method > label img {
  max-height: 24px;
  width: auto;
  display: inline-block;
}

#payment li.wc_payment_method input[type=radio],
#payment .wc_payment_method input[type=radio] {
  accent-color: #24150e;
  width: 16px;
  height: 16px;
}

#payment .payment_box {
  margin: 10px 0 0;
  padding: 10px 0 0;
  font-size: 13px;
  line-height: 16px;
  color: #999999;
  background: transparent;
}

#payment .payment_box::before {
  display: none;
}

#payment .payment_box p {
  margin: 0;
}

#payment .place-order {
  margin-top: 16px;
  padding: 0;
}

#payment #place_order {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Gilroy", sans-serif;
  border: none;
  background: none;
  background: #24150e;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  padding: 14px 24px;
  width: 100%;
  text-align: center;
  justify-content: center;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

#payment #place_order:hover {
  background: #4d3b39;
}

#payment .woocommerce-privacy-policy-text {
  font-size: 13px;
  line-height: 16px;
  color: #999999;
  text-align: center;
}

.order-summary .shipping th,
.order-summary .shipping td,
.cart-summary .shipping th,
.cart-summary .shipping td {
  padding: 0;
}

.order-summary #shipping_method,
.cart-summary #shipping_method {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.order-summary #shipping_method li,
.cart-summary #shipping_method li {
  list-style: none;
  font-size: 14px;
  color: #24150e;
}

.account--auth {
  padding: 32px 0 64px;
}

.auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  max-width: 520px;
  margin: 0 auto;
}

.auth--split {
  max-width: 980px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.auth__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  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;
}

.auth__remember {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #24150e;
  cursor: pointer;
}

.auth__lost {
  font-size: 13px;
  color: #999999;
}

.auth__lost:hover {
  color: #4d3b39;
}

.address-card__text {
  font-style: normal;
}

.product-info__accordions .reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.product-info__accordions .reviews .woocommerce-Reviews-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
  margin: 0;
}

.product-info__accordions .reviews .commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.product-info__accordions .reviews .commentlist li.comment {
  list-style: none;
}

.product-info__accordions .reviews .commentlist .comment_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.product-info__accordions .reviews .commentlist .avatar {
  display: none;
}

.product-info__accordions .reviews .commentlist .comment-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.product-info__accordions .reviews .commentlist p.meta {
  margin: 0;
  font-size: 13px;
  color: #999999;
}

.product-info__accordions .reviews .commentlist p.meta .woocommerce-review__author {
  color: #24150e;
  font-weight: 500;
}

.product-info__accordions .reviews .commentlist .description p {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  color: #4d3b39;
}

.product-info__accordions .reviews .commentlist .star-rating {
  font-size: 12px;
  color: #24150e;
  margin: 0;
}

.product-info__accordions .reviews #review_form_wrapper,
.product-info__accordions .reviews #review_form,
.product-info__accordions .reviews #respond {
  margin: 0;
}

.product-info__accordions .reviews .comment-reply-title {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
  margin: 0 0 12px;
}

.product-info__accordions .reviews .comment-notes {
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
  margin: 0;
}

.product-info__accordions .reviews .comment-notes .required {
  color: #4d3b39;
}

.product-info__accordions .reviews .comment-form {
  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;
  margin: 0;
}

.product-info__accordions .reviews .comment-form-rating,
.product-info__accordions .reviews .comment-form-comment,
.product-info__accordions .reviews .comment-form-author,
.product-info__accordions .reviews .comment-form-email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 0;
}

.product-info__accordions .reviews label {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}

.product-info__accordions .reviews label .required {
  color: #4d3b39;
  border: none;
}

.product-info__accordions .reviews .stars {
  margin: 0;
  line-height: 1;
}

.product-info__accordions .reviews .stars a {
  color: #24150e;
  font-size: 18px;
}

.product-info__accordions .reviews input#author,
.product-info__accordions .reviews input#email {
  width: 100%;
  height: 32px;
  padding: 0 10px;
  border: 0.5px solid #cdbfb6;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  color: #24150e;
}

.product-info__accordions .reviews input#author:focus,
.product-info__accordions .reviews input#email:focus {
  border-color: #24150e;
}

.product-info__accordions .reviews textarea#comment {
  width: 100%;
  min-height: 80px;
  padding: 10px;
  border: 0.5px solid #cdbfb6;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  color: #24150e;
}

.product-info__accordions .reviews textarea#comment:focus {
  border-color: #24150e;
}

.product-info__accordions .reviews .comment-form-cookies-consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.product-info__accordions .reviews .comment-form-cookies-consent input {
  margin-top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: #24150e;
}

.product-info__accordions .reviews .comment-form-cookies-consent label {
  font-weight: 300;
  font-style: italic;
  font-size: 12px;
  line-height: 16px;
  color: #24150e;
}

.product-info__accordions .reviews .form-submit {
  margin: 0;
}

.product-info__accordions .reviews #submit,
.product-info__accordions .reviews #respond input#submit,
.product-info__accordions .reviews #respond #submit.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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Gilroy", sans-serif;
  border: none;
  background: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #24150e !important;
  color: #FFFFFF !important;
  font-weight: 400;
  font-size: 14px !important;
  line-height: normal !important;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  border: none !important;
  border-radius: 0 !important;
  padding: 10px 24px !important;
  width: 220px !important;
  max-width: 100%;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.product-info__accordions .reviews #submit:hover,
.product-info__accordions .reviews #respond input#submit:hover,
.product-info__accordions .reviews #respond #submit.submit:hover {
  background: #4d3b39 !important;
}

* {
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  color: #24150e;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

a {
  text-decoration: none;
}

textarea {
  resize: none;
}

.btn {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Gilroy", sans-serif;
  border: none;
  background: none;
}

.btn-dark {
  background: #24150e;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  padding: 10px 24px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.btn-dark:hover {
  background: #4d3b39;
}

.btn-outline {
  border: 1px solid #24150e;
  color: #24150e;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  padding: 10px 24px;
  -webkit-transition: color 0.3s, border-color 0.3s, background 0.3s;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.btn-outline:hover {
  background: #24150e;
  color: #FFFFFF;
}

.container {
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .hero {
    min-height: 480px;
  }

  .hero__title {
    font-size: 38px;
    letter-spacing: 5px;
  }

  .footer__cols {
    padding-left: 40px;
    gap: 24px;
  }

  .catalog-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-page__body {
    gap: 24px;
  }

  .filter {
    width: 260px;
  }

  .cart__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cart__items,
  .cart__summary {
    width: 100%;
  }

  .cart-table,
  .cart-summary {
    padding: 32px;
  }

  .checkout__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .checkout__form,
  .checkout__aside {
    width: 100%;
  }

  .checkout__aside {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .checkout-box {
    padding: 32px;
  }

  .account__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .account__nav,
  .account__content {
    width: 100%;
  }

  .account__nav {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .account-nav__item {
    padding: 16px 24px;
  }

  .panel-box {
    padding: 32px;
  }

  .catalog__grid {
    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;
  }

  .catalog .cat-tile {
    min-height: 200px;
    padding: 20px 24px;
    grid-row: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 24px;
  }

  .catalog .cat-tile__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    max-width: 30%;
    max-height: 84%;
  }

  .catalog .cat-tile__label {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    margin-left: 0;
    padding-left: 0;
    text-align: center;
  }

  .catalog .cat-tile--big {
    grid-row: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .catalog .cat-tile--big .cat-tile__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
    margin-left: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 22px;
  }

  .about__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }

  .about__text {
    gap: 32px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .about__desc {
    max-width: 100%;
  }

  .about__img {
    width: 100%;
    height: auto;
    aspect-ratio: 651/740;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .topbar__text {
    font-size: 11px;
  }

  .header__logo svg {
    width: 62px;
    height: 29px;
  }

  .header__actions {
    gap: 14px;
  }

  .header__sale {
    display: none;
  }

  .hero {
    min-height: 529px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .hero__img {
    width: 151%;
    height: 93%;
    max-width: none;
    left: -8%;
    right: auto;
    top: 27%;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }

  .hero__content {
    max-width: 100%;
    padding-top: 55px;
  }

  .hero__title {
    font-size: 32px;
    letter-spacing: 5.12px;
  }

  .hero__btn {
    margin-top: 24px;
  }

  .news {
    padding: 40px 0;
  }

  .catalog {
    padding-bottom: 40px;
  }

  .catalog .cat-tile {
    min-height: 170px;
    padding: 16px 18px;
    gap: 16px;
  }

  .about {
    padding-bottom: 40px;
  }

  .insta {
    padding-bottom: 0;
  }

  .insta__grid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    gap: 0;
    max-width: 100%;
  }

  .insta__grid::-webkit-scrollbar {
    display: none;
  }

  .insta__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    scroll-snap-align: start;
    height: 220px;
  }

  .catalog-page {
    padding: 24px 0 48px;
  }

  .catalog-page__head {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .catalog-page__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .catalog-page__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }

  .filter {
    width: 100%;
    position: relative;
  }

  .filter__toggle {
    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;
    gap: 8px;
    width: 100%;
    height: 44px;
    border: 1px solid #24150e;
    background: none;
    cursor: pointer;
    color: #24150e;
  }

  .filter__toggle svg {
    width: 24px;
    height: 24px;
  }

  .filter .filter__group,
  .filter .filter-drop,
  .filter .filter__actions {
    display: none;
  }

  .filter.is-open .filter__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .filter.is-open .filter-drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .filter.is-open .filter__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .catalog-grid {
    gap: 16px;
  }

  .pagination {
    margin-top: 40px;
  }

  .product__inner {
    gap: 32px;
  }

  .product__aside {
    width: 46%;
  }

  .product-info__actions .btn-outline {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .reviews__submit {
    width: 100%;
  }

  .related {
    padding: 32px 0;
  }

  .cart {
    padding: 24px 0 48px;
  }

  .cart-table {
    padding: 24px;
    gap: 16px;
  }

  .cart-table__head {
    display: none;
  }

  .cart-table__foot .btn {
    width: 100%;
  }

  .cart-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-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 12px;
    padding: 16px 0;
  }

  .cart-item__product {
    width: 100%;
  }

  .cart-item__cell {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .cart-item__label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #24150e;
  }

  .cart-summary {
    padding: 24px;
  }

  .checkout {
    padding: 24px 0 48px;
  }

  .checkout-box {
    padding: 24px;
  }

  .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }

  .account {
    padding: 24px 0 48px;
  }

  .panel-box {
    padding: 24px;
  }

  .account-nav__item {
    font-size: 14px;
  }

  .wishlist__item,
  .wishlist__bulk {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px 24px;
  }

  .wishlist__meta {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
  }

  .wishlist__add {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .wishlist__select {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }

  .addresses {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .acc-table__head {
    display: none;
  }

  .acc-table__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .acc-table__row span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px;
  }

  .acc-table__row span::before {
    content: attr(data-label);
    font-weight: 600;
    color: #24150e;
  }

  .acc-table__btn {
    margin-left: auto;
  }

  .account-form__submit {
    width: 100%;
  }

  .page-title {
    font-size: 24px;
    letter-spacing: 3.5px;
  }

  .info-page {
    padding: 24px 0 48px;
  }

  .info-page__container {
    max-width: 100%;
    margin-left: 16px;
    margin-right: 16px;
  }

  .info-block {
    margin-top: 32px;
  }

  .info-block__title {
    margin-bottom: 16px;
  }

  .contacts__methods {
    margin-top: 24px;
  }

  .contacts__form {
    max-width: 100%;
  }

  .reviews-page {
    padding: 24px 0 48px;
  }

  .reviews-page__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .review-card {
    padding: 24px;
  }

  .about-hero {
    min-height: 440px;
  }

  .about-hero__title {
    font-size: 26px;
    letter-spacing: 3px;
  }

  .about-story {
    padding: 40px 0;
  }

  .about-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }

  .about-row + .about-row {
    margin-top: 48px;
  }

  .about-row__img {
    width: 100%;
  }

  .about-row__img img {
    min-height: auto;
    aspect-ratio: 651/740;
  }

  .about-row__body {
    padding-left: 0;
    gap: 24px;
  }

  .about-row__text {
    max-width: 100%;
  }

  .about-row__gallery {
    max-width: 100%;
  }

  .about-row__gallery img {
    height: auto;
    aspect-ratio: 417/569;
  }

  .about-row--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .about-row--reverse .about-row__body {
    padding-right: 0;
  }

  .notfound {
    padding: 48px 0;
  }

  .notfound__title {
    font-size: 20px;
    letter-spacing: 2.5px;
  }

  .notfound__cats {
    margin-top: 40px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }

  .footer__cols {
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
  }

  .footer__bottom {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .product__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }

  .product__aside {
    width: 100%;
    position: static;
  }

  .product__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-columns: none;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product__gallery::-webkit-scrollbar {
    display: none;
  }

  .product__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 4px);
            flex: 0 0 calc(50% - 4px);
    aspect-ratio: 175/231;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .product-card {
    width: 70vw;
  }

  .catalog-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .reviews-page__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/* View-order panel */
.panel-box--view-order {
  padding: 32px;
}
.panel-box--view-order .woocommerce-order-overview {
  margin-bottom: 24px;
}

/* Reset WC default form margins in account */
.account-form p,
.account-form .form-row,
.account-form .woocommerce-form-row {
  margin: 0 !important;
  padding: 0 !important;
}

/* Order notice in view-order */
.order-notice {
  font-size: 14px;
  color: #24150e;
  margin-bottom: 24px;
}
.order-notice .order-number,
.order-notice .order-date { font-style: normal; }
.order-notice .order-status { font-weight: 600; font-style: normal; }


/* ============================================================
   Account / cabinet fixes — 2026-06-19 (appended; cascade wins)
   ============================================================ */

/* 1. Wishlist empty state — keep illustration contained, центрувати */
.wlfmc-wishlist-table.wlfmc-list tbody.wishlist-empty {
  display: block;
}
.wlfmc-wishlist-table.wlfmc-list tr.wishlist-empty-row {
  display: block !important;
  width: 100%;
  padding: 56px 50px;
  -webkit-box-shadow: inset 0 0 0 1px #cdbfb6;
          box-shadow: inset 0 0 0 1px #cdbfb6;
  background: none;
}
.wlfmc-wishlist-table.wlfmc-list tr.wishlist-empty-row td {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -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;
  gap: 24px;
  width: 100% !important;
  text-align: center;
}
.wlfmc-wishlist-table.wlfmc-list tr.wishlist-empty-row .empty-image {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0;
}
.wlfmc-wishlist-table.wlfmc-list tr.wishlist-empty-row .empty-title {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #24150e;
}
.wlfmc-wishlist-table.wlfmc-list tr.wishlist-empty-row .empty-content {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #999999;
}
.wlfmc-wishlist-table.wlfmc-list tr.wishlist-empty-row .empty-button {
  margin: 0;
  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;
  min-height: 36px;
  padding: 10px 24px;
  background: #24150e !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.wlfmc-wishlist-table.wlfmc-list tr.wishlist-empty-row .empty-button:hover {
  background: #4d3b39 !important;
}

/* 2. Orders "Перегляд" button — symmetric padding so text is truly centered */
.acc-table__btn {
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-indent: 0.14em;
}

/* 3. View-order page polish — менше «дефолтного WooCommerce» */
.panel-box--view-order .order-notice {
  margin: 0 0 32px;
  padding: 16px 20px;
  background: #F6F6F6;
  font-size: 14px;
  line-height: 1.5;
  color: #24150e;
}
.panel-box--view-order .order-notice mark {
  background: none;
  color: #24150e;
  font-weight: 600;
}
.woocommerce-table--order-details tbody td.product-name a {
  color: #24150e;
  font-weight: 500;
}
.woocommerce-table--order-details tbody td.product-name a:hover {
  color: #4d3b39;
}
.woocommerce-customer-details .woocommerce-column__title {
  margin-top: 0;
}

/* 4. Edit-address form — поля у стилі кабінету (42px, 2 колонки) */
.woocommerce-address-fields__field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.woocommerce-address-fields__field-wrapper .form-row {
  display: block !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}
.woocommerce-address-fields__field-wrapper .form-row::before,
.woocommerce-address-fields__field-wrapper .form-row::after {
  content: none !important;
  display: none !important;
}
.woocommerce-address-fields__field-wrapper .form-row-first,
.woocommerce-address-fields__field-wrapper .form-row-last {
  width: calc(50% - 8px) !important;
  float: none !important;
}
.woocommerce-address-fields__field-wrapper label {
  display: block !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}
.woocommerce-address-fields__field-wrapper label .required,
.woocommerce-address-fields__field-wrapper label .optional {
  color: #c0392b;
  border: none;
  text-decoration: none;
}
.woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}
.woocommerce-address-fields__field-wrapper .input-text,
.woocommerce-address-fields__field-wrapper input.input-text,
.woocommerce-address-fields__field-wrapper select {
  width: 100% !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border: 0.5px solid #cdbfb6 !important;
  border-radius: 0 !important;
  background: #FFFFFF;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.96px;
  color: #24150e;
  line-height: normal !important;
}
.woocommerce-address-fields__field-wrapper textarea.input-text {
  height: auto;
  min-height: 96px;
  padding: 12px;
}
.woocommerce-address-fields__field-wrapper .input-text:focus,
.woocommerce-address-fields__field-wrapper select:focus {
  border-color: #24150e;
  outline: none;
}
.woocommerce-address-fields__field-wrapper .select2-container {
  width: 100% !important;
}
.woocommerce-address-fields__field-wrapper .select2-container .select2-selection--single {
  height: 42px;
  border: 0.5px solid #cdbfb6;
  border-radius: 0;
}
.woocommerce-address-fields__field-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
  padding-left: 12px;
  color: #24150e;
}
.woocommerce-address-fields__field-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
  height: 40px;
}
.address-edit__submit {
  margin-top: 8px;
}

/* 5. Edit-account «Ваші дані» — прибрати WC clearfix-псевдоелементи,
      що в flex-рядку ставали зайвими елементами і давали 16px відступ */
.account-form .form-row::before,
.account-form .form-row::after,
.woocommerce-EditAccountForm .form-row::before,
.woocommerce-EditAccountForm .form-row::after {
  content: none !important;
  display: none !important;
}



/* ============================================================
   Fixes 2026-06-19 (вечір): обране (wishlist), вирівнювання карток
   ============================================================ */

/* — 1. Порожній список бажань: центрувати блок + нормальні відступи CTA — */
.wlfmc-wishlist-table.wlfmc-list tr.wishlist-empty-row td.last-column {
  margin: 0 auto !important;
  max-width: 460px;
}
.wlfmc-wishlist-table.wlfmc-list tr.wishlist-empty-row .last-column > a,
.wlfmc-wishlist-table.wlfmc-list tr.wishlist-empty-row .btn {
  width: auto !important;
  height: auto !important;
  min-height: 44px;
  padding: 13px 40px !important;
  white-space: nowrap;
}

/* — 2. Картки (слайдер «Новинки» + каталог): кнопки «Купити» на одному рівні — */
.news .swiper-slide,
.related .swiper-slide { height: auto; }
.swiper-slide .product-card,
.catalog-grid .product-card { height: 100%; }
.product-card { position: relative; }
.product-card__info { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; }
/* кнопка «Купити» завжди притиснута донизу картки (вища специфічність за .related .product-card__buy) */
.product-card__buy,
.news .product-card__buy,
.related .product-card__buy,
.catalog-grid .product-card__buy { margin-top: auto; }
/* підказка «Оберіть колір і розмір» виводиться тостом (див. upgrade.js) — inline-версію не показуємо */
.product-card__hint { display: none !important; }

/* — товар без наявності: бейдж на фото + неактивна кнопка (рівень кнопок зберігається) — */
.product-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 11px;
  background: rgba(36, 36, 36, .82); color: #fff;
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
}
.product-card__img.is-out img { opacity: .6; }
.product-card__buy--out,
.product-card__buy--out:hover {
  background: #F2F0EC; color: #999999; cursor: not-allowed;
}

/* — серце «обране» на картці: активний / зайнятий стан — */
.product-card__like.is-active { color: #4d3b39; }
.product-card__like.is-active svg path { fill: #4d3b39; stroke: #4d3b39; }
.product-card__like.is-busy { opacity: .5; pointer-events: none; }

/* — 3. Сторінка товару: «Додати в бажане» — рівна inline-кнопка під «Купити» — */
.product-info__wish { display: block !important; width: 100%; margin-top: 12px; }
.product-info__wish-btn {
  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;
  gap: 10px;
  width: 100%; min-height: 48px; padding: 12px 24px;
  border: 1px solid #cdbfb6; background: none; color: #4d3b39;
  font-family: "Gilroy", sans-serif; font-weight: 400; font-size: 13px;
  letter-spacing: 1.6px; text-transform: uppercase; cursor: pointer;
  -webkit-transition: border-color .3s, color .3s;
  transition: border-color .3s, color .3s;
}
.product-info__wish-btn svg { width: 18px; height: 18px; -ms-flex-negative: 0; flex-shrink: 0; }
.product-info__wish-btn:hover { border-color: #24150e; color: #24150e; }
.product-info__wish-btn.is-active { border-color: #24150e; color: #24150e; }
.product-info__wish-btn.is-active svg path { fill: #4d3b39; stroke: #4d3b39; }
.product-info__wish-btn.is-busy { opacity: .5; pointer-events: none; }

/* — sticky-бар: активне серце — */
.product-sticky__wish.is-active svg path { fill: #4d3b39; stroke: #4d3b39; }
.product-sticky__wish.is-busy { opacity: .5; pointer-events: none; }

/* ── Правки 06.2026: прибрано лічильник наявності, кнопка-рядок, менший відступ обраного ── */
.product-info__form .stock{display:none!important}
.product-info__form form.cart{gap:8px}
.product-info__form form.cart > .single_add_to_cart_button{flex-direction:row!important}
.product-info__form .single_add_to_cart_button.added::after{margin-left:.5em}

/* ── Єдина модалка успішної відправки форм ── */
.lr-noscroll{overflow:hidden}
.lr-modal{position:fixed;inset:0;z-index:10001;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s}
.lr-modal.is-open{opacity:1;visibility:visible}
.lr-modal[hidden]{display:none}
.lr-modal__overlay{position:absolute;inset:0;background:rgba(36,36,36,.55)}
.lr-modal__dialog{position:relative;background:#fff;max-width:420px;width:calc(100% - 32px);padding:40px 32px 36px;text-align:center;box-shadow:0 24px 64px rgba(0,0,0,.22);transform:translateY(14px);transition:transform .3s}
.lr-modal.is-open .lr-modal__dialog{transform:none}
.lr-modal__close{position:absolute;top:14px;right:14px;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border:none;background:none;cursor:pointer;color:#24150e}
.lr-modal__close svg{width:18px;height:18px}
.lr-modal__icon{width:64px;height:64px;margin:0 auto 18px;border-radius:50%;background:#F1F6F1;color:#2E7D32;display:flex;align-items:center;justify-content:center}
.lr-modal__icon svg{width:30px;height:30px}
.lr-modal__title{margin:0 0 10px;font-size:22px;font-weight:500;color:#24150e}
.lr-modal__text{margin:0;font-size:15px;line-height:1.5;color:#4d3b39}
.lr-modal__text strong{color:#24150e}

.product-info__form a.added_to_cart,form.cart a.added_to_cart,.product-card a.added_to_cart{display:none!important}

/* ── Контакти ─────────────────────────────────────────────────────────── */
.contacts{padding:32px 0 64px}
.contacts__title{font-weight:500;font-size:24px;line-height:1.2;letter-spacing:3.84px;text-transform:uppercase;color:#24150e;margin:0 0 20px}
.contacts__body{display:flex;flex-direction:column;gap:32px;max-width:868px}
.contacts__item{display:flex;flex-direction:column;gap:8px}
.contacts__label{font-weight:500;font-size:18px;line-height:1.2;letter-spacing:2.88px;text-transform:uppercase;color:#24150e}
.contacts__value{font-weight:300;font-size:14px;line-height:16px;color:#24150e;transition:color .3s}
.contacts__value:hover{color:#4d3b39}
.contacts__form-block{display:flex;flex-direction:column;gap:20px}
.contacts__intro{font-weight:300;font-size:14px;line-height:16px;color:#24150e;margin:0;max-width:868px}
.contacts__form{display:flex;flex-direction:column;gap:10px}
.contacts__row{display:flex;gap:10px}
.contacts__field{display:flex;flex-direction:column;gap:8px;flex:1 1 0;min-width:0;margin:0}
.contacts__field-label{font-weight:500;font-size:14px;line-height:16px;color:#24150e}
.contacts__input{height:44px;width:100%;border:1px solid #cdbfb6;background:#fff;padding:0 14px;font-family:inherit;font-size:14px;color:#24150e;outline:none;transition:border-color .2s}
.contacts__input:focus{border-color:#24150e}
.contacts__textarea{min-height:146px;width:100%;border:1px solid #cdbfb6;background:#fff;padding:12px 14px;font-family:inherit;font-size:14px;line-height:16px;color:#24150e;outline:none;resize:vertical;transition:border-color .2s}
.contacts__textarea:focus{border-color:#24150e}
.contacts__submit{align-self:flex-start;border:none;background:#CDBFB6;color:#24150e;padding:10px 24px;font-family:inherit;font-weight:400;font-size:14px;letter-spacing:2.24px;text-transform:uppercase;cursor:pointer;transition:opacity .25s}
.contacts__submit:hover{opacity:.85}
.contacts__submit:disabled{opacity:.5;cursor:default}
.contacts__note{margin:4px 0 0;font-size:14px;color:#3a8a3a}
.contacts__note.is-error{color:#c0392b}
@media (max-width:768px){
.contacts{padding:24px 0 56px}
.contacts__title{font-size:20px;letter-spacing:3px}
.contacts__body{max-width:100%}
.contacts__row{flex-direction:column}
}

.contacts__form{margin:0}

/* ── Контакти: CF7-форма + модалка ────────────────────────────────────── */
.contacts__form{margin:0}
.contacts .wpcf7{margin:0}
.contacts .wpcf7-form{display:flex;flex-direction:column;gap:10px;margin:0}
.contacts__field .wpcf7-form-control-wrap{display:block;width:100%}
.contacts .wpcf7-form-control.contacts__input{margin:0}
.contacts .wpcf7-form-control.contacts__textarea{display:block;margin:0}
.contacts input.contacts__submit{-webkit-appearance:none;appearance:none;width:auto;height:auto;line-height:normal}
.contacts .wpcf7-response-output{display:none!important}
.contacts .wpcf7-not-valid-tip{margin-top:6px;font-size:12px;color:#c0392b}
.contacts .wpcf7-spinner{margin:8px 0 0}
.contacts .contacts__input.wpcf7-not-valid,.contacts .contacts__textarea.wpcf7-not-valid{border-color:#c0392b}

.contacts-modal{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:20px}
.contacts-modal[hidden]{display:none}
.contacts-modal__overlay{position:absolute;inset:0;background:rgba(36,36,36,.45)}
.contacts-modal__box{position:relative;background:#fff;max-width:420px;width:100%;padding:40px 32px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:12px}
.contacts-modal__close{position:absolute;top:14px;right:14px;background:none;border:none;cursor:pointer;padding:4px;line-height:0;color:#24150e}
.contacts-modal__close svg{width:16px;height:16px}
.contacts-modal__icon{display:flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:50%;background:#E9DAD8;color:#24150e}
.contacts-modal__icon svg{width:26px;height:26px}
.contacts-modal__title{font-weight:500;font-size:20px;letter-spacing:2px;text-transform:uppercase;color:#24150e;margin:0}
.contacts-modal__text{font-weight:300;font-size:14px;line-height:1.5;color:#24150e;margin:0}
body.lr-modal-open{overflow:hidden}

/* Список бажань — стан кнопки «в кошик» (AJAX як на картці). */
.wlfmc-wishlist-table.wlfmc-list .last-column .lr-wl-cart--out{display:inline-flex;align-items:center;justify-content:center;width:198px;height:36px;padding:10px 24px;border:1px solid #cdbfb6;background:#F6F6F6;color:#999999;font-family:"Gilroy",sans-serif;font-weight:400;font-size:14px;letter-spacing:2.24px;text-transform:uppercase;white-space:nowrap;cursor:not-allowed}
.wlfmc-wishlist-table.wlfmc-list .last-column a.lr-wl-cart.is-loading{opacity:.6;pointer-events:none}

/* off-canvas menus must sit above floating manager/sticky widgets */
.header__overlay{z-index:990}
.header__drawer{z-index:1000}
.header__cart-panel{z-index:1000}
.cat-panel{z-index:1010}
/* lift header stacking context above floating manager while off-canvas open */
.header:has(.header__drawer.is-open),.header:has(.header__cart-panel.is-open){z-index:1000}

/* ===== Промокод на сторінці оформлення ===== */
.checkout-promo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid #cdbfb6;
}
.checkout-promo__label {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
}
.checkout-promo__form {
  display: flex;
  gap: 8px;
  margin: 0;
}
.checkout-promo__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid #cdbfb6;
  background: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: #24150e;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s;
}
.checkout-promo__input:focus {
  border-color: #24150e;
}
.checkout-promo__input::placeholder {
  color: #999999;
}
.checkout-promo__btn {
  flex: 0 0 auto;
  cursor: pointer;
  border: none;
  background: #24150e;
  color: #FFFFFF;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  padding: 13px 22px;
  transition: background 0.3s;
}
.checkout-promo__btn:hover {
  background: #000000;
}
.checkout-promo .woocommerce-error,
.checkout-promo .woocommerce-message {
  list-style: none;
  margin: 0;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.4;
  border: 1px solid #cdbfb6;
}
.checkout-promo .woocommerce-error {
  color: #B3261E;
  border-color: #F0C9C6;
  background: #FDF3F2;
}
.checkout-promo .woocommerce-message {
  color: #1E7A3D;
  border-color: #CDE9D6;
  background: #F3FAF5;
}
.checkout-promo .woocommerce-message .button,
.checkout-promo .woocommerce-error .button {
  display: none;
}
.order-summary__remove-coupon {
  display: inline-block;
  margin-left: 8px;
  color: #999999;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  transition: color 0.3s;
}
.order-summary__remove-coupon:hover {
  color: #24150e;
}

/* Нативний лінк видалення купона в підсумку — у тон бренду */
.order-summary__row.cart-discount .woocommerce-remove-coupon {
  margin-left: 8px;
  color: #999999;
  font-size: 12px;
  text-decoration: underline;
  transition: color 0.3s;
}
.order-summary__row.cart-discount .woocommerce-remove-coupon:hover {
  color: #24150e;
}

/* ===== Міні-кошик: чиста сітка рядка товару ===== */
.header__cart-content .woocommerce-mini-cart li.mini_cart_item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 26px 14px 0;
  border-bottom: 1px solid #F5F5F5;
}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .mini-cart-item__media {
  display: block;
  width: 60px;
  flex: none;
}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .mini-cart-item__media img {
  width: 60px;
  height: 78px;
  object-fit: cover;
  display: block;
  margin: 0;
}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .mini-cart-item__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .mini-cart-item__name {
  font-size: 13px;
  line-height: 1.35;
  color: #24150e;
}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation,
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #999999;
}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation dt {
  font-weight: 400;
  float: left;
  margin-right: 4px;
}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .quantity {
  font-size: 13px;
  font-weight: 500;
  color: #24150e;
  margin-top: 2px;
}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item a.remove {
  position: absolute;
  top: 14px;
  right: 0;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  font-size: 18px;
  color: #BBBBBB;
  transition: color 0.3s;
}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item a.remove:hover {
  color: #24150e;
}

/* LR-UPGRADE START */
/* Доробки за баченням власника — червень 2026 */

/* ── Прогрес-бар безкоштовної доставки ── */
.freeship{margin:0 0 18px;padding:0}
.freeship__text{margin:0 0 8px;font-size:13px;line-height:1.4;color:#24150e;letter-spacing:.2px}
.freeship__text strong{font-weight:600;color:#4d3b39}
.freeship--done .freeship__text strong{color:#2E7D32}
.freeship__track{height:4px;border-radius:4px;background:#cdbfb6;overflow:hidden}
.freeship__fill{display:block;height:100%;background:#4d3b39;border-radius:4px;transition:width .4s ease}
.freeship--done .freeship__fill{background:#2E7D32}
.woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout){display:none}

/* ── Live-пошук ── */
.header__search-results{position:absolute;left:50%;transform:translateX(-50%);top:100%;margin-top:14px;width:min(560px,92vw);max-height:70vh;overflow-y:auto;background:#fff;border:1px solid #cdbfb6;box-shadow:0 18px 50px rgba(0,0,0,.10);z-index:60;padding:8px}
.search-results__list{list-style:none;margin:0;padding:0}
.search-results__item{display:flex;align-items:center;gap:14px;padding:10px;text-decoration:none;color:#24150e;transition:background .2s}
.search-results__item:hover{background:#F5F5F5}
.search-results__img{flex:0 0 56px;width:56px;height:72px;overflow:hidden;background:#F5F5F5}
.search-results__img img{width:100%;height:100%;object-fit:cover}
.search-results__meta{display:flex;flex-direction:column;gap:4px}
.search-results__name{font-size:14px;line-height:1.3}
.search-results__price{font-size:14px;font-weight:600;color:#24150e}
.search-results__more{display:block;text-align:center;padding:12px;font-size:13px;letter-spacing:1.5px;text-transform:uppercase;color:#24150e;border-top:1px solid #cdbfb6;text-decoration:none}
.search-results__more:hover{color:#4d3b39}
.search-results__empty{margin:0;padding:18px;text-align:center;color:#999999;font-size:14px}

/* ── Стартовий popup ── */
.email-popup{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .35s}
.email-popup[hidden]{display:none}
.email-popup.is-open{opacity:1}
.email-popup__overlay{position:absolute;inset:0;background:rgba(36,36,36,.55)}
.email-popup__box{position:relative;z-index:1;width:min(440px,92vw);background:#fff;padding:44px 38px 38px;box-shadow:0 30px 80px rgba(0,0,0,.25);transform:translateY(14px);transition:transform .35s}
.email-popup.is-open .email-popup__box{transform:none}
.email-popup__close{position:absolute;top:14px;right:14px;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border:none;background:none;cursor:pointer;color:#24150e}
.email-popup__close svg{width:18px;height:18px}
.email-popup__title{margin:0 0 12px;font-size:24px;line-height:1.2;font-weight:500;color:#24150e}
.email-popup__text{margin:0 0 22px;font-size:14px;line-height:1.5;color:#4d3b39}
.email-popup__form{display:flex;flex-direction:column;gap:12px}
.email-popup__input{height:46px;border:1px solid #cdbfb6;padding:0 14px;font-size:14px;font-family:inherit;outline:none}
.email-popup__input:focus{border-color:#24150e}
.email-popup__btn{height:46px;border:none;cursor:pointer;width:100%}
.email-popup__note{margin:10px 0 0;color:#c0392b;font-size:13px}
.email-popup__success{margin:0;font-size:15px;line-height:1.5;color:#2E7D32}

/* ── Toast у стилі бренду ── */
.lr-toasts{position:fixed;top:24px;right:24px;z-index:10000;display:flex;flex-direction:column;gap:10px;pointer-events:none}
.lr-toast{min-width:220px;max-width:340px;background:#24150e;color:#fff;padding:14px 20px;font-size:14px;letter-spacing:.3px;box-shadow:0 12px 36px rgba(0,0,0,.22);opacity:0;transform:translateX(24px);transition:opacity .3s,transform .3s}
.lr-toast.is-in{opacity:1;transform:none}
.lr-toast--error{background:#c0392b}
@media(max-width:480px){.lr-toasts{left:16px;right:16px;top:16px}.lr-toast{max-width:none}}

/* приховати стандартні зелені нотіси wishlist-плагіна */
.wlfmc-popup-notice,.wlfmc_notification,.yith-wcwl-popup-notice{display:none!important}

/* ── Кнопка «Поділитися» (товар) ── */
.product-share{position:relative;display:inline-flex;margin-top:6px}
.product-share__btn{display:inline-flex;align-items:center;gap:8px;border:none;background:none;cursor:pointer;color:#4d3b39;font-size:13px;letter-spacing:1px;text-transform:uppercase;padding:6px 0}
.product-share__btn svg{width:18px;height:18px}
.product-share__btn:hover{color:#24150e}
.product-share__menu{position:absolute;left:0;bottom:100%;margin-bottom:10px;background:#fff;border:1px solid #cdbfb6;box-shadow:0 14px 40px rgba(0,0,0,.12);padding:6px;display:none;flex-direction:column;min-width:180px;z-index:30}
.product-share__menu.is-open{display:flex}
.product-share__menu a{display:flex;align-items:center;gap:10px;padding:10px 12px;font-size:14px;color:#24150e;text-decoration:none}
.product-share__menu a:hover{background:#F5F5F5}

/* ── Ієрархія кнопок: Купити головна, бажане легше ── */
.product-info__form .woocommerce-variation-add-to-cart,
.product-info__form form.cart > .single_add_to_cart_button{flex-direction:column;align-items:stretch}
.product-info__form .single_add_to_cart_button,
.product-info__form .single_add_to_cart_button.button,
.product-info__form .single_add_to_cart_button.button.alt{width:100%!important;padding:15px 24px!important}
.product-info__wish{display:block!important;width:100%}
.product-info__wish a.wlfmc-custom-btn,
.product-info__wish .wlfmc-custom-btn.alt{display:flex!important;align-items:center;justify-content:center;gap:8px;width:100%!important;min-width:0!important;padding:11px 24px!important;border:1px solid #cdbfb6!important;color:#4d3b39!important;letter-spacing:1.5px!important}
.product-info__wish a.wlfmc-custom-btn:hover,
.product-info__wish .wlfmc-custom-btn.alt:hover{border-color:#24150e!important;color:#24150e!important;background:none!important}

/* ── Sticky add-to-cart бар ── */
.product-sticky{position:fixed;left:0;right:0;bottom:0;z-index:200;background:#fff;border-top:1px solid #cdbfb6;box-shadow:0 -6px 24px rgba(0,0,0,.08);padding:10px 0;transform:translateY(0);animation:lrStickyUp .3s ease}
@keyframes lrStickyUp{from{transform:translateY(100%)}to{transform:translateY(0)}}
.product-sticky[hidden]{display:none}
.product-sticky__inner{display:flex;align-items:center;justify-content:space-between;gap:16px}
.product-sticky__media{display:flex;align-items:center;gap:14px;min-width:0}
.product-sticky__media img{width:48px;height:60px;object-fit:cover;flex:0 0 48px}
.product-sticky__meta{display:flex;flex-direction:column;gap:2px;min-width:0}
.product-sticky__name{font-size:14px;color:#24150e;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:46vw}
.product-sticky__price{font-size:15px;font-weight:600;color:#24150e}
.product-sticky__price del{font-weight:400;color:#999999;font-size:13px;margin-right:6px}
.product-sticky__actions{display:flex;align-items:center;gap:10px;flex-shrink:0}
.product-sticky__wish{width:48px;height:48px;border:1px solid #cdbfb6;background:none;display:flex;align-items:center;justify-content:center;cursor:pointer;color:#24150e}
.product-sticky__wish svg{width:22px;height:22px}
.product-sticky__buy{border:none;cursor:pointer;padding:14px 38px;white-space:nowrap}
@media(max-width:768px){.product-sticky__name{max-width:38vw}.product-sticky__buy{padding:13px 26px}.product-sticky__media img{width:42px;height:52px;flex-basis:42px}}
@media(max-width:480px){.product-sticky__name{display:none}.product-sticky__buy{flex:1}}

/* ── 12. Бейджі довіри ── */
.trust-badges{list-style:none;margin:22px 0 0;padding:18px 0 0;border-top:1px solid #cdbfb6;display:flex;flex-direction:column;gap:14px}
.trust-badges__item{display:flex;align-items:center;gap:12px;font-size:14px;color:#24150e}
.trust-badges__icon{flex:0 0 24px;width:24px;height:24px;color:#4d3b39;display:flex;align-items:center;justify-content:center}
.trust-badges__icon svg{width:24px;height:24px}
.trust-badges--checkout{flex-direction:row;flex-wrap:wrap;border:none;padding:0;margin:18px 0 0;gap:14px 22px}
.trust-badges--checkout .trust-badges__item{font-size:13px;flex:1 1 45%}

/* ── 12. Кнопка менеджера ── */
.manager{position:fixed;left:24px;bottom:24px;z-index:300}
.manager__toggle{width:56px;height:56px;border-radius:50%;border:none;background:#CDBFB6;color:#24150e;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 10px 30px rgba(0,0,0,.25);transition:background .25s,transform .25s}
.manager__toggle:hover{background:#bcab9f;transform:translateY(-2px)}
.manager__toggle svg{width:26px;height:26px}
.manager__menu{position:absolute;left:0;bottom:68px;display:flex;flex-direction:column;gap:8px;opacity:0;visibility:hidden;transform:translateY(10px);transition:opacity .25s,transform .25s,visibility .25s}
.manager.is-open .manager__menu{opacity:1;visibility:visible;transform:none}
.manager__link{display:block;background:#fff;color:#24150e;padding:11px 20px;font-size:14px;text-decoration:none;box-shadow:0 8px 24px rgba(0,0,0,.14);white-space:nowrap;transition:background .2s}
.manager__link:hover{background:#F5F5F5;color:#4d3b39}
@media(max-width:768px){.manager{left:16px;bottom:80px}.manager__toggle{width:50px;height:50px}}

/* ── 12. Підписка на новини ── */
.newsletter{background:#fafafa;padding:48px 0}
.newsletter__inner{display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}
.newsletter__title{margin:0 0 6px;font-size:24px;line-height:1.2;font-weight:500;color:#24150e}
.newsletter__text{margin:0;font-size:14px;color:#4d3b39;max-width:420px}
.newsletter__form{display:flex;gap:12px;flex:0 0 auto}
.newsletter__input{height:48px;width:280px;max-width:100%;border:1px solid #cdbfb6;background:#fff;padding:0 16px;font-size:14px;font-family:inherit;outline:none}
.newsletter__input:focus{border-color:#24150e}
.newsletter__btn{height:48px;border:none;cursor:pointer;padding:0 30px;white-space:nowrap}
.newsletter__note{flex:0 0 100%;margin:8px 0 0;color:#c0392b;font-size:13px;text-align:right}
.newsletter__success{margin:0;color:#2E7D32;font-size:15px}
@media(max-width:768px){.newsletter{padding:36px 0}.newsletter__inner{flex-direction:column;align-items:stretch;gap:20px}.newsletter__form{flex-direction:column}.newsletter__input{width:100%}.newsletter__note{text-align:left}}

/* ── 4. Легший блок «Всі категорії» (cover-фото + підпис нижнім регістром) ── */
.cat-panel__grid{gap:14px;padding:14px}
.cat-panel__item{background:none;padding:0;gap:8px}
.cat-panel__img{aspect-ratio:3/4}
.cat-panel__img img{width:100%;height:100%;object-fit:cover}
.cat-panel__label{font-size:13px;letter-spacing:.2px;text-transform:lowercase;font-weight:400;padding:0 0 4px;line-height:1.3}
.cat-panel__scroll{flex:1}
.cat-panel__perks{padding:18px 14px 36px;border-top:1px solid #F5F5F5;margin-top:8px}
.cat-panel__perks .trust-badges{margin:0;padding:0;border:none;gap:16px}
.cat-panel__perks .trust-badges__item{font-size:14px}

/* ── 3. Мобільний «Каталог» — кнопка відкриває фото-панель ── */
.drawer-menu .drawer-link--cat{-webkit-appearance:none;appearance:none;background:none;border:0;font:inherit;color:inherit;cursor:pointer;padding:0}

/* ── 7. Швидка покупка з картки каталогу ── */
.product-card__img{display:block}
.product-card__title{text-decoration:none;color:inherit}
.product-card__color{width:18px;height:18px;border-radius:50%;border:1px solid rgba(0,0,0,.12);padding:0;cursor:pointer;flex-shrink:0}
.product-card__color.is-active{box-shadow:0 0 0 2px #fff,0 0 0 3px #24150e}
.product-card__sizes{display:flex;gap:6px;flex-wrap:wrap;margin-top:2px}
.product-card__size{min-width:32px;height:28px;padding:0 7px;border:1px solid #cdbfb6;background:#fff;font-family:inherit;font-size:12px;cursor:pointer;color:#24150e;transition:border-color .2s,background .2s,color .2s}
.product-card__size:hover{border-color:#24150e}
.product-card__size.is-active{border-color:#24150e;background:#24150e;color:#fff}
.product-card__buy{width:100%;height:42px;margin-top:4px;border:none;background:#CDBFB6;color:#24150e;font-family:inherit;font-size:13px;letter-spacing:1.6px;text-transform:uppercase;cursor:pointer;transition:background .25s}
.product-card__buy:hover{background:#4d3b39}
.product-card__buy.is-loading{opacity:.6;pointer-events:none}
.product-card__hint{margin:2px 0 0;font-size:12px;color:#c0392b}
.related .product-card__buy,.related .product-card__sizes{margin-top:4px}

/* ── 9. Фото товарів у деталях замовлення ── */
.lr-order-item{display:flex;align-items:center;gap:12px}
.lr-order-item img.lr-order-thumb{width:54px;height:68px;object-fit:cover;flex:0 0 54px;border:1px solid #F0F0F0}
.lr-order-item__name{font-size:14px;line-height:1.35}
.woocommerce-table--order-details td.product-name{vertical-align:middle}

/* ── 9. Прибрати незрозумілі чекбокси у списку бажань ── */
.wlfmc-wishlist-table .product-checkbox,.wlfmc-wishlist-table th.product-checkbox,.wlfmc-table-footer{display:none!important}

/* ── 8. Картки списку бажань: акцентна ціна, відступи, пробіл після "Колір:" ── */
.wlfmc-wishlist-table .product-price,.wlfmc-wishlist-table .product-price .amount{font-size:16px!important;font-weight:600!important;color:#24150e!important}
.wlfmc-wishlist-table .variation{margin:6px 0}
.wlfmc-wishlist-table .variation dt,.wlfmc-wishlist-table .variation dd{display:inline;margin:0;font-size:13px;color:#4d3b39}
.wlfmc-wishlist-table .variation dt::after{content:"\00a0"}
.wlfmc-wishlist-table .variation dd{margin-right:10px}

/* ── 1. Прибрати zoom при натисканні на поле кількості (iOS зумить при font<16px) ── */
.qty,input.qty,.quantity input[type=number],.cart .qty__input,input[type=number]{font-size:16px}
@media(max-width:768px){.qty,input.qty,.quantity input,.qty__input{font-size:16px!important;touch-action:manipulation}}

/* ── 1. Промокод на checkout (повернути видиме поле) ── */
.woocommerce-checkout .checkout_coupon{display:block!important;margin:0 0 24px;padding:18px 20px;border:1px solid #cdbfb6;background:#fafafa}
.woocommerce-checkout .checkout_coupon>p:first-child{display:none}
.woocommerce-checkout .checkout_coupon::before{content:"Промокод";display:block;font-size:14px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;color:#24150e;margin-bottom:12px}
.woocommerce-checkout .checkout_coupon .form-row{display:inline-block;margin:0;padding:0;vertical-align:top}
.woocommerce-checkout .checkout_coupon #coupon_code{height:44px!important;width:220px!important;max-width:55vw;border:1px solid #cdbfb6!important;padding:0 14px!important;font-size:14px;font-family:inherit;background:#fff;margin:0!important}
.woocommerce-checkout .checkout_coupon button{height:44px;margin-left:8px;border:none;background:#CDBFB6;color:#24150e;padding:0 22px;font-size:13px;letter-spacing:1.6px;text-transform:uppercase;cursor:pointer;transition:background .25s}
.woocommerce-checkout .checkout_coupon button:hover{background:#4d3b39}
/* опис методу оплати під назвою — читабельніше */
.woocommerce-checkout #payment .payment_box{font-size:13px;line-height:1.5;color:#4d3b39;background:none;padding:6px 0 4px}
.woocommerce-checkout #payment .payment_box::before{display:none}

/* ── 6. Прибрати дубль-фільтр «Тип товару» (навігація = категорії) ── */
.filter .woof_container_pa_type-of-product{display:none!important}
/* кнопку фільтра — вліво (мобайл), бургер лишається справа в хедері */
@media(max-width:768px){
.catalog-page__filter{order:-1;margin-right:auto}
.catalog-page__count{margin-right:0}
.catalog-page__tools{width:100%;gap:16px}
}

/* ── Нотіси: прибрати іконку WooCommerce що наїжджає на текст ── */
.woocommerce-error::before,.woocommerce-message::before,.woocommerce-info::before{content:none!important;display:none!important}
.woocommerce-error,.woocommerce-message,.woocommerce-info{position:relative;border-top-width:.5px}
.woocommerce-error .button,.woocommerce-message .button,.woocommerce-info .button{float:none;margin-left:10px}

/* ── Оверлей при оновленні кошику: світлий замість темного ── */
.blockUI.blockOverlay,.woocommerce .blockUI.blockOverlay{background:#ffffff!important;opacity:.6!important;cursor:default!important}

/* ── Порожній міні-кошик: акуратний центрований стан ── */
.header__cart-content .lr-cart-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:18px;min-height:55vh;padding:30px 16px}
.header__cart-content .lr-cart-empty__icon{width:60px;height:60px;display:flex;align-items:center;justify-content:center;color:#C7C7C7}
.header__cart-content .lr-cart-empty__icon svg{width:60px;height:60px}
.header__cart-content .lr-cart-empty__text{margin:0;font-size:16px;line-height:1.4;color:#24150e}
.header__cart-content .lr-cart-empty__sub{margin:-8px 0 0;font-size:13px;color:#999999}
.header__cart-content .lr-cart-empty__btn{display:inline-block;margin-top:6px;padding:14px 36px;background:#24150e;color:#fff;font-size:13px;letter-spacing:1.6px;text-transform:uppercase;text-decoration:none;transition:background .25s}
.header__cart-content .lr-cart-empty__btn:hover{background:#4d3b39;color:#fff}

/* ── Skeleton/анти-FOUC: shimmer під фото картки поки воно вантажиться ── */
@keyframes lrShimmer{0%{background-position:100% 50%}100%{background-position:0 50%}}
.product-card__img{position:relative;background:#F1EFEC}
.product-card__img::after{content:"";position:absolute;inset:0;z-index:0;background:linear-gradient(90deg,#F1EFEC 25%,#E7E4E0 37%,#F1EFEC 63%);background-size:400% 100%;animation:lrShimmer 1.4s ease infinite;pointer-events:none}
.product-card__img img{position:relative;z-index:1}
/* фото-плейсхолдери інших секцій теж не миготять білим */
.news__slider .swiper-slide,.related__slider .swiper-slide{background:transparent}

/* ── Анти-FOUC слайдерів: до ініціалізації Swiper не стекати слайди вертикально ── */
.news__slider:not(.swiper-initialized),
.related__slider:not(.swiper-initialized){overflow:hidden}
.news__slider:not(.swiper-initialized) .swiper-wrapper,
.related__slider:not(.swiper-initialized) .swiper-wrapper{display:flex;gap:8px;transform:none!important}
.news__slider:not(.swiper-initialized) .swiper-slide,
.related__slider:not(.swiper-initialized) .swiper-slide{flex:0 0 calc(50% - 4px);min-width:0}
@media(min-width:768px){
.news__slider:not(.swiper-initialized) .swiper-slide{flex-basis:calc(33.333% - 6px)}
.related__slider:not(.swiper-initialized) .swiper-slide{flex-basis:calc(25% - 8px)}
}
@media(min-width:1024px){
.news__slider:not(.swiper-initialized) .swiper-slide,
.related__slider:not(.swiper-initialized) .swiper-slide{flex-basis:calc(25% - 24px)}
}

/* ── Скелет фільтра каталогу (ховаємо сиру woof-розмітку до готовності) ── */
.filter .woof{opacity:0}
.filter.lr-flt-ready .woof{opacity:1;transition:opacity .25s ease}
.filter-skeleton{display:flex;flex-direction:column;gap:14px;width:100%;padding:4px 0}
.filter.lr-flt-ready .filter-skeleton{display:none}
.filter-skeleton__bar{display:block;border-radius:3px;background:linear-gradient(90deg,#F1EFEC 25%,#E7E4E0 37%,#F1EFEC 63%);background-size:400% 100%;animation:lrShimmer 1.4s ease infinite}
.filter-skeleton__bar--title{width:55%;height:16px;margin-top:6px}
.filter-skeleton__bar--field{width:100%;height:38px}
.filter-skeleton__bar--row{width:82%;height:13px}
.filter-skeleton__bar--btn{width:100%;height:40px;margin-top:12px}

/* ── Порожній кошик/checkout: той самий гарний блок, що в міні-кошику ── */
.lr-cart-empty--page{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:18px;min-height:46vh;padding:60px 16px}
.lr-cart-empty--page .lr-cart-empty__icon{width:64px;height:64px;display:flex;align-items:center;justify-content:center;color:#C7C7C7}
.lr-cart-empty--page .lr-cart-empty__icon svg{width:64px;height:64px}
.lr-cart-empty--page .lr-cart-empty__text{margin:0;font-size:18px;line-height:1.4;color:#24150e}
.lr-cart-empty--page .lr-cart-empty__sub{margin:-8px 0 0;font-size:14px;color:#999999}
.lr-cart-empty--page .lr-cart-empty__btn{display:inline-block;margin-top:6px;padding:15px 40px;background:#24150e;color:#fff;font-size:13px;letter-spacing:1.6px;text-transform:uppercase;text-decoration:none;transition:background .25s}
.lr-cart-empty--page .lr-cart-empty__btn:hover{background:#4d3b39;color:#fff}

/* ── Картка «Немає в наявності»: кнопка-сіра (не плутати з активною) ── */
.product-card__buy--out,.product-card__buy--out:hover{background:#EDEDED!important;color:#9A9A9A!important;cursor:not-allowed;pointer-events:none}
/* кнопки всіх карток вирівняні по низу (різна к-сть варіацій не зміщує) */
.product-card{height:100%}
.product-card__info{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}
.product-card__buy,.product-card__buy--out{margin-top:auto!important}
/* підказка «оберіть варіант» показується коли JS зняв атрибут hidden (style.css має display:none) */
.product-card__hint:not([hidden]){display:block!important;margin-top:8px}

/* ── Order-review на checkout: без білого боксу при оновленні (лише спінер) ── */
#order_review .blockUI.blockOverlay,.woocommerce-checkout-review-order .blockUI.blockOverlay,.order-summary .blockUI.blockOverlay{background:transparent!important;opacity:1!important}

/* ── Order-received для гостя (треба вхід): у контейнер, без повноширинних смуг ── */
body.woocommerce-order-received main > .woocommerce{max-width:680px;margin:0 auto;padding:52px 15px 64px;text-align:center}
body.woocommerce-order-received .woocommerce-thankyou-order-received{font-size:24px;font-weight:500;line-height:1.2;color:#24150e;margin:0;background:none;border:0;padding:0}
body.woocommerce-order-received .woocommerce-thankyou-order-received::before{content:none}
body.woocommerce-order-received>* .woocommerce-info,body.woocommerce-order-received .woocommerce-info{display:none}
body.woocommerce-order-received .auth-prompt--inline{margin:28px auto 0;border:0;padding:0;max-width:none}

/* ── Inline-промпт входу (замість дефолтної WC-форми, напр. на order-received гостя) ── */
.auth-prompt--inline{text-align:center;max-width:480px;margin:40px auto;padding:32px 24px;border:1px solid #cdbfb6}
.auth-prompt--inline .auth-prompt__text{margin:0 0 20px;font-size:15px;line-height:1.5;color:#4d3b39}
.auth-prompt--inline .auth-prompt__actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* ── Ховер на картку: проявляється 2-ге фото (як на старому сайті) ── */
.product-card__img img.product-card__img-hover{position:absolute!important;top:0;left:0;width:100%;height:100%;object-fit:cover;opacity:0;z-index:2!important;transition:opacity .45s ease;pointer-events:none}
/* 2-ге фото — лише на пристроях зі справжнім ховером (десктоп). На тач-екранах
   ховер «залипає» після тапу й перекриває обране фото кольору + iOS з'їдає
   перший тап на hover-елементі → колір «не перемикається». Тому на тачі 2-ге
   фото взагалі приховуємо, лишається головне (яке й міняється за кольором). */
@media (hover: hover) and (pointer: fine){
  .product-card:hover .product-card__img-hover{opacity:1}
}
@media (hover: none), (pointer: coarse){
  .product-card__img img.product-card__img-hover{display:none!important}
}

/* ── Сторінка подяки (брендована) ── */
.thankyou{padding:56px 0 72px}
.thankyou__head{text-align:center;max-width:620px;margin:0 auto 40px}
.thankyou__icon{display:inline-flex;align-items:center;justify-content:center;width:64px;height:64px;border-radius:50%;background:#24150e;color:#fff;margin-bottom:20px}
.thankyou__icon svg{width:30px;height:30px}
.thankyou__title{margin:0 0 12px;font-size:30px;line-height:1.15;font-weight:500;color:#24150e}
.thankyou__text{margin:0;font-size:15px;line-height:1.6;color:#4d3b39}
.thankyou__text strong{color:#24150e}
.thankyou__actions{margin-top:24px;display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.thankyou__overview{display:flex;flex-wrap:wrap;gap:1px;background:#cdbfb6;border:1px solid #cdbfb6;margin:0 auto 40px;max-width:900px}
.thankyou__cell{flex:1 1 180px;background:#fff;padding:18px 22px;display:flex;flex-direction:column;gap:6px}
.thankyou__cell-label{font-size:11px;letter-spacing:1px;text-transform:uppercase;color:#999999}
.thankyou__cell-value{font-size:15px;font-weight:600;color:#24150e}
.thankyou__cell-value .amount{font-weight:600}
/* блок деталей замовлення (хук woocommerce_thankyou) */
.thankyou .woocommerce-order{max-width:900px;margin:0 auto}
.thankyou>.container>.woocommerce-order>p,.thankyou .woocommerce-thankyou-order-received{display:none}
.thankyou .woocommerce-order-details__title,.thankyou .woocommerce-customer-details>h2{font-size:14px;letter-spacing:1.5px;text-transform:uppercase;font-weight:500;color:#24150e;margin:0 0 16px}
.thankyou table.woocommerce-table--order-details{width:100%;border-collapse:collapse;margin:0 0 40px;font-size:14px}
.thankyou table.woocommerce-table--order-details th,.thankyou table.woocommerce-table--order-details td{padding:14px 4px;text-align:left;border:0;border-bottom:1px solid #F0F0F0;color:#24150e}
.thankyou table.woocommerce-table--order-details thead th{font-size:11px;letter-spacing:1px;text-transform:uppercase;color:#999999;font-weight:500}
.thankyou table.woocommerce-table--order-details td.product-total,.thankyou table.woocommerce-table--order-details th.product-total,.thankyou table.woocommerce-table--order-details tfoot td:last-child,.thankyou table.woocommerce-table--order-details tfoot th{text-align:right}
.thankyou table.woocommerce-table--order-details tfoot th{font-weight:500;color:#4d3b39}
.thankyou table.woocommerce-table--order-details tfoot tr:last-child th,.thankyou table.woocommerce-table--order-details tfoot tr:last-child td{font-weight:700;color:#24150e;border-bottom:0}
.thankyou .woocommerce-table--order-details .wc-item-meta,.thankyou .woocommerce-table--order-details .variation{margin:4px 0 0;font-size:13px;color:#4d3b39;list-style:none;padding:0}
.thankyou .woocommerce-table--order-details .wc-item-meta li,.thankyou .woocommerce-table--order-details .variation dt,.thankyou .woocommerce-table--order-details .variation dd{display:inline;margin:0}
/* адреси: ховаємо дубль платіжної (контакти вже є вгорі), лишаємо доставку (НП) */
.thankyou .woocommerce-customer-details .woocommerce-column--billing-address{display:none}
.thankyou .woocommerce-customer-details .woocommerce-columns--addresses{display:block;margin:0}
.thankyou .woocommerce-customer-details .woocommerce-column--shipping-address{width:100%;max-width:420px}
.thankyou .woocommerce-customer-details address{font-style:normal;border:1px solid #cdbfb6;padding:18px 20px;font-size:14px;line-height:1.7;color:#24150e}
.thankyou .woocommerce-customer-details .woocommerce-customer-details--phone,.thankyou .woocommerce-customer-details .woocommerce-customer-details--email{margin:6px 0 0;color:#4d3b39}
@media(max-width:600px){.thankyou__cell{flex-basis:50%}.thankyou__title{font-size:24px}}

/* ── Лічильник «Обране» в хедері (як на кошику) ── */
.header__icon--wishlist{position:relative}
.header__wishlist-count{position:absolute;top:-6px;right:-8px;min-width:16px;height:16px;padding:0 4px;border-radius:8px;background:#4d3b39;color:#fff;font-size:10px;font-weight:600;line-height:1;text-align:center;display:flex;align-items:center;justify-content:center;text-decoration:none;box-sizing:border-box}
.header__wishlist-count[hidden]{display:none}

/* ── Пошук: прибрати нативний синій хрестик + результати під інпутом (не низько) ── */
.header__search-input::-webkit-search-cancel-button,.header__search-input::-webkit-search-decoration{-webkit-appearance:none;appearance:none;display:none}
.header__search-input{appearance:none;-webkit-appearance:none}
.header__search-inner{position:relative}
.header__search-results{left:50%!important;right:auto!important;transform:translateX(-50%)!important;top:100%!important;margin-top:10px!important}

/* ── Замовлення: кнопка «Перегляд» — симетричні паддінги ── */
.acc-table__btn,a.btn.acc-table__btn{padding:10px 24px!important;text-indent:0!important;text-align:center;display:inline-block;width:auto}

/* ── Сторінка замовлення: кнопка «назад» + полиш нотіса ── */
.acc-back{display:inline-flex;align-items:center;gap:8px;margin:0 0 22px;font-size:14px;letter-spacing:.4px;color:#4d3b39;text-decoration:none;transition:color .2s}
.acc-back svg{width:18px;height:18px}
.acc-back:hover{color:#24150e}
.panel-box--view-order .order-notice{background:#F6F6F6;padding:16px 20px;margin:0 0 24px;font-size:14px;line-height:1.5;color:#24150e;border:0}
.panel-box--view-order .order-notice mark{background:none;color:#24150e;font-weight:600}

/* ── Сортування: нативний дропдаун не вилазить за контейнер (select ширший, праворуч) ── */
.catalog-page__sort{position:relative}
.catalog-page__sort select,.catalog-page__sort select.orderby{position:absolute!important;top:0!important;right:0!important;left:auto!important;bottom:auto!important;width:260px!important;max-width:62vw!important;height:100%!important;opacity:0!important;cursor:pointer}

/* ── Обране: видимий активний стан серця (товар уже в обраному) ── */
.lr-wishlist-toggle svg path{transition:fill .2s ease,stroke .2s ease}
.lr-wishlist-toggle.is-active svg path{fill:#4d3b39!important;stroke:#4d3b39!important}
.lr-wishlist-toggle.is-active{color:#4d3b39!important}
.lr-wishlist-toggle.is-busy{opacity:.45;pointer-events:none}
.lr-wishlist-toggle:hover svg path{stroke:#4d3b39}

/* ── Замовлення: відступ між рядками ── */
.panel-box--orders .acc-table__row.order{margin-bottom:16px}
.panel-box--orders .acc-table__row.order:last-child{margin-bottom:0}
/* LR-UPGRADE END */

/* ===LERISE-REBRAND-START=== */
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSuXd.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSuXd.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSuXd.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSuXd.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSuXd.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSuXd.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSuXd.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSuXd.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSuXd.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSuXd.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSuXd.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSuXd.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSuXd.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSuXd.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSuXd.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSuXd.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSuXd.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSuXd.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSuXd.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSuXd.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggqxSuXd.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggOxSuXd.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggSxSuXd.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggixSuXd.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggmxSuXd.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5JCh0xOI.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5LSh0xOI.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5Jih0xOI.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5Jyh0xOI.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5KSh0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5JCh0xOI.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5LSh0xOI.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5Jih0xOI.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5Jyh0xOI.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5KSh0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5JCh0xOI.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5LSh0xOI.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5Jih0xOI.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5Jyh0xOI.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5KSh0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5JCh0xOI.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5LSh0xOI.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5Jih0xOI.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5Jyh0xOI.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto Serif';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/robotoserif/v17/R70mjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEX5KSh0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body{background:#FAFAFA;}
body,p,a,span,li,ul,ol,div,button,input,select,textarea,label,td,th,table,figure,figcaption,blockquote,strong,em,small,b{font-family:'Manrope',sans-serif !important;}
h1,h2,h3,h4,h5,h6,
.section-head__title,.hero__title,.product-info__title,.product-card__title,.product-sticky__name,.mini-cart-item__name,.cat-panel__title,.footer__title,.newsletter__title,.email-popup__title,.header__cart-title,.woocommerce-Reviews-title,.comment-reply-title,
.header__link,.header__sublink,.header__mega-link,.header__drop,
.product-card__buy,.single_add_to_cart_button,.product-sticky__buy,.btn-dark,.newsletter__btn,.email-popup__btn,.product-info__wish-btn{font-family:'Roboto Serif',serif !important;}
.section-head__title,.hero__title,.product-info__title,.product-card__title,.header__link,.product-card__buy,.single_add_to_cart_button,.product-sticky__buy,.btn-dark,.newsletter__btn,.email-popup__btn{text-transform:uppercase;letter-spacing:.02em;}
.header__logo svg{width:auto;height:46px;}
.header__search-logo svg,.header__drawer-logo svg{width:auto;height:42px;}
.footer__logo svg{width:auto;height:88px;}
@media(max-width:768px){.header__logo svg{height:36px;}}
/* ===LERISE-REBRAND-END=== */

/* ===== LERISE — правки за документом 2026-06-23 ===== */

/* дод §3: ціна крупніше + жирним; дод §4: акційна ціна — фірмовий червоний */
.product-card__price{font-size:20px;font-weight:700;color:#24150e;line-height:1.2;margin:0}
.product-card__price del,.product-card__price del .amount{font-size:14px;font-weight:400;color:#999;text-decoration:line-through}
.product-card__price ins{text-decoration:none}
.product-card__price ins,.product-card__price ins .amount,.product-card__price ins bdi{color:#c0392b;font-weight:700}

/* Каталог §3: ряд «ціна + іконка-кошик» */
.product-card__price-row{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:8px}
.product-card__cart{flex-shrink:0;width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;border:1px solid #24150e;background:#fff;color:#24150e;cursor:pointer;padding:0;transition:background .2s,color .2s}
.product-card__cart:hover{background:#24150e;color:#fff}
.product-card__cart svg{width:18px;height:18px}
.product-card__cart.is-loading{opacity:.6;pointer-events:none}

/* Каталог §2: колір + розмір в один рядок з підписами */
.product-card__variations{display:flex;gap:18px;align-items:flex-start;margin-top:10px;flex-wrap:wrap}
.product-card__var{display:flex;flex-direction:column;gap:6px}
.product-card__var--size{margin-left:auto;align-items:flex-end}
.product-card__var-label{font-family:'Manrope',sans-serif !important;font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:#999;font-weight:400}
.product-card__variations .product-card__colors{display:flex;gap:6px;flex-wrap:wrap;margin:0}
.product-card__variations .product-card__sizes{margin:0}

/* Каталог §1: прибрати порожню область між інфо та кнопкою «Купити» */
.catalog-grid .product-card__buy{margin-top:14px}
.catalog-grid .product-card__info{flex:0 0 auto}
.catalog-grid .product-card{height:auto}

/* дод §4-5: бейджі НОВИНКА / ЗНИЖКА на фото картки */
.product-card__badges{position:absolute;top:10px;left:10px;display:flex;flex-direction:column;gap:6px;z-index:2;pointer-events:none}
.product-card__flag{display:inline-block;padding:4px 10px;font-family:'Roboto Serif',serif !important;font-size:10px;letter-spacing:.08em;text-transform:uppercase;line-height:1.2;font-weight:400}
.product-card__flag--new{background:#e8ddd2;color:#24150e}
.product-card__flag--sale{background:#c0392b;color:#fff}

/* Головна §3: назви категорій у блоці «Каталог» — Roboto Serif як решта бренду */
.cat-tile__label{font-family:'Roboto Serif',serif !important;text-transform:uppercase;letter-spacing:.02em}

/* Товар §5: показати лічильник кількості (–/+) на сторінці товару */
.product-info__form .quantity,.product-info__form .qty{display:inline-flex!important}
.product-info__form .qty{align-items:center;border:1px solid #cdbfb6;width:fit-content;margin:0 14px 16px 0;vertical-align:middle}
.product-info__form .qty.hidden{display:none!important}
.product-info__form .qty__btn{width:38px;height:42px;border:none;background:#faf7f4;color:#24150e;font-size:18px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;padding:0}
.product-info__form .qty__btn:hover{background:#efe7df}
.product-info__form .qty__input{width:46px;height:42px;border:none;border-left:1px solid #cdbfb6;border-right:1px solid #cdbfb6;text-align:center;background:#fff;font-size:15px;-moz-appearance:textfield;padding:0;margin:0}
.product-info__form .qty__input::-webkit-outer-spin-button,.product-info__form .qty__input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
.woocommerce-variation-add-to-cart{display:flex;align-items:center;flex-wrap:wrap;gap:0}

/* Товар §8: підсвітка невибраних параметрів після натискання «Купити» — лише червоний лейбл, без обводки */
.product-info__form .variations tr.lr-need .label label,.product-info__form .variations tr.lr-need{color:#c0392b}

/* Товар §3: прибрати завелику порожнечу між кнопками й описом */
.product-info__desc{margin-top:16px}
.product-info__form{margin-bottom:18px}

/* Товар §1-2: повноекранна галерея (lightbox) */
.lr-lightbox{position:fixed;inset:0;z-index:9999;background:rgba(20,12,8,.94);display:none;align-items:center;justify-content:center}
.lr-lightbox.is-open{display:flex}
.lr-lightbox__swiper{width:100%;height:100%;max-width:100vw}
.lr-lightbox__swiper .swiper-slide{display:flex;align-items:center;justify-content:center;padding:12px}
.lr-lightbox__swiper .swiper-zoom-container{width:100%;height:100%;display:flex;align-items:center;justify-content:center}
.lr-lightbox__swiper img{max-width:96vw;max-height:95vh;width:auto;height:auto;object-fit:contain}
@media(max-width:600px){.lr-lightbox__swiper .swiper-slide{padding:0}.lr-lightbox__swiper img{max-width:100vw;max-height:100vh;max-height:100dvh}.lr-lightbox__nav{width:38px;height:38px}}
.lr-lightbox__close{position:absolute;top:18px;right:22px;z-index:5;width:44px;height:44px;border:none;background:none;color:#fff;font-size:34px;line-height:1;cursor:pointer}
.lr-lightbox__nav{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:48px;height:48px;border:none;background:rgba(255,255,255,.12);cursor:pointer}
.lr-lightbox__nav:hover{background:rgba(255,255,255,.25)}
.lr-lightbox__nav--prev{left:14px}
.lr-lightbox__nav--next{right:14px}
.lr-lightbox__nav::before{content:'';display:inline-block;width:12px;height:12px;border-top:2px solid #fff;border-right:2px solid #fff}
.lr-lightbox__nav--prev::before{transform:rotate(-135deg)}
.lr-lightbox__nav--next::before{transform:rotate(45deg)}
.product__gallery .product__photo img{cursor:zoom-in}

/* Навігація §4: клікабельна назва категорії + окрема стрілка-toggle */
.header__drop-name{cursor:pointer}
.header__drop-toggle{background:none;border:none;margin:0;padding:2px 0 2px 2px;cursor:pointer;color:inherit;display:inline-flex;align-items:center;line-height:0}
.header__drop-toggle svg{width:16px;height:16px}
.header__drop:hover>.header__drop-toggle svg,.header__drop.is-open>.header__drop-toggle svg{transform:rotate(180deg)}

/* Навігація §3: «ЗНИЖКИ» — фірмовий червоний */
.header__sale{color:#c0392b !important;font-family:'Roboto Serif',serif !important;text-transform:uppercase;letter-spacing:.04em;font-weight:500}
.header__sale:hover{color:#a93226 !important}

/* Кабінет §4: замовлення — компактні картки замість таблиці (2026-06-26) */
.panel-box--orders{padding:0;background:none;border:0}
.orders-cards{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.order-card{display:flex;flex-direction:column;align-items:flex-start;border:1px solid #e8e0d8;background:#fff;border-radius:10px;padding:24px}
.order-card__num{font-family:'Roboto Serif',serif;font-size:19px;font-weight:600;color:#24150e;text-decoration:none;line-height:1.2}
.order-card__num:hover{color:#b4736d}
.order-card__date{margin-top:4px;font-size:13px;color:#b3a79d}
.order-card__status{margin-top:14px;font-size:12px;letter-spacing:.04em;color:#7a5a2f;background:#f6eccf;padding:6px 14px;border-radius:20px}
.order-card--completed .order-card__status{color:#2f6b3a;background:#e3f0e4}
.order-card--cancelled .order-card__status,.order-card--failed .order-card__status,.order-card--refunded .order-card__status{color:#a8443c;background:#f6e1de}
.order-card__sum{display:flex;align-items:baseline;justify-content:space-between;gap:12px;width:100%;margin-top:18px}
.order-card__total{font-size:22px;font-weight:700;color:#24150e}
.order-card__total .woocommerce-Price-currencySymbol{font-weight:700}
.order-card__count{font-size:14px;color:#b3a79d;white-space:nowrap}
.order-card__ttn{margin-top:14px;font-size:14px;color:#4d3b39}
.order-card__ttn a{color:#b4736d}
.order-card__actions{display:flex;flex-direction:column;gap:10px;width:100%;margin-top:20px}
.order-card__btn{width:100%;text-align:center;justify-content:center}
@media (max-width:768px){
	.orders-cards{grid-template-columns:1fr;gap:16px}
	.order-card{padding:20px}
	.order-card__total{font-size:20px}
}

/* дод. checkout §2: сторінка оформлення — лише форма (без підписки/футера) */
body.woocommerce-checkout .newsletter{display:none!important}

/* Каталог-вікно §2: шрифт назв категорій — Roboto Serif */
.cat-panel__label{font-family:'Roboto Serif',serif !important;text-transform:uppercase;letter-spacing:.06em;font-weight:400;font-size:12px}
/* Каталог-вікно §3: на ПК — компактніша сітка, менші картки, більше категорій */
@media(min-width:769px){
.cat-panel__scroll>.cat-panel__grid,.cat-panel__grid{grid-template-columns:repeat(6,1fr);max-width:1180px;margin:0 auto;gap:6px}
.cat-panel__item{padding:12px 6px 14px;gap:8px}
.cat-panel__img{aspect-ratio:3/4}
.cat-panel__perks{max-width:1180px;margin:8px auto 0}
}

/* Навігація §1: мобільне меню — верхній регістр, акцент ЗНИЖКИ червоним */
.drawer-link,.drawer-toggle,.drawer-sub__link{font-family:'Roboto Serif',serif !important;text-transform:uppercase;letter-spacing:.03em}
.drawer-menu .drawer-link--sale{color:#c0392b !important;font-weight:500}
.drawer-perks{margin-top:8px;padding-top:18px;border-top:1px solid #f0ebe6}
.drawer-perks .trust-badges{margin:0;padding:0;border:none;display:flex;flex-direction:column;gap:14px}

/* Товар §7: статус «Закінчується» — акцентний (дефіцит) */
.product-stock--low{color:#c0392b}

/* Кошик §1: варіації (Колір/Розмір) — сірим блоком під назвою */
.mini-cart-item__body .variation,.woocommerce-cart-form__cart-item .variation{display:flex;flex-wrap:wrap;gap:2px 10px;margin:4px 0 0;background:#f3efea;padding:5px 8px;font-size:12px;line-height:1.35}
.mini-cart-item__body .variation dt,.woocommerce-cart-form__cart-item .variation dt{margin:0;font-weight:500;color:#24150e}
.mini-cart-item__body .variation dd,.woocommerce-cart-form__cart-item .variation dd{margin:0;color:#4d3b39}
.mini-cart-item__body .variation dd p,.woocommerce-cart-form__cart-item .variation dd p{margin:0}
.mini-cart-item__body .variation dt,.mini-cart-item__body .variation dd{display:inline}

/* Кабінет §3: «Мої бажання» — картки у стилі каталогу замість таблиці */
.wlfmc-wishlist-table,.wlfmc-wishlist-table tbody,.wlfmc-wishlist-table thead,.wlfmc-wishlist-table tr,.wlfmc-wishlist-table td{display:block!important;border:none!important;padding:0!important;width:auto!important;background:none}
.wlfmc-wishlist-table thead,.wlfmc-wishlist-table colgroup{display:none!important}
.wlfmc-wishlist-table tbody{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:18px}
.wlfmc-wishlist-table tr.wlfmc-table-item{display:flex!important;flex-direction:column;border:1px solid #ece5dd!important;background:#fff;position:relative;margin:0!important}
.wlfmc-table-item td.first-column,.wlfmc-table-item .wlfmc-thumbnail-wrapper,.wlfmc-table-item .product-thumbnail{display:block!important;width:100%!important;position:relative;text-align:left}
.wlfmc-table-item .product-thumbnail img{width:100%!important;max-width:100%!important;height:auto!important;aspect-ratio:3/4;object-fit:cover;display:block;margin:0!important}
.wlfmc-table-item .wlfmc-action-icons{position:absolute!important;top:8px;right:8px;left:auto;z-index:2;display:block!important;width:auto!important}
.wlfmc-table-item .product-remove{display:inline-flex!important;align-items:center;justify-content:center;width:32px!important;height:32px;background:#fff;border:1px solid #ece5dd;color:#24150e;border-radius:50%;margin:0}
.wlfmc-table-item td.center-column{padding:12px 14px 0!important;flex:1 1 auto;text-align:left}
.wlfmc-table-item .product-name{font-family:'Roboto Serif',serif;text-transform:uppercase;letter-spacing:.02em;font-size:13px;line-height:1.4;color:#24150e;text-decoration:none;display:block}
.wlfmc-table-item .product-price,.wlfmc-table-item .product-price .amount{font-weight:700;font-size:18px;color:#24150e;margin-top:6px}
.wlfmc-table-item td.last-column{padding:12px 14px 14px!important;margin-top:auto}
.wlfmc-table-item td.last-column>div,.wlfmc-table-item td.last-column .d-flex{display:block!important}
.wlfmc-table-item .last-column .button,.wlfmc-table-item .lr-wl-cart{display:block!important;width:100%!important;text-align:center;justify-content:center;float:none!important}
/* високоспецифічні перекриття плагінного inline-CSS (фото на всю ширину, перенос назв) */
body .wlfmc-wishlist-table .wlfmc-table-item .product-thumbnail{display:block!important;width:100%!important;max-width:none!important;margin:0!important}
body .wlfmc-wishlist-table .wlfmc-table-item .product-thumbnail img{width:100%!important;max-width:100%!important;height:auto!important;min-width:100%!important}
body .wlfmc-wishlist-table .wlfmc-table-item .wlfmc-thumbnail-wrapper{display:block!important;width:100%!important;max-width:none!important}
body .wlfmc-wishlist-table .wlfmc-table-item .product-name,body .wlfmc-wishlist-table .wlfmc-table-item strong{white-space:normal!important;overflow-wrap:anywhere;word-break:break-word;max-width:100%}
body .wlfmc-wishlist-table .wlfmc-table-item td.center-column{max-width:100%;overflow:hidden}

/* дод §1: категорії-навігація вгорі панелі фільтрів (компактна, зі скролом) */
.filter-cats{margin:0 0 20px;padding:0 0 16px;border-bottom:1px solid #ece5dd}
.filter-cats__title{margin:0 0 10px;font-weight:500;font-size:14px;color:#242424}
.filter-cats__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px;max-height:230px;overflow-y:auto}
.filter-cats__list::-webkit-scrollbar{width:4px}
.filter-cats__list::-webkit-scrollbar-thumb{background:#d8cfc6}
.filter-cats__link{font-size:13px;line-height:1.3;color:#4d3b39;text-decoration:none;transition:color .2s}
.filter-cats__link:hover,.filter-cats__link.is-active{color:#24150e;font-weight:500}
@media(max-width:768px){
.filter .filter-cats{display:none}
.filter.is-open .filter-cats{display:block;order:-1}
}
/* ===== /LERISE 2026-06-23 ===== */

/* ===== LERISE картки 2026-06-25: кнопка «Купити» на фото + прибрати порожнечу ===== */
/* §1.1 «Купити» — частина фото картки (overlay внизу зображення) */
.product-card__media{position:relative;overflow:hidden}
.product-card__media .product-card__buy{position:absolute;left:0;right:0;bottom:0;width:100%;height:48px;margin:0!important;z-index:3;letter-spacing:1.6px}
.product-card__media .product-card__buy--out{position:absolute;left:0;right:0;bottom:0;width:100%;height:48px;margin:0!important;z-index:3}
/* кнопка «Купити» на картці — показ при наведенні (на десктопі); на тач-пристроях лишається видимою */
@media(hover:hover){
.product-card__media .product-card__buy:not(.product-card__buy--out){transform:translateY(100%);opacity:0;transition:transform .3s ease,opacity .3s ease,background .25s}
.product-card:hover .product-card__media .product-card__buy:not(.product-card__buy--out){transform:translateY(0);opacity:1}
}
/* §1.1 прибрати порожню область між інфоблоком і кнопкою — картка за висотою контенту */
.catalog-grid{align-items:start}
.catalog-grid .product-card,
.swiper-slide .product-card,
.related .product-card,
.news .product-card{height:auto}
.catalog-grid .product-card__info,
.swiper-slide .product-card__info,
.related .product-card__info,
.news .product-card__info{flex:0 0 auto!important}
.product-card__variations{margin-bottom:0}
.product-card__hint{display:none!important}
/* ===== /LERISE картки 2026-06-25 ===== */

/* ===== LERISE галерея товару — фікс мобільного iOS 2026-06-25 ===== */
/* Баг: на iPhone (Safari) фото галереї не вантажились/тонка смужка — бо .product__photo
   тримало висоту лише на aspect-ratio, а iOS колапсує aspect-ratio на flex-елементі
   всередині overflow-x:auto контейнера у 0. Фікс: явна висота (не залежить від aspect-ratio). */
@media (max-width: 600px) {
  .product__gallery {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .product__photo {
    aspect-ratio: auto;
    height: calc((50vw - 23px) * 231 / 175);
    min-height: 200px;
  }
  .product__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
/* ===== /LERISE галерея товару 2026-06-25 ===== */

/* ===== LERISE галерея товару — великий вертикальний формат (моб) 2026-06-25 ===== */
/* Клієнт п.2: повернути ВЕЛИКІ фото вертикально (гортання вниз) замість горизонтального
   слайдера з дрібними фото. Кожне фото на повну ширину, у натуральних пропорціях (не обрізане).
   Повноекранний перегляд (lightbox зі стрілками/свайпом/zoom) уже реалізовано в upgrade.js. */
@media (max-width: 768px) {
  .product__inner {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .product__gallery {
    display: block;
    width: 100%;
    -ms-grid-columns: none;
    grid-template-columns: none;
    overflow: visible;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
  }
  .product__photo {
    width: 100%;
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    margin-bottom: 8px;
    overflow: visible;
    scroll-snap-align: none;
  }
  .product__photo:last-child {
    margin-bottom: 0;
  }
  .product__photo img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
}
/* ===== /LERISE галерея товару великий формат 2026-06-25 ===== */

/* LERISE товар §3 — прибрати порожню зону між кнопками покупки і описом (моб) 2026-06-25.
   Причина: правило сторінки кошика .cart{padding:24px 0 48px} (моб) текло на форму
   додавання в кошик (form.cart має той самий клас «cart») → 72px пустого падінгу.
   Опис і «Поділитися» вже стоять одразу під формою — лишилось прибрати відступи. */
/* Універсально (десктоп+мобайл): прибрати зайві відступи навколо опису/Поділитися/форми.
   form.cart успадковував padding від правила сторінки кошика .cart (32px 0 64px десктоп /
   24px 0 48px мобайл) — обнуляємо; рівний відступ між усіма блоками = flex-gap .product-info 20px. */
.product-info__form form.cart{padding:0!important}
.product-info__form{margin-bottom:0!important}
.product-info__desc{margin-top:0!important}
.product-info > .product-share{margin-top:0}
.product-info > .trust-badges{margin-top:0}
/* ===== /LERISE товар §3 опис під кнопки 2026-06-25 ===== */

/* LERISE товар §4 — акордеон «Параметри моделі» (структуровані рядки) 2026-06-25 */
.model-params{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px}
.model-params__row{display:flex;justify-content:space-between;gap:16px}
.model-params__label{color:#7a6a62}
.model-params__value{color:#24150e;font-weight:500;text-align:right}
/* ===== /LERISE товар §4 параметри моделі 2026-06-25 ===== */

/* LERISE кошик §1 — варіації стовпчиком, без сірого фону 2026-06-26 */
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation,
.mini-cart-item__body .variation,
.woocommerce-cart-form__cart-item .variation{display:block;background:none;padding:0;margin:6px 0 0;gap:0}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation dt,
.mini-cart-item__body .variation dt,
.woocommerce-cart-form__cart-item .variation dt{display:inline;float:none;font-weight:500;margin:0 4px 0 0}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation dd,
.mini-cart-item__body .variation dd,
.woocommerce-cart-form__cart-item .variation dd{display:inline;margin:0}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation dd p,
.mini-cart-item__body .variation dd p,
.woocommerce-cart-form__cart-item .variation dd p{display:inline;margin:0}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation dd::after,
.mini-cart-item__body .variation dd::after,
.woocommerce-cart-form__cart-item .variation dd::after{content:"\a";white-space:pre}
/* ===== /LERISE кошик §1 варіації стовпчиком 2026-06-26 ===== */

/* ===== LERISE чекаут §1 — фікс «пливе верстка» при помилках валідації 2026-06-26 ===== */
/* WC checkout.js робить prepend .woocommerce-NoticeGroup у form.checkout (=.checkout__inner,
   flex) — без цього блок помилок стає 3-ю колонкою і розпирає лейаут.
   Базово (і для мобільної column-розкладки): повна ширина + перший у потоці, БЕЗ flex-basis. */
.checkout__inner > .woocommerce-NoticeGroup,
.checkout__inner > .woocommerce-error,
.checkout__inner > .woocommerce-message,
.checkout__inner > .woocommerce-info {
  width: 100%;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin: 0 0 8px;
}
/* Десктоп (row-розкладка): дозволяємо перенос і робимо блок окремим повноширинним рядком зверху,
   щоб форма+aside перенеслись нижче без зміни ширини. На ≤1024px контейнер уже column — там
   flex-basis:100% означав би ВИСОТУ 100% і роздув би блок, тож тільки тут. */
@media (min-width: 1025px) {
  .checkout__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .checkout__inner > .woocommerce-NoticeGroup,
  .checkout__inner > .woocommerce-error,
  .checkout__inner > .woocommerce-message,
  .checkout__inner > .woocommerce-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
/* ===== /LERISE чекаут §1 2026-06-26 ===== */

/* ===== LERISE бажане — картки як у каталозі 2026-06-26 ===== */
/* Сторінка «Мої бажання» рендериться картками lr_product_card у .catalog-grid
   (override woocommerce/mc-wishlist-view.php). Сердечко в картці зайве — ти вже
   в бажаному, тож ховаємо; видалення — окрема «×» у кутку. */
.wl-grid { margin-top: 8px; }
.wl-grid .product-card__like { display: none; }
.wl-card { position: relative; }
.wl-card__remove {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 34px;
  height: 34px;
  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;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #242424;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.16);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.16);
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.wl-card__remove:hover {
  background: #242424;
  color: #fff;
}
.woocommerce-MyAccount-content .wl-empty { margin: 24px 0; }
@media (max-width: 600px) {
  .wl-card__remove { width: 30px; height: 30px; font-size: 19px; top: 8px; right: 8px; }
}
/* ===== /LERISE бажане 2026-06-26 ===== */

/* LERISE перегляд замовлення — фікс верстки адрес + кількості (2026-06-26) */
/* Адреси: WC core накидає колонкам float+width:48% і ламає грід — нормалізуємо */
.woocommerce-customer-details .addresses{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}
/* clearfix ::before/::after стають фантомними grid-комірками й зсувають колонки по діагоналі */
.woocommerce-customer-details .addresses::before,
.woocommerce-customer-details .addresses::after{content:none!important;display:none!important}
.woocommerce-customer-details .addresses > .col-1,
.woocommerce-customer-details .addresses > .col-2{float:none!important;width:auto!important;margin:0!important;padding:0!important;max-width:none}
.woocommerce-customer-details .woocommerce-column__title{margin-bottom:12px}
.woocommerce-customer-details .col-1 address,
.woocommerce-customer-details .col-2 address{margin:0;height:100%}
@media (max-width:768px){
	.woocommerce-customer-details .addresses{grid-template-columns:1fr;gap:18px}
}
/* Кількість «× N» в один рядок з фото+назвою, а не окремим рядком під фото */
.woocommerce-table--order-details td.product-name .lr-order-item{display:inline-flex;vertical-align:middle}
.woocommerce-table--order-details td.product-name .product-quantity{display:inline-block;vertical-align:middle;margin-left:12px;color:#7a6a60;font-weight:600;white-space:nowrap}
@media (max-width:768px){
	.woocommerce-table--order-details td.product-name{display:flex;align-items:center;flex-wrap:wrap;gap:6px 10px}
	.woocommerce-table--order-details td.product-name .lr-order-item{flex:1 1 auto;min-width:0}
	.woocommerce-table--order-details td.product-name .product-quantity{margin-left:auto}
}
/* ===== /LERISE перегляд замовлення 2026-06-26 ===== */

/* ===== LERISE моб-меню — блок «Новинки / Бестселери» 2026-06-26 ===== */
.header__drawer-nav{overflow-y:auto;-webkit-overflow-scrolling:touch}
.drawer-promo{margin-top:8px;padding-top:18px;border-top:1px solid #f0ebe6;display:flex;flex-direction:column;gap:22px}
.drawer-promo__group{display:flex;flex-direction:column;gap:12px}
.drawer-promo__head{font-family:'Roboto Serif',serif;text-transform:uppercase;letter-spacing:.06em;font-size:13px;color:#242424;text-decoration:none}
.drawer-promo__head:hover{color:#4d3b39}
.drawer-promo__row{display:flex;gap:12px;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory;scroll-padding-left:0;scrollbar-width:thin;scrollbar-color:#d8cfc7 transparent;margin:0 -16px 0 0;padding:0 16px 8px 0}
.drawer-promo__row::-webkit-scrollbar{height:3px}
.drawer-promo__row::-webkit-scrollbar-thumb{background:#d8cfc7;border-radius:3px}
.drawer-promo__card{flex:0 0 132px;display:flex;flex-direction:column;gap:6px;color:#242424;text-decoration:none;scroll-snap-align:start}
.drawer-promo__img{display:block;width:100%;aspect-ratio:3/4;overflow:hidden;background:#f6f6f6}
.drawer-promo__img img{width:100%;height:100%;object-fit:cover;display:block;margin:0}
.drawer-promo__name{font-size:12px;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.drawer-promo__price{font-size:13px;font-weight:600;color:#242424}
.drawer-promo__price del{color:#9a9a9a;font-weight:400;margin-right:4px}
.drawer-promo__price ins{text-decoration:none;color:#c0392b}
/* ===== /LERISE моб-меню — блок «Новинки / Бестселери» 2026-06-26 ===== */

/* ===== LERISE картки каталогу — рівна висота 2026-06-26 ===== */
/* Колонки .catalog-grid задані як 1fr (=minmax(auto,1fr)); auto-мінімум картки з
   кнопками розміру S/M/L (min-content) розпирав колонку ширше за рівну частку →
   різна ширина (160 vs 175px) → різна висота фото (aspect-ratio 304/490).
   min-width:0 на grid-айтемі обнуляє auto-мінімум → колонки справді рівні на всіх ширинах. */
.catalog-grid > .product-card{min-width:0}
.catalog-grid .product-card__variations,
.catalog-grid .product-card__var,
.catalog-grid .product-card__sizes{flex-wrap:wrap}
/* ===== /LERISE картки каталогу — рівна висота 2026-06-26 ===== */

/* ===== LERISE футер — виділення «Всі категорії» 2026-06-26 ===== */
.footer__list li.footer__all-cats > a {
  color: #F5F5F5;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 1.2px;
}
.footer__list li.footer__all-cats > a:hover {
  color: #fff;
}
/* ===== /LERISE футер — виділення «Всі категорії» 2026-06-26 ===== */

/* LERISE кошик §1 — фікс плутанини dt/dd: WC-core примусово ставить dd{display:block;float:left}, через що ЗНАЧЕННЯ стрибало ліворуч від НАЗВИ. Перебиваємо з !important 2026-06-26 */
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation,
.mini-cart-item__body .variation,
.woocommerce-cart-form__cart-item .variation{display:block !important;background:none !important;border:0 !important;padding:0 !important;margin:6px 0 0 !important;gap:0 !important}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation dt,
.mini-cart-item__body .variation dt,
.woocommerce-cart-form__cart-item .variation dt{display:inline !important;float:none !important;clear:none !important;font-weight:500;margin:0 4px 0 0 !important}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation dd,
.mini-cart-item__body .variation dd,
.woocommerce-cart-form__cart-item .variation dd{display:inline !important;float:none !important;clear:none !important;margin:0 !important}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation dd p,
.mini-cart-item__body .variation dd p,
.woocommerce-cart-form__cart-item .variation dd p{display:inline !important;margin:0}
.header__cart-content .woocommerce-mini-cart li.mini_cart_item .variation dd::after,
.mini-cart-item__body .variation dd::after,
.woocommerce-cart-form__cart-item .variation dd::after{content:"\a";white-space:pre}
/* ===== /LERISE кошик §1 фікс dt/dd 2026-06-26 ===== */

/* ===== LERISE картка товару — переоформлення інфоблоку 2026-06-27 ===== */
/* 1. Назва: Manrope, звичайний регістр, компактна/легка, менша; резерв під 2 рядки */
.product-card__title{
  font-family:'Manrope',sans-serif !important;
  text-transform:none !important;
  letter-spacing:0 !important;
  font-weight:400;
  font-size:13px;
  line-height:1.35;
  color:#24150e;
  margin:0;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:calc(13px * 1.35 * 2);
}
/* 2. Ряд ціни: ціна (bold, на кегль більша за назву, «грн») + квадратні кнопки праворуч */
.product-card__price-row{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:6px}
.product-card__price{font-size:16px;font-weight:700;line-height:1.2;color:#24150e;text-transform:none;margin:0}
.product-card__price del,.product-card__price del .amount,.product-card__price del bdi{font-size:12px;font-weight:400;color:#999}
.product-card__price ins,.product-card__price ins .amount,.product-card__price ins bdi{font-size:16px;font-weight:700;color:#c0392b}
.product-card__actions{display:flex;align-items:center;gap:8px;flex-shrink:0}
.product-card__like,.product-card__cart{
  width:36px;height:36px;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid #24150e;background:#fff;color:#24150e;
  padding:0;cursor:pointer;transition:background .2s,color .2s,border-color .2s;
}
.product-card__like svg,.product-card__cart svg{width:17px;height:17px}
.product-card__like:hover,.product-card__cart:hover{background:#24150e;color:#fff}
.product-card__like.is-active{background:#24150e;border-color:#24150e}
.product-card__like.is-active svg path{fill:#fff !important;stroke:#fff !important}
.product-card__like.is-active:hover{background:#4d3b39;border-color:#4d3b39}
/* 3. Підписи «Колір»/«Розмір»: однаковий шрифт/розмір, звичайний регістр, ліве вирівнювання + тонка розділова лінія */
.product-card__variations{position:relative;display:flex;gap:10px;align-items:flex-start;margin-top:12px;margin-bottom:0;flex-wrap:nowrap !important;min-height:90px}
.product-card__var{display:flex;flex-direction:column;gap:8px;align-items:flex-start;margin:0;min-width:0}
.product-card__var--color{flex:0 0 auto;min-width:0}
/* МОБ (база): Колір + Розмір поруч, риска в проміжку, компактні кнопки щоб S M L влізли */
.product-card__var--size{flex:0 0 auto;min-width:0;margin-left:auto;align-items:flex-start;box-sizing:border-box}
.product-card__var--color + .product-card__var--size{position:relative;padding-left:11px;border-left:0}
.product-card__var--color + .product-card__var--size::before{content:"";position:absolute;left:-5px;top:22px;width:1px;height:30px;background:#e5ded7}
.product-card__variations .product-card__sizes{gap:5px}
.product-card__variations .product-card__size{min-width:30px;padding:0 5px}
/* ПК: Розмір притиснутий праворуч, риска по центру картки */
@media(min-width:769px){
  .product-card__var--size{flex:0 0 auto;margin-left:auto;padding-left:0}
  .product-card__var--color + .product-card__var--size::before{display:none}
  .product-card__variations::before{content:"";position:absolute;left:50%;top:22px;width:1px;height:30px;background:#e5ded7;transform:translateX(-50%)}
  .product-card__variations .product-card__sizes{gap:6px}
  .product-card__variations .product-card__size{min-width:32px;padding:0 7px}
}
.product-card__var-label{
  font-family:'Manrope',sans-serif !important;
  font-size:12px;font-weight:400;letter-spacing:0;text-transform:none;color:#8a7d74;line-height:1.2;
}
/* 4. Резерв місця під 5 кольорів і 5 розмірів (до 2 рядків) — однакова висота карток */
.product-card__variations .product-card__colors{display:flex;gap:7px;flex-wrap:wrap;align-content:flex-start;margin:0;min-height:43px}
.product-card__variations .product-card__sizes{display:flex;gap:6px;flex-wrap:wrap;align-content:flex-start;margin:0;min-height:62px}
/* 5. На мобільній — прибрати велику кнопку «Купити» (десктоп без змін, додаємо через іконку-кошик) */
@media(max-width:768px){
  .product-card__media .product-card__buy:not(.product-card__buy--out){display:none !important}
}
/* ===== /LERISE картка товару 2026-06-27 ===== */

/* ===== LERISE безпарольний вхід (SMS-код + e-mail) 2026-06-27 ===== */
.auth-alt{margin-top:6px;padding-top:18px;border-top:1px solid #ece7e3;display:flex;flex-direction:column;gap:12px}
.auth-alt__label{font-size:13px;color:#999}
.auth-alt__btns{display:flex;flex-direction:column;gap:10px}
.auth-alt__btn{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:13px 16px;border:1px solid #d9d2cc;border-radius:2px;background:#fff;font-family:"Gilroy",sans-serif;font-size:14px;font-weight:600;color:#24150e;cursor:pointer;transition:border-color .25s,background .25s}
.auth-alt__btn:hover{border-color:#24150e;background:#faf7f4}
.auth-alt__btn svg{width:20px;height:20px;flex:0 0 auto;color:#4d3b39}
.auth-pwl__step{display:none;flex-direction:column;gap:20px}
.auth-pwl__step.is-active{display:flex}
.auth-pwl__code{text-align:center;font-size:22px;letter-spacing:10px;font-weight:700;padding-left:10px}
.auth-pwl__code::placeholder{letter-spacing:normal;font-weight:400}
.auth-pwl [data-pwl-resend]{align-self:center}
.auth-pwl [data-pwl-resend]:disabled{cursor:default;opacity:.5;text-decoration:none}
.auth-alt__btns{flex-direction:column}
/* ===== /LERISE безпарольний вхід 2026-06-27 ===== */

/* ===== LERISE «Повідомити про появу» 2026-06-27 ===== */
/* Зона покупки: для відсутніх товарів ховаємо «Купити»/кількість, показуємо notify-блок */
.product-info__form .lr-bis{display:none}
.product-info__form--bis .lr-bis{display:block}
.product-info__form--bis .single_add_to_cart_button,
.product-info__form--bis .quantity,
.product-info__form--bis .woocommerce-variation-add-to-cart .button{display:none !important}
.lr-bis__btn{width:100%;height:54px;border:none;cursor:pointer}
.lr-bis__hint{margin:10px 0 0;font-size:13px;line-height:1.5;color:#7a6a64;text-align:center}
.product-sticky__notify{flex:1 1 auto}
.product-sticky__notify[hidden],.product-sticky__buy[hidden],.product-sticky__wish[hidden]{display:none}
/* Мобільний sticky: кнопка «Повідомити про появу» не повинна здавлювати ціну */
@media(max-width:480px){
  .product-sticky__price{white-space:nowrap}
  .product-sticky__notify{flex:0 1 auto;font-size:11px;letter-spacing:.04em;padding:12px 12px}
}
/* Модалка підписки */
.lr-bis-modal{position:fixed;inset:0;z-index:10000;display:flex;align-items:center;justify-content:center;opacity:0;transition:opacity .3s}
.lr-bis-modal[hidden]{display:none}
.lr-bis-modal.is-open{opacity:1}
.lr-bis-modal__overlay{position:absolute;inset:0;background:rgba(36,36,36,.55)}
.lr-bis-modal__dialog{position:relative;z-index:1;width:min(440px,92vw);background:#fff;padding:44px 38px 38px;box-shadow:0 30px 80px rgba(0,0,0,.25);transform:translateY(14px);transition:transform .3s}
.lr-bis-modal.is-open .lr-bis-modal__dialog{transform:none}
.lr-bis-modal__close{position:absolute;top:14px;right:14px;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border:none;background:none;cursor:pointer;color:#24150e}
.lr-bis-modal__close svg{width:18px;height:18px}
.lr-bis-modal__title{margin:0 0 12px;font-size:24px;line-height:1.2;font-weight:500;color:#24150e}
.lr-bis-modal__text{margin:0 0 22px;font-size:14px;line-height:1.5;color:#4d3b39}
.lr-bis-modal__form{display:flex;flex-direction:column;gap:12px}
.lr-bis-modal__input{height:46px;border:1px solid #cdbfb6;padding:0 14px;font-size:14px;font-family:inherit;outline:none}
.lr-bis-modal__input:focus{border-color:#24150e}
.lr-bis-modal__submit{height:46px;border:none;cursor:pointer;width:100%}
.lr-bis-modal__note{margin:10px 0 0;font-size:13px;color:#2E7D32}
.lr-bis-modal__note.is-error{color:#c0392b}
/* ===== /LERISE «Повідомити про появу» 2026-06-27 ===== */

/* ===== LERISE — товар: дрібні правки оформлення 2026-06-27 ===== */
/* Ціна — жирна */
.product-info__price,
.product-info__price .woocommerce-Price-amount,
.product-info__price .amount { font-weight: 700; }

/* Лічильник кількості — компактний, у розмір кнопок S/M/L (≈30px) */
.product-info__form .qty__btn { width: 30px; height: 30px; font-size: 15px; }
.product-info__form .qty__input { width: 38px; height: 30px; font-size: 14px; }

/* Ієрархія кнопок: «Купити» головна (більша/жирніша), «Бажане» — другорядна */
.product-info__form .single_add_to_cart_button,
.product-info__form .single_add_to_cart_button.button,
.product-info__form .single_add_to_cart_button.button.alt { padding: 17px 24px !important; font-weight: 600; font-size: 15px; }
.product-info__wish-btn { min-height: 42px; padding: 10px 24px; font-weight: 400; font-size: 12px; }
/* ===== /LERISE товар 2026-06-27 ===== */

/* ===== LERISE — хедер: виразніший hover пунктів меню 2026-06-27 ===== */
/* Було: текст лише світлішав #24150e→#4d3b39 (майже непомітно).
   Стало: акцентний chestnut-колір бренду + анімований підкреслювач знизу. */
.header__nav .header__link { position: relative; }

.header__nav .header__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #c0392b;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform .25s ease;
          transition: transform .25s ease;
}

/* Текст пункту — у брендовий chestnut на hover / відкритому дропі */
.header__nav .header__link:hover,
.header__drop:hover > .header__link,
.header__drop.is-open > .header__link,
.header__drop:hover > .header__link--drop,
.header__drop.is-open > .header__link--drop {
  color: #c0392b;
}

/* Підкреслювач — на всю ширину пункту */
.header__nav .header__link:hover::after,
.header__drop:hover > .header__drop-name::after,
.header__drop.is-open > .header__drop-name::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
/* ===== /LERISE хедер hover 2026-06-27 ===== */

/* ===== LERISE реквізити банк-переказу (thankyou) 2026-06-27 ===== */
.bank-details{max-width:900px;margin:0 auto 40px;border:1px solid #cdbfb6;background:#fff;padding:26px 28px;text-align:left}
.bank-details__title{margin:0 0 6px;font-size:14px;letter-spacing:1.5px;text-transform:uppercase;font-weight:500;color:#24150e}
.bank-details__hint{margin:0 0 20px;font-size:13px;line-height:1.6;color:#4d3b39}
.bank-details__list{list-style:none;margin:0 0 22px;padding:0;display:flex;flex-direction:column;gap:1px;background:#ece4dd}
.bank-details__row{display:flex;align-items:center;gap:14px;background:#fff;padding:14px 16px}
.bank-details__label{flex:0 0 180px;font-size:11px;letter-spacing:1px;text-transform:uppercase;color:#999;text-align:left}
.bank-details__value{flex:1 1 auto;font-size:15px;font-weight:600;color:#24150e;word-break:break-word;text-align:left}
.bank-details__copy{flex:0 0 auto;display:inline-flex;align-items:center;gap:6px;border:1px solid #cdbfb6;background:#fff;color:#24150e;font-size:12px;line-height:1;padding:8px 12px;border-radius:2px;cursor:pointer;transition:background .15s,border-color .15s,color .15s}
.bank-details__copy:hover{background:#24150e;border-color:#24150e;color:#fff}
.bank-details__copy-ico{width:15px;height:15px;flex:0 0 auto}
.bank-details__copy.is-copied{background:#2f7d4f;border-color:#2f7d4f;color:#fff}
.bank-details__copy-all{display:inline-flex}
@media(max-width:600px){
  .bank-details{padding:20px 16px}
  .bank-details__row{flex-wrap:wrap;gap:6px 12px;padding:14px 0;border-bottom:1px solid #ece4dd;background:none}
  .bank-details__list{gap:0;background:none}
  .bank-details__label{flex:1 1 100%}
  .bank-details__value{flex:1 1 auto}
  .bank-details__copy{flex:0 0 auto}
  .bank-details__copy-all{display:flex;width:100%;justify-content:center}
}
/* ===== /LERISE реквізити банк-переказу ===== */

/* ===== LERISE Сторінка підтвердження §3 — єдиний стиль/ієрархія 2026-06-27 ===== */
/* Збалансована сітка ключових фактів (2×2 замість 3+1) */
.thankyou__overview{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:#cdbfb6;border:1px solid #cdbfb6;max-width:760px;margin:0 auto 32px}
.thankyou__cell{flex:none;padding:18px 22px}
/* Однакова ширина для всіх блоків сторінки — вирівняна композиція */
.thankyou .woocommerce-order,.thankyou .woocommerce-order-details{max-width:760px;margin:0 auto}
/* Інструкція способу оплати (хук шлюзу) — акуратна замітка, а не «осиротілий» рядок */
.thankyou>.container>p{max-width:760px;margin:0 auto 32px;padding:14px 20px;text-align:center;font-size:14px;line-height:1.6;color:#7a6a60;background:#faf7f3;border:1px solid #ece4dd;border-radius:4px}
/* Картка «Доставка та отримувач» — у стилі бренду (cream border + білий фон) */
.thankyou__details{max-width:760px;margin:0 auto 32px;border:1px solid #cdbfb6;background:#fff;padding:24px 28px}
.thankyou__details-title{margin:0 0 16px;font-size:14px;letter-spacing:1.5px;text-transform:uppercase;font-weight:500;color:#24150e}
.thankyou__details-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:1px;background:#ece4dd}
.thankyou__details-row{display:flex;align-items:baseline;gap:14px;background:#fff;padding:11px 14px}
.thankyou__details-label{flex:0 0 150px;font-size:11px;letter-spacing:1px;text-transform:uppercase;color:#999;text-align:left}
.thankyou__details-value{flex:1 1 auto;font-size:15px;font-weight:500;color:#24150e;word-break:break-word}
/* Заголовок секції товарів — однаковий ритм відступів */
.thankyou .woocommerce-order-details__title{margin:0 0 16px}
/* Рядок товару: фото + назва в один рядок, без «розриву» назви плагіном свотчів */
.thankyou .product-name a{color:#24150e;text-decoration:none}
.thankyou .product-name a br{display:none}
.thankyou .product-name a .variation-style{display:inline !important;margin:0 0 0 .25em !important;font-size:inherit !important;font-weight:inherit !important;line-height:inherit !important;color:inherit !important;text-transform:none !important}
.thankyou .product-name .lr-order-item__name{font-size:15px;line-height:1.3;color:#24150e}
/* Кількість — другорядна, приглушено, в рядок із назвою */
.thankyou .product-name .product-quantity{display:inline-block;margin-left:8px;font-weight:500;color:#7a6a60;white-space:nowrap}
/* Атрибути товару (Колір/Розмір) — компактно, значення в рядок із підписом */
.thankyou .wc-item-meta{margin:6px 0 0;padding:0;list-style:none;display:block}
.thankyou .wc-item-meta li{display:block;margin:2px 0;font-size:13px;color:#7a6a60}
.thankyou .wc-item-meta li strong{font-weight:500;color:#4d3b39;margin-right:4px}
.thankyou .wc-item-meta li p{display:inline;margin:0}
/* Ціна позиції — акцентний бренд-колір (а не службовий лінк-колір) */
.thankyou .product-total .amount,.thankyou .product-total bdi{color:#24150e;font-weight:600}
@media(max-width:600px){
  .thankyou__details{padding:20px 16px}
  .thankyou__details-row{flex-direction:column;gap:2px;padding:11px 0;background:none;border-bottom:1px solid #ece4dd}
  .thankyou__details-list{gap:0;background:none}
  .thankyou__details-label{flex:none}
  .thankyou>.container>p{margin-bottom:24px}
}
/* ===== /LERISE Сторінка підтвердження §3 ===== */

/* ===== LERISE картка — правки 2026-06-28 ===== */
/* 1. Hover фейворит: тепла темна замість чорної; активний стан — рожевий бренд */
.product-card__like:hover{background:#4d3b39 !important;border-color:#4d3b39 !important;color:#fff !important}
.product-card__like:hover svg path{fill:#fff !important;stroke:#fff !important}
.product-card__cart:hover{background:#4d3b39 !important;border-color:#4d3b39 !important;color:#fff !important}
.product-card__like.is-active{background:#B4736D !important;border-color:#B4736D !important;color:#fff !important}
.product-card__like.is-active svg path{fill:#fff !important;stroke:#fff !important}
.product-card__like.is-active:hover{background:#9d6158 !important;border-color:#9d6158 !important}
/* 2. Відступи: прибираємо мертвий простір (min-height) і зменшуємо margin */
.product-card__variations{margin-top:8px !important;min-height:0 !important}
.product-card__variations .product-card__colors{min-height:0 !important}
.product-card__variations .product-card__sizes{min-height:0 !important}
.product-card__var{gap:5px !important}
/* 3. Свотчі трохи менші */
.product-card__color{width:15px !important;height:15px !important}
.product-card__variations .product-card__size{min-width:26px !important;height:24px !important;font-size:11px !important;padding:0 4px !important}
@media(min-width:769px){
  .product-card__variations .product-card__size{min-width:28px !important;height:24px !important;padding:0 5px !important}
}
/* min-height назви — прибрати резерв 2-го рядка (створював порожній відступ) */
.product-card__title{min-height:0 !important}
/* Лінія по центру — тільки коли є і колір і розмір */
.product-card__variations--single::before{display:none !important}
.product-card__variations--single .product-card__var--size{padding-left:0 !important}
.product-card__variations--single .product-card__var--size::before{display:none !important}
/* ===== /LERISE картка правки 2026-06-28 ===== */

.order-ttn{margin:6px 0 0;font-size:15px;color:#24150e}
.order-ttn a{color:#4d3b39;text-decoration:underline}
.order-ttn--pending{color:#999}
