@charset "UTF-8";
.wpfPreview.wpfPreviewLoader {
  position: relative;
  display: block;
  width: 100px;
  height: 20px;
}
.wpfPreview.wpfPreviewLoader > * {
  display: none !important;
  visibility: hidden !important;
}
.wpfPreview.wpfPreviewLoader .woobewoo-filter-loader.spinner {
  display: none !important;
  visibility: hidden !important;
}
.wpfPreview.wpfPreviewLoader .spinner {
  display: none !important;
  visibility: hidden !important;
}
.wpfPreview.wpfPreviewLoader .woobewoo-filter-loader {
  display: none !important;
  visibility: hidden !important;
}

.wpfPreview.wpfPreviewLoader::after {
  content: "Загрузка";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  display: block;
  z-index: 100;
}

html {
  height: 100%;
}

body {
  font-family: "Geometria", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: #94817A;
  height: auto;
  background-color: #F4EDE2;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.main {
  flex: 1 0 auto;
  overflow: hidden;
}
@media (max-width: 830px) {
  .main {
    padding-top: 84px;
  }
}

.footer {
  flex: 0 0 auto;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 600px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 830px) {
  .container {
    max-width: 790px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 944px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1680px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  background-color: transparent;
  border: none;
}

a {
  color: inherit;
  font: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}

ul,
ol {
  list-style-type: none;
}

svg {
  display: block;
}

.heading-primary {
  font-family: "Livret", sans-serif;
  font-weight: 400;
  color: #5F382A;
  font-size: 68px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .heading-primary {
    font-size: calc(48px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .heading-primary {
    font-size: calc(32px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .heading-primary {
    font-size: 32px;
  }
}

.heading-secondary {
  font-weight: 400;
  font-size: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .heading-secondary {
    font-size: calc(28px + 12 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .heading-secondary {
    font-size: calc(18px + 10 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .heading-secondary {
    font-size: 18px;
  }
}

.section {
  padding-top: 140px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .section {
    padding-top: calc(90px + 50 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .section {
    padding-top: calc(55px + 35 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .section {
    padding-top: 55px;
  }
}

.underline {
  position: relative;
}
.underline:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #5F382A;
}

.button {
  display: block;
  width: 100%;
  padding: 16px 4px;
  color: #5F382A;
  border: 2px solid #5F382A;
  border-radius: 8px;
  text-align: center;
  text-transform: none;
  font-size: 26px;
  line-height: 1;
  transition: all 0.3s;
}

.user-menu__list, .menu__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-menu__list {
  gap: 28px;
}
@media (max-width: 1920px) {
  .user-menu__list {
    gap: calc(20px + 8 * (100vw - 390px) / 1530);
  }
}
.user-menu__list svg {
  display: block;
}

.user-menu__item {
  cursor: pointer;
}

.user-menu__link {
  display: block;
}

.user-menu__item_cart {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #5F382A;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.menu__list {
  gap: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .menu__list {
    gap: calc(36px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .menu__list {
    gap: calc(20px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .menu__list {
    gap: 20px;
  }
}
.menu__item {
  position: relative;
}
.menu__link {
  text-wrap: nowrap;
}

@media (max-width: 830px) {
  .menu {
    display: none;
  }
  .user-menu__item-favorites {
    display: none;
  }
}
@media (max-width: 600px) {
  .user-menu__item svg {
    width: 20px;
    height: 20px;
  }
}
.city-popup__layout {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.city-popup__layout_active {
  pointer-events: auto;
  opacity: 1;
  transition: all 0.3s;
  z-index: 10000;
}
.city-popup__layout_active .city-popup__content {
  transform: translateY(-20px);
  transition: all 0.3s;
}
.city-popup__layout_inactive {
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
.city-popup__layout_inactive .city-popup__content {
  transform: translateY(20px);
  transition: all 0.3s;
}
.city-popup__content {
  background-color: #F4EDE2;
  max-width: 584px;
  padding: 28px;
  width: 100%;
  border: 12px;
  border-radius: 8px;
}
@media (max-width: 830px) {
  .city-popup__content {
    margin: 0 24px;
  }
}
.city-popup__title {
  font-size: 44px;
  margin-bottom: 28px;
  font-weight: 300;
  text-align: center;
  font-family: "Livret", sans-serif;
  color: #5F382A;
}
@media (max-width: 830px) {
  .city-popup__title {
    font-size: 32px;
  }
}
.city-popup__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.city-popup__item {
  text-align: center;
}
.city-popup__btn {
  text-transform: capitalize;
  margin: 0 auto;
  max-width: 390px;
}
@media (max-width: 830px) {
  .city-popup__btn {
    font-size: 18px;
  }
}
.city-popup__btn_current {
  color: #F4EDE2;
  background-color: #5F382A;
}

.menu__item-catalog:hover .menu__link-catalog svg {
  transform: rotate(180deg);
}
.menu__item-catalog:hover .menu__dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu__link-catalog {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.menu__link-catalog svg {
  transition: all 0.3s;
}
.menu__dropdown-list {
  position: absolute;
  top: 40px;
  left: 0;
  background-color: #5F382A;
  color: #F4EDE2;
  padding: 30px;
  font-weight: 500;
  z-index: 100;
  border-radius: 16px;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.16);
  max-width: 242px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
}
.menu__dropdown-list svg {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.menu__dropdown-list:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 50%;
  height: 24px;
}
.menu__dropdown-list {
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .menu__dropdown-list {
    font-size: calc(16px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .menu__dropdown-list {
    font-size: calc(16px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .menu__dropdown-list {
    font-size: 16px;
  }
}

.catalog-mobile {
  margin: 12px 0;
  display: none;
}
@media (max-width: 600px) {
  .catalog-mobile {
    display: block;
  }
}
.catalog-mobile__btn {
  width: 100%;
  padding: 8px 16px;
  font-size: 16px;
  background-color: #5F382A;
  color: #F4EDE2;
  border-radius: 6px;
}
.catalog-mobile__list {
  display: none;
}
.woofc-show {
  overflow: hidden;
}

.woofc-item.woofc-item-has-remove:hover .woofc-item-inner {
  transform: translate3d(0, 0, 0) !important;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item.woofc-item-has-remove .woofc-item-inner {
  padding: 10px 40px 10px 10px !important;
  background-color: #F4EDE2;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-action .woofc-action-inner > div a {
  text-transform: none;
}

.woofc-area.woofc-style-01 .woofc-area-top {
  font-weight: 500;
  color: #F4EDE2;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-qty .woofc-item-qty-inner input {
  background-color: rgba(148, 129, 122, 0.3);
  color: #5F382A;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-qty .woofc-item-qty-inner .woofc-item-qty-plus, .woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-qty .woofc-item-qty-inner .woofc-item-qty-minus, .woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-qty .woofc-item-qty-inner .woofc-item-qty-individual {
  background-color: rgba(148, 129, 122, 0.3);
  color: #5F382A;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-title {
  font-family: "Geometria", sans-serif;
  font-weight: 500;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-link span {
  color: #F4EDE2;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-data, .woofc-area.woofc-style-01 .woofc-area-bot .woofc-total {
  color: #F4EDE2;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-continue span {
  color: #F4EDE2;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-info .woofc-item-title a {
  color: #5F382A;
}

.woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-remove, .woofc-area.woofc-style-01 .woofc-area-mid .woofc-item .woofc-item-inner .woofc-item-special {
  opacity: 1;
  visibility: visible;
  color: #5F382A;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%) !important;
}

.woofc-menu-item.menu-item-type-woofc a {
  font-size: 24px;
  font-weight: 400;
}

.woofc-menu-item .woofc-menu-item-inner:after {
  font-size: 14px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
}

.input-text.woofc-qty.qty {
  font-size: 14px !important;
}

.woofc-item-qty .woofc-item-qty-inner .woofc-item-qty-plus {
  font-size: 16px !important;
}

.woofc-action-left,
.woofc-area.woofc-style-01 .woofc-area-bot .woofc-link,
.woofc-item-qty .woofc-item-qty-inner .woofc-item-qty-minus,
.woofc-area.woofc-style-01 .woofc-area-bot .woofc-data {
  display: none;
}

.woofc-area.woofc-style-01 .woofc-area-bot .woofc-action .woofc-action-inner > div {
  width: 100%;
}

.swiper-category .swiper-navigation-hidden {
  display: none;
}
.swiper-category .swiper-button-prev,
.swiper-category .swiper-button-next {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}
.swiper-category .swiper-button-prev svg,
.swiper-category .swiper-button-next svg {
  height: 24px;
}
@media (max-width: 1024px) {
  .swiper-category .swiper-button-prev,
  .swiper-category .swiper-button-next {
    display: none;
  }
}
.swiper-category .swiper-button-prev {
  transition: all 0.3s;
}
.swiper-category .swiper-button-next {
  transition: all 0.3s;
}
.swiper-category__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .swiper-category__top {
    margin-bottom: calc(24px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .swiper-category__top {
    margin-bottom: calc(12px + 12 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .swiper-category__top {
    margin-bottom: 12px;
  }
}
.swiper-category__buttons-wrapper {
  display: flex;
  position: relative;
  width: 105px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 1024px) {
  .swiper-category__buttons-wrapper {
    display: none;
  }
}
.swiper-category__title {
  position: relative;
}
.swiper-category .swiper-slide {
  height: auto;
  transition: opacity 0.3s;
}

.swiper-category__more-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 350px;
  width: 100%;
  margin-left: auto;
  margin-top: 48px;
  font-weight: 400;
  font-size: 26px;
  line-height: 120%;
  color: #94817A;
}
.swiper-category__more-link:hover {
  color: #5F382A;
}
.swiper-category__more-link:hover svg path {
  fill: #5F382A;
}
@media (max-width: 1024px) {
  .swiper-category__more-link {
    display: none;
  }
}

.swiper-product {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .swiper-product {
    gap: calc(16px + 8 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .swiper-product {
    gap: calc(16px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .swiper-product {
    gap: 16px;
  }
}
.swiper-product {
  height: 100%;
}
@media (max-width: 767px) {
  .swiper-product {
    gap: 16px;
  }
}
.swiper-product__img-wrapper {
  width: 100%;
  aspect-ratio: 389/290;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1439px) {
  .swiper-product__img-wrapper {
    aspect-ratio: 224/167;
  }
}
@media (max-width: 599px) {
  .swiper-product__img-wrapper {
    aspect-ratio: 164/122;
  }
}
.swiper-product__img-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-product__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.swiper-product__allergens {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.swiper-product__allergens img {
  aspect-ratio: 1;
  min-width: 28px;
  width: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1439px) {
  .swiper-product__allergens img {
    min-width: 24px;
    width: 24px;
  }
}
@media (max-width: 1023px) {
  .swiper-product__allergens img {
    min-width: 18px;
    width: 18px;
  }
}
.swiper-product__title {
  color: #5F382A;
  font-weight: 400;
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .swiper-product__title {
    font-size: calc(22px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .swiper-product__title {
    font-size: calc(16px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .swiper-product__title {
    font-size: 16px;
  }
}
.swiper-product__title {
  line-height: 120%;
}
@media (max-width: 1439px) {
  .swiper-product__title {
    line-height: 1;
  }
}
@media (max-width: 599px) {
  .swiper-product__title {
    line-height: 120%;
  }
}
.swiper-product__description {
  font-weight: 400;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .swiper-product__description {
    font-size: calc(16px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .swiper-product__description {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .swiper-product__description {
    font-size: 12px;
  }
}
.swiper-product__description {
  line-height: 120%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.swiper-product__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.swiper-product__atributes {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: 22px;
  line-height: 120%;
}
@media (max-width: 1439px) {
  .swiper-product__atributes {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .swiper-product__atributes {
    font-size: 12px;
  }
}
.swiper-product__left {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 8px;
}
.swiper-product__price {
  color: #5F382A;
  font-size: 32px;
  line-height: 120%;
}
@media (max-width: 1439px) {
  .swiper-product__price {
    font-size: 24px;
  }
}
@media (max-width: 1023px) {
  .swiper-product__price {
    font-size: 16px;
  }
}
.swiper-product__button {
  width: 100%;
  color: #5F382A;
  border: 2px solid #5F382A;
  line-height: 1;
  font-size: 26px;
  padding: 14px 4px;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 1439px) {
  .swiper-product__button {
    border: 1px solid #5F382A;
    font-size: 22px;
    padding: 12px 4px;
  }
}
@media (max-width: 1023px) {
  .swiper-product__button {
    font-size: 12px;
    padding: 11px 4px;
  }
}
.swiper-product__button:hover {
  background-color: #5F382A;
  color: #F4EDE2;
}
.swiper-product__button:hover ~ * .swiper-product__img-wrapper img, .swiper-product__button:hover ~ .swiper-product__img-wrapper img {
  transform: scale(1.1);
}
.swiper-product:has(.swiper-product__button:hover) .swiper-product__img-wrapper img {
  transform: scale(1.1);
}

.product .swiper-category {
  border-top: 1px solid #94817A;
  margin-top: 100px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .product .swiper-category {
    margin-top: calc(56px + 44 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .product .swiper-category {
    margin-top: calc(56px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .product .swiper-category {
    margin-top: 56px;
  }
}
.product .swiper-category {
  padding-top: 80px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .product .swiper-category {
    padding-top: calc(48px + 32 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .product .swiper-category {
    padding-top: calc(24px + 24 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .product .swiper-category {
    padding-top: 24px;
  }
}
.product .swiper-category .swiper-product__description {
  display: none;
}

.product-gallery {
  height: 100%;
  width: 667px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .product-gallery {
    width: calc(384px + 283 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .product-gallery {
    width: calc(335px + 49 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .product-gallery {
    width: 335px;
  }
}
@media (max-width: 768px) {
  .product-gallery {
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .product-gallery {
    display: none;
  }
}
.product-gallery__main-image {
  position: relative;
  height: 748px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .product-gallery__main-image {
    height: calc(430px + 318 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .product-gallery__main-image {
    height: calc(376px + 54 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .product-gallery__main-image {
    height: 376px;
  }
}
.product-gallery__image-wrapper {
  width: 100%;
  height: 100%;
}
.product-gallery__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery__tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 128px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .product-gallery__tabs {
    height: calc(74px + 54 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .product-gallery__tabs {
    height: calc(74px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .product-gallery__tabs {
    height: 74px;
  }
}
.product-gallery__tabs {
  gap: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .product-gallery__tabs {
    gap: calc(16px + 12 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .product-gallery__tabs {
    gap: calc(6px + 10 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .product-gallery__tabs {
    gap: 6px;
  }
}
.product-gallery__tabs {
  margin-top: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .product-gallery__tabs {
    margin-top: calc(24px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .product-gallery__tabs {
    margin-top: calc(8px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .product-gallery__tabs {
    margin-top: 8px;
  }
}
.product-gallery__tab_active {
  outline: 3px solid red;
}
.product-gallery__tab-image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.product-gallery-mobile-wrapper {
  display: none;
}
@media (max-width: 600px) {
  .product-gallery-mobile-wrapper {
    display: block;
    position: relative;
  }
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt {
  width: auto;
  height: auto;
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt img {
  max-width: 40px !important;
  max-height: 40px !important;
}
@media (max-width: 1440px) {
  .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt img {
    max-width: 35px !important;
    max-height: 35px !important;
  }
}
@media (max-width: 1024px) {
  .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt img {
    max-width: 30px !important;
    max-height: 30px !important;
  }
}

.tinv-wraper.tinv-wishlist {
  font-size: 100%;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.product-gallery-mobile-wrapper > .tinv-wraper.tinv-wishlist {
  display: none;
}
@media (max-width: 600px) {
  .product-gallery-mobile-wrapper > .tinv-wraper.tinv-wishlist {
    display: block;
  }
}

.product-gallery__main-image > .tinv-wraper.tinv-wishlist {
  display: block;
}
@media (max-width: 600px) {
  .product-gallery__main-image > .tinv-wraper.tinv-wishlist {
    display: none;
  }
}

.show {
  display: block;
}

.hide {
  display: none;
}

.product-gallery.product-gallery-mobile {
  padding-bottom: 32px !important;
  display: none;
}
@media (max-width: 600px) {
  .product-gallery.product-gallery-mobile {
    display: block;
  }
}
.product-gallery.product-gallery-mobile .swiper-slide {
  height: auto;
}
.product-gallery.product-gallery-mobile .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery.product-gallery-mobile .swiper-horizontal > .swiper-pagination-bullets,
.product-gallery.product-gallery-mobile .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 3px;
}
@media (max-width: 1920px) {
  .product-gallery.product-gallery-mobile .swiper-horizontal > .swiper-pagination-bullets,
  .product-gallery.product-gallery-mobile .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: calc(10px + -7 * (100vw - 390px) / 1530);
  }
}
.product-gallery.product-gallery-mobile .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.product-gallery.product-gallery-mobile .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #94817A;
}
.product-gallery.product-gallery-mobile .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.product-gallery.product-gallery-mobile .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #5F382A;
}
.product-gallery.product-gallery-mobile .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.product-gallery.product-gallery-mobile .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.product-gallery.product-gallery-mobile .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.product-gallery.product-gallery-mobile .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(1);
}

.woocommerce-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-breadcrumb {
    font-size: calc(18px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-breadcrumb {
    font-size: calc(14px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-breadcrumb {
    font-size: 14px;
  }
}
.woocommerce-breadcrumb {
  margin-top: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-breadcrumb {
    margin-top: calc(24px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-breadcrumb {
    margin-top: calc(18px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-breadcrumb {
    margin-top: 18px;
  }
}
.woocommerce-breadcrumb {
  margin-bottom: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-breadcrumb {
    margin-bottom: calc(24px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-breadcrumb {
    margin-bottom: calc(18px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-breadcrumb {
    margin-bottom: 18px;
  }
}
.woocommerce-breadcrumb {
  gap: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-breadcrumb {
    gap: calc(12px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-breadcrumb {
    gap: calc(8px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-breadcrumb {
    gap: 8px;
  }
}
.woocommerce-breadcrumb svg {
  transform: translateY(2px);
}

.custom-newsletter {
  margin: 0 auto;
  margin-bottom: 140px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter {
    margin-bottom: calc(100px + 40 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter {
    margin-bottom: calc(56px + 44 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter {
    margin-bottom: 56px;
  }
}
.custom-newsletter {
  max-width: 806px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter {
    max-width: calc(464px + 342 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter {
    max-width: calc(335px + 129 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter {
    max-width: 335px;
  }
}
.custom-newsletter__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter__top {
    gap: calc(40px + 40 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter__top {
    gap: calc(24px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter__top {
    gap: 24px;
  }
}
.custom-newsletter__top {
  margin-bottom: 80px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter__top {
    margin-bottom: calc(32px + 48 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter__top {
    margin-bottom: calc(24px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter__top {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .custom-newsletter__top {
    flex-direction: column;
  }
}
.custom-newsletter__top svg {
  flex-shrink: 0;
  width: 110px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter__top svg {
    width: calc(64px + 46 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter__top svg {
    width: calc(42px + 22 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter__top svg {
    width: 42px;
  }
}
.custom-newsletter__top svg {
  height: 138px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter__top svg {
    height: calc(78px + 60 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter__top svg {
    height: calc(54px + 24 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter__top svg {
    height: 54px;
  }
}
.custom-newsletter__title {
  font-family: "Livret", sans-serif;
  color: #5F382A;
  font-weight: 400;
  font-size: 44px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter__title {
    font-size: calc(26px + 18 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter__title {
    font-size: calc(24px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter__title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .custom-newsletter__title {
    text-align: center;
  }
}
.custom-newsletter__form-wrapper div.tnp-subscription {
  margin: 0;
  max-width: none;
}
.custom-newsletter__form-wrapper form {
  position: relative;
  display: flex;
  align-items: end;
  border-bottom: 1px solid #94817A;
}
.custom-newsletter__form-wrapper .tnp-subscription .tnp-field.tnp-field-email {
  width: 100%;
  margin-bottom: 8px;
}
.custom-newsletter__form-wrapper .tnp-subscription label {
  position: absolute;
  margin: 0;
  top: 6px;
  transition: all 0.3s;
  font-weight: 300;
  cursor: text;
  font-size: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter__form-wrapper .tnp-subscription label {
    font-size: calc(20px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter__form-wrapper .tnp-subscription label {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter__form-wrapper .tnp-subscription label {
    font-size: 16px;
  }
}
.custom-newsletter__form-wrapper .tnp-subscription label.active-label {
  transition: all 0.3s;
  cursor: context-menu;
  font-size: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter__form-wrapper .tnp-subscription label.active-label {
    font-size: calc(12px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter__form-wrapper .tnp-subscription label.active-label {
    font-size: calc(8px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter__form-wrapper .tnp-subscription label.active-label {
    font-size: 8px;
  }
}
.custom-newsletter__form-wrapper .tnp-subscription label.active-label {
  top: -16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter__form-wrapper .tnp-subscription label.active-label {
    top: calc(-12px + -4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter__form-wrapper .tnp-subscription label.active-label {
    top: calc(-8px + -4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter__form-wrapper .tnp-subscription label.active-label {
    top: -8px;
  }
}
.custom-newsletter__form-wrapper .tnp-subscription input[type=email] {
  background: transparent;
  padding: 0;
  margin: 0;
  color: #94817A;
  font-size: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter__form-wrapper .tnp-subscription input[type=email] {
    font-size: calc(20px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter__form-wrapper .tnp-subscription input[type=email] {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter__form-wrapper .tnp-subscription input[type=email] {
    font-size: 16px;
  }
}
.custom-newsletter__form-wrapper .tnp-subscription input[type=email]:focus {
  outline: none;
}
.custom-newsletter__form-wrapper .tnp-subscription input[type=submit] {
  padding: 8px 0 8px 8px;
  color: #5F382A;
  cursor: pointer;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-newsletter__form-wrapper .tnp-subscription input[type=submit] {
    font-size: calc(16px + 8 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-newsletter__form-wrapper .tnp-subscription input[type=submit] {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-newsletter__form-wrapper .tnp-subscription input[type=submit] {
    font-size: 12px;
  }
}
.custom-newsletter__form-wrapper .tnp-subscription div.tnp-field {
  margin-bottom: 0;
}

.cwginstock-subscribe-form {
  width: 389px;
  max-width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .cwginstock-subscribe-form {
    margin-bottom: calc(20px + 12 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .cwginstock-subscribe-form {
    margin-bottom: calc(20px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .cwginstock-subscribe-form {
    margin-bottom: 20px;
  }
}
.cwginstock-subscribe-form * {
  margin: 0 !important;
  padding: 0 !important;
  float: unset !important;
}
.cwginstock-subscribe-form .panel-heading.cwginstock-panel-heading {
  display: none;
}
.cwginstock-subscribe-form .row:after, .cwginstock-subscribe-form .row:before {
  display: none !important;
}
.cwginstock-subscribe-form .panel {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: unset !important;
}
.cwginstock-subscribe-form .form-group {
  margin-bottom: 20px !important;
}
.cwginstock-subscribe-form .cwgstock_email {
  padding: 8px 8px 8px 0 !important;
  text-align: left !important;
  border-bottom: 1px solid #5F382A;
  outline: none;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .cwginstock-subscribe-form .cwgstock_email {
    font-size: calc(20px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .cwginstock-subscribe-form .cwgstock_email {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .cwginstock-subscribe-form .cwgstock_email {
    font-size: 16px;
  }
}
.cwginstock-subscribe-form .cwgstock_email {
  font-weight: 300;
  color: #5F382A;
}
.cwginstock-subscribe-form .cwgstock_email::-moz-placeholder {
  font-size: 22px;
}
.cwginstock-subscribe-form .cwgstock_email::placeholder {
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .cwginstock-subscribe-form .cwgstock_email::-moz-placeholder {
    font-size: calc(20px + 2 * (100vw - 1024px) / (896));
  }
  .cwginstock-subscribe-form .cwgstock_email::placeholder {
    font-size: calc(20px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .cwginstock-subscribe-form .cwgstock_email::-moz-placeholder {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
  .cwginstock-subscribe-form .cwgstock_email::placeholder {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .cwginstock-subscribe-form .cwgstock_email::-moz-placeholder {
    font-size: 16px;
  }
  .cwginstock-subscribe-form .cwgstock_email::placeholder {
    font-size: 16px;
  }
}
.cwginstock-subscribe-form .cwgstock_email::-moz-placeholder {
  font-weight: 300;
  color: #5F382A;
}
.cwginstock-subscribe-form .cwgstock_email::placeholder {
  font-weight: 300;
  color: #5F382A;
}
.cwginstock-subscribe-form .cwgstock_button {
  background-color: #5F382A;
  padding: 16px !important;
  display: block;
  border-radius: 6px;
  color: #F4EDE2;
  width: 100%;
  max-width: 389px;
  text-transform: lowercase;
  cursor: pointer;
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .cwginstock-subscribe-form .cwgstock_button {
    font-size: calc(20px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .cwginstock-subscribe-form .cwgstock_button {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .cwginstock-subscribe-form .cwgstock_button {
    font-size: 16px;
  }
}
.cwginstock-subscribe-form .cwgstock_button {
  margin-bottom: 36px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .cwginstock-subscribe-form .cwgstock_button {
    margin-bottom: calc(32px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .cwginstock-subscribe-form .cwgstock_button {
    margin-bottom: calc(16px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .cwginstock-subscribe-form .cwgstock_button {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .cwginstock-subscribe-form .cwgstock_button {
    padding: 10px !important;
  }
}
.cwginstock-subscribe-form .blockUI.blockOverlay {
  display: none !important;
}

.clear-filters {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 56px auto 0;
  font-size: 26px;
  line-height: 120%;
  text-decoration: underline;
  cursor: pointer;
  text-underline-position: under;
}
@media (max-width: 1439px) {
  .clear-filters {
    margin-top: 20px;
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .clear-filters {
    margin-top: 0;
  }
}
.clear-filters:hover {
  text-decoration: none;
}

.filters--title {
  margin-top: 56px;
  margin-bottom: 40px;
}
@media (max-width: 1439px) {
  .filters--title {
    margin-top: 15px;
    margin-bottom: 24px;
  }
}

.filter--with-border, .product-shop-wrapper .berocket_single_filter_widget_421,
.product-shop-wrapper .berocket_single_filter_widget_422,
.product-shop-wrapper .berocket_single_filter_widget_406,
.product-shop-wrapper .berocket_single_filter_widget_404 {
  padding-bottom: 23px;
  border-bottom: 1px solid #F4EDE2 !important;
}
@media (max-width: 1439px) {
  .filter--with-border, .product-shop-wrapper .berocket_single_filter_widget_421,
  .product-shop-wrapper .berocket_single_filter_widget_422,
  .product-shop-wrapper .berocket_single_filter_widget_406,
  .product-shop-wrapper .berocket_single_filter_widget_404 {
    padding-bottom: 11px;
  }
}
@media (max-width: 1023px) {
  .filter--with-border, .product-shop-wrapper .berocket_single_filter_widget_421,
  .product-shop-wrapper .berocket_single_filter_widget_422,
  .product-shop-wrapper .berocket_single_filter_widget_406,
  .product-shop-wrapper .berocket_single_filter_widget_404 {
    border-color: #5F382A !important;
  }
}
.filter__title, .product-shop-wrapper h2.wp-block-heading {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.filter__title::before, .product-shop-wrapper h2.wp-block-heading::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.868164 2.66829C0.868164 1.67417 1.67405 0.868286 2.66816 0.868286H6.26816C7.26228 0.868286 8.06816 1.67417 8.06816 2.66829V6.26829C8.06816 7.2624 7.26228 8.06829 6.26816 8.06829H2.66816C1.67405 8.06829 0.868164 7.2624 0.868164 6.26829V2.66829Z' stroke='%23F4EDE2' stroke-width='1.73661' stroke-linejoin='round'/%3E%3Cpath d='M11.6682 2.66829C11.6682 1.67417 12.4741 0.868286 13.4682 0.868286H17.0682C18.0623 0.868286 18.8682 1.67417 18.8682 2.66829V6.26829C18.8682 7.2624 18.0623 8.06829 17.0682 8.06829H13.4682C12.4741 8.06829 11.6682 7.2624 11.6682 6.26829V2.66829Z' stroke='%23F4EDE2' stroke-width='1.73661' stroke-linejoin='round'/%3E%3Cpath d='M0.868164 13.4683C0.868164 12.4742 1.67405 11.6683 2.66816 11.6683H6.26816C7.26228 11.6683 8.06816 12.4742 8.06816 13.4683V17.0683C8.06816 18.0624 7.26228 18.8683 6.26816 18.8683H2.66816C1.67405 18.8683 0.868164 18.0624 0.868164 17.0683V13.4683Z' stroke='%23F4EDE2' stroke-width='1.73661' stroke-linejoin='round'/%3E%3Cpath d='M11.6682 13.4683C11.6682 12.4742 12.4741 11.6683 13.4682 11.6683H17.0682C18.0623 11.6683 18.8682 12.4742 18.8682 13.4683V17.0683C18.8682 18.0624 18.0623 18.8683 17.0682 18.8683H13.4682C12.4741 18.8683 11.6682 18.0624 11.6682 17.0683V13.4683Z' stroke='%23F4EDE2' stroke-width='1.73661' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  min-width: 18px;
  width: 18px;
  height: 18px;
}
.filter__title::after, .product-shop-wrapper h2.wp-block-heading::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #fff;
}
.filter__subtitle, .product-shop-wrapper .bapf_head h3 {
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 400;
}
@media (max-width: 1439px) {
  .filter__subtitle, .product-shop-wrapper .bapf_head h3 {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .filter__subtitle, .product-shop-wrapper .bapf_head h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.filter-row--checkboxes {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.filter__categories, .product-shop-wrapper [data-taxonomy=product_cat] .bapf_body > ul {
  margin-top: 40px !important;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
}
@media (max-width: 1439px) {
  .filter__categories, .product-shop-wrapper [data-taxonomy=product_cat] .bapf_body > ul {
    font-size: 18px;
    margin-top: 24px;
  }
}
.filter-category--active, .product-shop-wrapper .bapf_hideckbox li input:checked + label,
.product-shop-wrapper .bapf_hideckbox li input:checked + label a {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.filter-category--active::before, .product-shop-wrapper .bapf_hideckbox li input:checked + label::before,
.product-shop-wrapper .bapf_hideckbox li input:checked + label a::before {
  content: "";
  min-width: 8px;
  width: 8px;
  height: 8px;
  background: #F4EDE2;
  border-radius: 50%;
}
.filter-item, .product-shop-wrapper .berocket_single_filter_widget .bapf-clean-rounded li label {
  border: 1px solid #F4EDE2;
  padding: 7px 9px;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  border-radius: 6px;
  opacity: 0.4;
}
@media (max-width: 1439px) {
  .filter-item, .product-shop-wrapper .berocket_single_filter_widget .bapf-clean-rounded li label {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .filter-item, .product-shop-wrapper .berocket_single_filter_widget .bapf-clean-rounded li label {
    border-color: #5F382A;
  }
}
.filter-item--active, .product-shop-wrapper .berocket_single_filter_widget .bapf-clean-rounded li.checked label {
  opacity: 1;
}
.filter-item--with-checkbox, .product-shop-wrapper [data-taxonomy=pa_alergeny] li label {
  opacity: 1 !important;
  padding: 0 !important;
  border: none !important;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
@media (max-width: 1439px) {
  .filter-item--with-checkbox, .product-shop-wrapper [data-taxonomy=pa_alergeny] li label {
    gap: 8px;
  }
}
.filter-item--with-checkbox::before, .product-shop-wrapper [data-taxonomy=pa_alergeny] li label::before {
  display: block;
  content: "";
  min-width: 30px;
  width: 30px;
  height: 30px;
  border: 2px solid #F4EDE2;
  border-radius: 6px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}
@media (max-width: 1439px) {
  .filter-item--with-checkbox::before, .product-shop-wrapper [data-taxonomy=pa_alergeny] li label::before {
    min-width: 24px;
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 1023px) {
  .filter-item--with-checkbox::before, .product-shop-wrapper [data-taxonomy=pa_alergeny] li label::before {
    border-color: #5F382A;
  }
}
.filter-item--with-checkbox--active::before, .product-shop-wrapper [data-taxonomy=pa_alergeny] li input:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.61538L5.9 11L15 1' stroke='%23F4EDE2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
@media (max-width: 1023px) {
  .filter-item--with-checkbox--active::before, .product-shop-wrapper [data-taxonomy=pa_alergeny] li input:checked + label::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.75 4.44231L4.67 8.75L11.95 0.75' stroke='%235F382A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
}
.filter-price__row, .product-shop-wrapper .bapf_slidr_all {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 30px;
}
@media (max-width: 1023px) {
  .filter-price__row, .product-shop-wrapper .bapf_slidr_all {
    justify-content: flex-start;
  }
}
.filter-price__row > *, .product-shop-wrapper .bapf_slidr_all > * {
  margin: 0;
}
.filter-price__item, .product-shop-wrapper .bapf_slidr_jqrui .bapf_from,
.product-shop-wrapper .bapf_slidr_jqrui .bapf_to {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 140px;
  font-size: 24px;
  line-height: 120%;
  padding: 0 5px;
  text-align: center;
  color: inherit;
  border: 1px solid #F4EDE2;
  border-radius: 6px;
  height: 52px;
  overflow: hidden;
}
@media (max-width: 1439px) {
  .filter-price__item, .product-shop-wrapper .bapf_slidr_jqrui .bapf_from,
  .product-shop-wrapper .bapf_slidr_jqrui .bapf_to {
    max-width: 80px;
    font-size: 18px;
    height: 40px;
  }
}
@media (max-width: 1023px) {
  .filter-price__item, .product-shop-wrapper .bapf_slidr_jqrui .bapf_from,
  .product-shop-wrapper .bapf_slidr_jqrui .bapf_to {
    border-color: #5F382A;
    max-width: 50%;
    width: -moz-max-content;
    width: max-content;
  }
}
.filter-price__arrow, .product-shop-wrapper .bapf_slidr_all::before {
  height: 52px;
  width: 52px;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30.333 36.8334L20.4097 25.9983L30.333 15.1667' stroke='%23F4EDE2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1439px) {
  .filter-price__arrow, .product-shop-wrapper .bapf_slidr_all::before {
    width: calc(100% - 80px - 80px);
  }
}
@media (max-width: 1023px) {
  .filter-price__arrow, .product-shop-wrapper .bapf_slidr_all::before {
    width: 36px;
    height: 36px;
    left: 74px;
    background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 25.0502L15 18.4989L21 11.9498' stroke='%235F382A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
}

.category-sidebar {
  background-color: #5F382A;
  color: #F4EDE2;
  padding: 28px 28px 80px;
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  grid-column: 1/2;
  grid-row: 1/3;
  gap: 24px;
}
@media (max-width: 1439px) {
  .category-sidebar {
    padding: 32px 16px 29px;
    grid-row: 1/span 2;
  }
}
@media (max-width: 1023px) {
  .category-sidebar {
    display: none;
  }
}

.product-shop-wrapper .bapf_slidr_main.ui-widget-content {
  background: rgba(120, 120, 128, 0.2);
}
.product-shop-wrapper .bapf_slidr_main.ui-widget-content .ui-slider-handle,
.product-shop-wrapper .bapf_slidr_main.ui-widget-content .ui-slider-range {
  background: #F4EDE2;
}
@media (max-width: 1023px) {
  .product-shop-wrapper .bapf_slidr_main.ui-widget-content .ui-slider-handle,
  .product-shop-wrapper .bapf_slidr_main.ui-widget-content .ui-slider-range {
    background: #5F382A;
  }
}
.product-shop-wrapper .bapf_slidr_all {
  position: relative;
}
.product-shop-wrapper .bapf_slidr_all::before {
  content: "";
  order: 2;
}
.product-shop-wrapper .bapf_slidr_jqrui .bapf_from {
  order: 1;
}
.product-shop-wrapper .bapf_slidr_jqrui .bapf_to {
  order: 3;
}
.product-shop-wrapper .bapf_slidr_main {
  width: 100%;
  order: 4;
}
.product-shop-wrapper .berocket_single_filter_widget .bapf-clean-rounded li label {
  opacity: 1;
}
.product-shop-wrapper .berocket_single_filter_widget .bapf-clean-rounded li label,
.product-shop-wrapper .bapf_hideckbox li input:checked + label,
.product-shop-wrapper .bapf_hideckbox li input:checked + label a,
.product-shop-wrapper .bapf_hideckbox li label,
.product-shop-wrapper .bapf_hideckbox li label a {
  color: inherit;
}
.product-shop-wrapper .berocket_single_filter_widget .bapf-clean-rounded li.checked label {
  background-color: #F4EDE2;
  color: #5F382A;
}
@media (max-width: 1023px) {
  .product-shop-wrapper .berocket_single_filter_widget .bapf-clean-rounded li.checked label {
    background-color: #5F382A;
    color: #F4EDE2;
  }
}
.product-shop-wrapper [data-taxonomy=pa_alergeny] .bapf_head,
.product-shop-wrapper [data-taxonomy=pa_alergeny] li input,
.product-shop-wrapper [data-taxonomy=pa_alergeny] li:not(:has(input[value=without-allergen])),
.product-shop-wrapper .berocket_single_filter_widget .bapf-clean-rounded li.checked label:before,
.product-shop-wrapper [data-taxonomy=product_cat] .bapf_head {
  display: none !important;
}
.product-shop-wrapper .bapf_sfilter {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .product-shop-wrapper h2.wp-block-heading {
    display: none !important;
  }
}
.product-shop-wrapper .bapf_wid_ {
  margin-top: 24px;
}
@media (max-width: 1023px) {
  .product-shop-wrapper .bapf_wid_ {
    margin-top: 0;
  }
}
.product-shop-wrapper .wp-block-group .bapf_wid_ {
  margin-top: 0;
}
.product-shop-wrapper .bapf_hideckbox li label {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.product-shop-wrapper .bapf_hideckbox li label::before {
  content: "";
  min-width: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
}
.product-shop-wrapper .bapf_hideckbox li input:checked + label::before {
  background: #F4EDE2;
}

.popup-search {
  bottom: 100%;
  transition: bottom ease 0.4s;
  left: 0;
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
}
.popup-search.active {
  bottom: 0;
}
.popup-search__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.popup-search__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(38, 16, 9, 0.8);
  z-index: 1;
}
.popup-search__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.popup-search__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}
.popup-search__content {
  z-index: 2;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 1920px) {
  .popup-search__content {
    padding-top: calc(50px + 50 * (100vw - 390px) / 1530);
  }
}
.popup-search__content {
  padding-bottom: 40px;
}
@media (max-width: 1920px) {
  .popup-search__content {
    padding-bottom: calc(20px + 20 * (100vw - 390px) / 1530);
  }
}
.popup-search__content {
  padding-inline: calc(20px + 10 * (100vw - 390px) / 1530);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.popup-search__close {
  position: absolute;
  top: 40px;
  right: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.2s ease;
  z-index: 3;
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .popup-search__close {
    right: 20px;
    top: 20px;
  }
}
.popup-search__close:hover {
  opacity: 0.7;
  transform: rotate(90deg);
}
.popup-search__close:active {
  transform: rotate(90deg) scale(0.95);
}
.popup-search__close svg {
  display: block;
  width: 24px;
  height: 24px;
}
.popup-search__logo {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.popup-search__form, .popup-search__result {
  max-width: 1084px;
  margin-left: auto;
  margin-right: auto;
}
.popup-search__form {
  margin-top: 75px;
  width: 100%;
}
.popup-search__form input[type=search] {
  width: 100%;
  background: transparent;
  outline: none;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #fff;
  font-weight: 300;
  font-size: calc(24px + 4 * (100vw - 390px) / 1530);
  color: #F4EDE2;
  line-height: 120%;
  padding: 8px 0;
}
.popup-search__form input[type=search]:focus::-moz-placeholder, .popup-search__form input[type=search]::-moz-placeholder {
  font-weight: 100;
  color: inherit !important;
}
.popup-search__form input[type=search]:focus::placeholder, .popup-search__form input[type=search]::placeholder {
  font-weight: 100;
  color: inherit !important;
}
.popup-search__result {
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  flex: 1;
  min-height: 0;
  max-height: 615px;
  scrollbar-width: thin;
  scrollbar-color: rgba(244, 237, 226, 0.4) transparent;
}
.popup-search__result::-webkit-scrollbar {
  width: 4px;
}
.popup-search__result::-webkit-scrollbar-track {
  background: transparent;
}
.popup-search__result::-webkit-scrollbar-thumb {
  background-color: rgba(244, 237, 226, 0.4);
  border-radius: 4px;
}
.popup-search__result::-webkit-scrollbar-thumb:hover {
  background-color: rgba(244, 237, 226, 0.7);
}
.popup-search .label {
  max-width: 1640px;
  width: 100%;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  flex-shrink: 0;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .popup-search .label {
    height: 30%;
  }
}
.popup-search .label img {
  margin: 0 auto;
  height: 100%;
}

.mini-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mini-cards__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-card {
  display: grid;
  background: rgba(95, 56, 42, 0.5);
  color: #F4EDE2;
  padding-block: calc(20px + 4 * (100vw - 390px) / 1530);
  padding-inline: calc(15px + 5 * (100vw - 390px) / 1530);
  grid-template-columns: minmax(0, 158px) minmax(0, 1fr);
  gap: calc(16px + 8 * (100vw - 390px) / 1530);
  align-items: center;
}
@media screen and (max-width: 600px) {
  .mini-card {
    grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
  }
}
.mini-card__img {
  width: 100%;
  aspect-ratio: 158/118;
}
.mini-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mini-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}
.mini-card__title {
  font-size: calc(20px + 6 * (100vw - 390px) / 1530);
  line-height: 120%;
  font-weight: 400;
}
.mini-card__row, .mini-card__bottom {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}
.mini-card__attribute {
  color: #94817A;
}

.product-allergens {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .product-allergens {
    margin-top: 24px;
  }
}
.product-allergens__title {
  font-size: 32px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .product-allergens__title {
    font-size: calc(24px + 8 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .product-allergens__title {
    font-size: calc(20px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .product-allergens__title {
    font-size: 20px;
  }
}
.product-allergens__title {
  line-height: 120%;
}
@media (max-width: 600px) {
  .product-allergens__title {
    font-size: 16px;
  }
}
.product-allergens__row {
  margin-top: 12px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 600px) {
  .product-allergens__row {
    gap: 4px;
    margin-top: 7px;
  }
}
.product-allergens-item {
  min-width: 48px;
  width: 48px;
  aspect-ratio: 1;
}
@media (max-width: 600px) {
  .product-allergens-item {
    min-width: 24px;
    width: 24px;
  }
}
.product-allergens-item img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.filter-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.filter-popup.active {
  display: block;
}
.filter-popup__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  z-index: 1;
}
.filter-popup__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #F4EDE2;
  color: #5F382A;
  z-index: 2;
  padding: 15px 10px 20px;
  border-radius: 10px 10px 0 0;
}
.filter-popup__top {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.filter-popup__title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}
.filter-popup__close {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.filter-popup__content {
  overflow-y: auto;
  padding: 20px 10px 0;
  max-height: 475px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.filter-popup__content [data-taxonomy=product_cat],
.filter-popup__content .filters--title {
  display: none !important;
}

body .xoo-el-main {
  border-radius: 12px;
  padding-inline: 60px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body .xoo-el-main {
    padding-inline: calc(40px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body .xoo-el-main {
    padding-inline: calc(20px + 20 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body .xoo-el-main {
    padding-inline: 20px;
  }
}
body .xoo-el-main {
  padding-top: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body .xoo-el-main {
    padding-top: calc(24px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body .xoo-el-main {
    padding-top: calc(70px + -46 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body .xoo-el-main {
    padding-top: 70px;
  }
}

body .xoo-el-main:has(.xoo-el-form-container[data-active=lostpw]) {
  padding-bottom: 40px !important;
}

body .xoo-el-main:has(.xoo-el-form-container[data-active=login]) {
  padding-bottom: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body .xoo-el-main:has(.xoo-el-form-container[data-active=login]) {
    padding-bottom: calc(35px + 5 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body .xoo-el-main:has(.xoo-el-form-container[data-active=login]) {
    padding-bottom: calc(120px + -85 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body .xoo-el-main:has(.xoo-el-form-container[data-active=login]) {
    padding-bottom: 120px;
  }
}

body .xoo-el-main:has(.xoo-el-form-container[data-active=register]) {
  padding-bottom: 60px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body .xoo-el-main:has(.xoo-el-form-container[data-active=register]) {
    padding-bottom: calc(50px + 10 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body .xoo-el-main:has(.xoo-el-form-container[data-active=register]) {
    padding-bottom: calc(70px + -20 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body .xoo-el-main:has(.xoo-el-form-container[data-active=register]) {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 600px) {
  .xoo-el-container:not(.xoo-el-style-slider) .xoo-el-inmodal, .xoo-el-notice-inmodal {
    width: 99%;
  }
}

.xoo-el-fields-cont {
  gap: 8px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-el-fields-cont {
    gap: calc(10px + -2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-el-fields-cont {
    gap: calc(12px + -2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-el-fields-cont {
    gap: 12px;
  }
}
.xoo-el-fields-cont {
  margin-bottom: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-el-fields-cont {
    margin-bottom: calc(14px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-el-fields-cont {
    margin-bottom: calc(12px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-el-fields-cont {
    margin-bottom: 12px;
  }
}

.xoo-aff-input-icon + input[type=text], .xoo-aff-input-icon + input[type=password], .xoo-aff-input-icon + input[type=email], .xoo-aff-input-icon + input[type=number], .xoo-aff-input-icon + select, .xoo-aff-input-icon + select + .select2, .xoo-aff-input-icon + input[type=tel], .xoo-aff-input-icon + input[type=file] {
  border-radius: 6px;
  font-weight: 400;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-aff-input-icon + input[type=text], .xoo-aff-input-icon + input[type=password], .xoo-aff-input-icon + input[type=email], .xoo-aff-input-icon + input[type=number], .xoo-aff-input-icon + select, .xoo-aff-input-icon + select + .select2, .xoo-aff-input-icon + input[type=tel], .xoo-aff-input-icon + input[type=file] {
    font-size: calc(20px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-aff-input-icon + input[type=text], .xoo-aff-input-icon + input[type=password], .xoo-aff-input-icon + input[type=email], .xoo-aff-input-icon + input[type=number], .xoo-aff-input-icon + select, .xoo-aff-input-icon + select + .select2, .xoo-aff-input-icon + input[type=tel], .xoo-aff-input-icon + input[type=file] {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-aff-input-icon + input[type=text], .xoo-aff-input-icon + input[type=password], .xoo-aff-input-icon + input[type=email], .xoo-aff-input-icon + input[type=number], .xoo-aff-input-icon + select, .xoo-aff-input-icon + select + .select2, .xoo-aff-input-icon + input[type=tel], .xoo-aff-input-icon + input[type=file] {
    font-size: 16px;
  }
}
.xoo-aff-input-icon + input[type=text], .xoo-aff-input-icon + input[type=password], .xoo-aff-input-icon + input[type=email], .xoo-aff-input-icon + input[type=number], .xoo-aff-input-icon + select, .xoo-aff-input-icon + select + .select2, .xoo-aff-input-icon + input[type=tel], .xoo-aff-input-icon + input[type=file] {
  line-height: 120%;
}

.xoo-el-section {
  padding-left: 0;
}

.xoo-aff-group {
  width: 100%;
  margin-bottom: 0;
}

.xoo-aff-group label {
  font-weight: 400;
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-aff-group label {
    font-size: calc(20px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-aff-group label {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-aff-group label {
    font-size: 16px;
  }
}
.xoo-aff-group label {
  line-height: 120%;
}

.xoo-el-form-container button.btn.button.xoo-el-action-btn {
  font-weight: 400;
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-el-form-container button.btn.button.xoo-el-action-btn {
    font-size: calc(20px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-el-form-container button.btn.button.xoo-el-action-btn {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-el-form-container button.btn.button.xoo-el-action-btn {
    font-size: 16px;
  }
}
.xoo-el-form-container button.btn.button.xoo-el-action-btn {
  line-height: 100%;
  text-transform: none;
  width: 100%;
  height: 60px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-el-form-container button.btn.button.xoo-el-action-btn {
    height: calc(45px + 15 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-el-form-container button.btn.button.xoo-el-action-btn {
    height: calc(38px + 7 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-el-form-container button.btn.button.xoo-el-action-btn {
    height: 38px;
  }
}
.xoo-el-form-container button.btn.button.xoo-el-action-btn {
  margin: 0;
}

.xoo-el-form-container .xoo-aff-checkbox_single input[type=checkbox] {
  margin-right: 15px;
  margin-bottom: 5px;
}

.xoo-el-main a {
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-el-main a {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-el-main a {
    font-size: calc(14px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-el-main a {
    font-size: 14px;
  }
}
.xoo-el-main a {
  line-height: 100%;
  color: #94817A;
  text-decoration: underline;
}

.xoo-aff-group input[type=text], .xoo-aff-group input[type=password], .xoo-aff-group input[type=email], .xoo-aff-group input[type=number], .xoo-aff-group select, .xoo-aff-group select + .select2, .xoo-aff-group input[type=tel], .xoo-aff-group input[type=file] {
  color: #94817A;
  height: auto !important;
  line-height: 120% !important;
  padding-inline: 12px;
  padding-block: 12px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-aff-group input[type=text], .xoo-aff-group input[type=password], .xoo-aff-group input[type=email], .xoo-aff-group input[type=number], .xoo-aff-group select, .xoo-aff-group select + .select2, .xoo-aff-group input[type=tel], .xoo-aff-group input[type=file] {
    padding-block: calc(10px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-aff-group input[type=text], .xoo-aff-group input[type=password], .xoo-aff-group input[type=email], .xoo-aff-group input[type=number], .xoo-aff-group select, .xoo-aff-group select + .select2, .xoo-aff-group input[type=tel], .xoo-aff-group input[type=file] {
    padding-block: calc(8px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-aff-group input[type=text], .xoo-aff-group input[type=password], .xoo-aff-group input[type=email], .xoo-aff-group input[type=number], .xoo-aff-group select, .xoo-aff-group select + .select2, .xoo-aff-group input[type=tel], .xoo-aff-group input[type=file] {
    padding-block: 8px;
  }
}

.xoo-aff-group input[type=text]:focus, .xoo-aff-group input[type=password]:focus, .xoo-aff-group input[type=email]:focus, .xoo-aff-group input[type=number]:focus, .xoo-aff-group select:focus, .xoo-aff-group select + .select2:focus, .xoo-aff-group input[type=tel]:focus, .xoo-aff-group input[type=file]:focus {
  color: #5F382A;
}

/* === Кастомный чекбокс === */
/* Прячем стандартный чекбокс */
.xoo-el-form-container input[type=checkbox] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-el-form-container input[type=checkbox] {
    width: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-el-form-container input[type=checkbox] {
    width: calc(14px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-el-form-container input[type=checkbox] {
    width: 14px;
  }
}
.xoo-el-form-container input[type=checkbox] {
  height: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-el-form-container input[type=checkbox] {
    height: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-el-form-container input[type=checkbox] {
    height: calc(14px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-el-form-container input[type=checkbox] {
    height: 14px;
  }
}
.xoo-el-form-container input[type=checkbox] {
  border: 2px solid #5F382A !important;
  border-radius: 3px !important;
  background: transparent !important;
  cursor: pointer !important;
  position: relative !important;
  vertical-align: middle !important;
  transition: all 0.2s ease !important;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-el-form-container input[type=checkbox] {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-el-form-container input[type=checkbox] {
    font-size: calc(14px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-el-form-container input[type=checkbox] {
    font-size: 14px;
  }
}
.xoo-el-form-container input[type=checkbox] {
  line-height: 100%;
}

.xoo-aff-group.xoo-el-login-btm-fields {
  margin-bottom: 30px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-aff-group.xoo-el-login-btm-fields {
    margin-bottom: calc(25px + 5 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-aff-group.xoo-el-login-btm-fields {
    margin-bottom: calc(20px + 5 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-aff-group.xoo-el-login-btm-fields {
    margin-bottom: 20px;
  }
}

/* Галочка при выборе */
.xoo-aff-group.xoo-el-login-btm-fields .xoo-el-form-label {
  gap: 15px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-aff-group.xoo-el-login-btm-fields .xoo-el-form-label {
    gap: calc(12px + 3 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-aff-group.xoo-el-login-btm-fields .xoo-el-form-label {
    gap: calc(8px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-aff-group.xoo-el-login-btm-fields .xoo-el-form-label {
    gap: 8px;
  }
}

.xoo-el-form-container input[type=checkbox]:checked {
  background-color: #5F382A !important;
}

.xoo-el-form-container input[type=checkbox]:checked::after {
  content: "" !important;
  position: absolute !important;
  left: 4px !important;
  top: 0 !important;
  width: 6px !important;
  height: 10px !important;
  border: solid #FFFFFF !important;
  border-width: 0 2px 2px 0 !important;
  transform: rotate(45deg) !important;
  display: block !important;
}
@media screen and (max-width: 600px) {
  .xoo-el-form-container input[type=checkbox]:checked::after {
    left: 2px !important;
    top: -1px !important;
  }
}

/* Ховер */
.xoo-el-form-container input[type=checkbox]:hover {
  border-color: #5F382A !important;
}

/* Лейбл рядом с чекбоксом */
.xoo-el-form-container .xoo-el-form-label {
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
  font-weight: 400;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-el-form-container .xoo-el-form-label {
    font-size: calc(18px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-el-form-container .xoo-el-form-label {
    font-size: calc(14px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-el-form-container .xoo-el-form-label {
    font-size: 14px;
  }
}
.xoo-el-form-container .xoo-el-form-label {
  line-height: 100%;
  color: #5F382A;
}

/* === Табы Fraga === */
/* Контейнер табов */
.xoo-el-form-container .xoo-el-tabs {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 25px 0 !important;
  list-style: none !important;
}

/* Все табы — базовый сброс */
.xoo-el-form-container .xoo-el-tabs li {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: none !important;
  width: auto !important;
  float: none !important;
}

/* Активный таб — крупный заголовок */
.xoo-el-form-container ul.xoo-el-tabs li.xoo-el-active {
  font-family: "Livret", sans-serif;
  font-weight: 400;
  font-size: 44px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-el-form-container ul.xoo-el-tabs li.xoo-el-active {
    font-size: calc(30px + 14 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-el-form-container ul.xoo-el-tabs li.xoo-el-active {
    font-size: calc(22px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-el-form-container ul.xoo-el-tabs li.xoo-el-active {
    font-size: 22px;
  }
}
.xoo-el-form-container ul.xoo-el-tabs li.xoo-el-active {
  line-height: 120%;
  color: #5F382A;
  opacity: 1;
}

/* Неактивный таб — ссылка с подчёркиванием */
.xoo-el-form-container .xoo-el-tabs li:not(.xoo-el-active) {
  font-weight: 400;
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .xoo-el-form-container .xoo-el-tabs li:not(.xoo-el-active) {
    font-size: calc(24px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .xoo-el-form-container .xoo-el-tabs li:not(.xoo-el-active) {
    font-size: calc(18px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .xoo-el-form-container .xoo-el-tabs li:not(.xoo-el-active) {
    font-size: 18px;
  }
}
.xoo-el-form-container .xoo-el-tabs li:not(.xoo-el-active) {
  line-height: 120%;
  text-align: right;
  text-decoration: underline;
  text-decoration-style: solid;
  cursor: pointer;
}

/* Убираем header обёртку если мешает */
.xoo-el-form-container .xoo-el-header {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Первые два поля (Ім'я, Прізвище) в линию */
.xoo-el-form-container .xoo-aff-group.onehalf {
  width: calc(50% - 6px);
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  .xoo-el-form-container .xoo-aff-group.onehalf {
    width: 100%;
  }
}

.xoo-el-form-container .xoo_el_reg_lname_cont {
  margin-left: auto;
}

/* Остальные поля на всю ширину */
.xoo-el-form-container .xoo-aff-group.one {
  width: 100% !important;
  flex: none !important;
}

.xoo-el-container:not(.xoo-el-style-slider) .xoo-el-inmodal {
  max-width: 786px;
  margin: 0 auto;
  border-radius: 16px !important;
}

.xoo-el-wrap {
  border-radius: 12px;
  overflow: hidden;
}

span.xoo-el-close, .xoo-el-notice-close {
  display: none;
}
@media screen and (max-width: 600px) {
  span.xoo-el-close, .xoo-el-notice-close {
    display: flex;
    background-color: transparent;
    border-radius: unset;
    width: -moz-max-content;
    width: max-content;
    height: -moz-max-content;
    height: max-content;
    font-size: 22px;
    right: 20px;
    top: 10px;
    box-shadow: none;
  }
}

.xoo-el-icon-cross:before {
  content: url("https://fraga.ua/wp-content/uploads/2026/03/close.svg");
}

@media screen and (max-width: 600px) {
  .xoo-el-container:not(.xoo-el-style-slider) .xoo-el-modal {
    display: flex;
    align-items: flex-end;
    transform: translateY(100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    width: 100%;
    margin: 0 auto;
  }
  .xoo-el-container:not(.xoo-el-style-slider).xoo-el-popup-active .xoo-el-modal {
    transform: translateY(0);
  }
  .xoo-el-container:not(.xoo-el-style-slider) .xoo-el-modal:before {
    display: none;
  }
  .xoo-el-container:not(.xoo-el-style-slider) .xoo-el-inmodal {
    display: block;
    width: 100%;
    height: auto;
    max-height: 85vh;
    border-radius: 16px 16px 0 0 !important;
    vertical-align: bottom;
  }
  .xoo-el-wrap {
    border-radius: 16px 16px 0 0;
  }
  .xoo-el-srcont {
    max-height: 85vh;
    overflow-y: auto;
  }
}
.woocommerce-MyAccount-navigation {
  position: relative;
}
.woocommerce-MyAccount-navigation ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-MyAccount-navigation ul::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #5F382A;
  opacity: 0.2;
}
@media screen and (max-width: 600px) {
  .woocommerce-MyAccount-navigation ul::before {
    content: none;
  }
}

.woocommerce-MyAccount-navigation-link {
  position: relative;
  font-family: "Livret", sans-serif;
  font-weight: 400;
  font-size: 44px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-MyAccount-navigation-link {
    font-size: calc(24px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-MyAccount-navigation-link {
    font-size: calc(16px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-MyAccount-navigation-link {
    font-size: 16px;
  }
}
.woocommerce-MyAccount-navigation-link {
  padding-block: 19px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-MyAccount-navigation-link {
    padding-block: calc(15px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-MyAccount-navigation-link {
    padding-block: calc(10px + 5 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-MyAccount-navigation-link {
    padding-block: 10px;
  }
}
.woocommerce-MyAccount-navigation-link {
  line-height: 120%;
  color: #5F382A;
}
@media screen and (max-width: 600px) {
  .woocommerce-MyAccount-navigation-link:not(.woocommerce-MyAccount-navigation-link--delete-account):not(.woocommerce-MyAccount-navigation-link--customer-logout) > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #94817A;
  }
  .woocommerce-MyAccount-navigation-link:not(.woocommerce-MyAccount-navigation-link--delete-account):not(.woocommerce-MyAccount-navigation-link--customer-logout) > a::after {
    content: "";
    flex-shrink: 0;
    width: 12px;
    height: 7px;
    margin-left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6.00081 5.58L11 1' stroke='%2394817A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 600px) {
  .woocommerce-MyAccount-navigation-link:not(.woocommerce-MyAccount-navigation-link--delete-account):not(.woocommerce-MyAccount-navigation-link--customer-logout).is-active > a {
    color: #5F382A;
    margin-bottom: 40px;
  }
  .woocommerce-MyAccount-navigation-link:not(.woocommerce-MyAccount-navigation-link--delete-account):not(.woocommerce-MyAccount-navigation-link--customer-logout).is-active > a::after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6.00081 5.58L11 1' stroke='%235F382A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}

.woocommerce-MyAccount-navigation-link--edit-account.is-active::after,
.woocommerce-MyAccount-navigation-link--orders.is-active::after,
.woocommerce-MyAccount-navigation-link--special-offers.is-active::after,
.woocommerce-MyAccount-navigation-link--wishlist.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #5F382A;
}
@media screen and (max-width: 600px) {
  .woocommerce-MyAccount-navigation-link--edit-account.is-active::after,
  .woocommerce-MyAccount-navigation-link--orders.is-active::after,
  .woocommerce-MyAccount-navigation-link--special-offers.is-active::after,
  .woocommerce-MyAccount-navigation-link--wishlist.is-active::after {
    content: none;
  }
}

.woocommerce-MyAccount-navigation-link--delete-account {
  font-family: "Geometria", sans-serif;
  font-weight: 400;
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-MyAccount-navigation-link--delete-account {
    font-size: calc(22px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-MyAccount-navigation-link--delete-account {
    font-size: calc(16px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-MyAccount-navigation-link--delete-account {
    font-size: 16px;
  }
}
.woocommerce-MyAccount-navigation-link--delete-account {
  line-height: 120%;
  vertical-align: bottom;
  color: #FF685D;
  margin-top: 80px;
}

.woocommerce-MyAccount-navigation-link--customer-logout {
  font-family: "Geometria", sans-serif;
  font-weight: 400;
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-MyAccount-navigation-link--customer-logout {
    font-size: calc(22px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-MyAccount-navigation-link--customer-logout {
    font-size: calc(16px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-MyAccount-navigation-link--customer-logout {
    font-size: 16px;
  }
}
.woocommerce-MyAccount-navigation-link--customer-logout {
  line-height: 180%;
  color: #94817A;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-navigation-link--customer-logout {
    line-height: 120%;
  }
}

/* ============================================
   UNIVERSAL FORM FIELDS
   Base styles for all form elements site-wide.
   Colors are NOT set here — override via class.
   ============================================ */
/* Labels
   ============================================ */
label {
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  label {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  label {
    font-size: calc(16px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  label {
    font-size: 16px;
  }
}
label {
  line-height: 120%;
  margin-bottom: 8px;
  display: block;
}
label .optional {
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  label .optional {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  label .optional {
    font-size: calc(16px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  label .optional {
    font-size: 16px;
  }
}
label .optional {
  font-weight: 400;
}
label abbr.required {
  text-decoration: none;
  font-weight: 400;
}
label.checkbox {
  margin-bottom: 0;
}

/* Inputs & Textareas
   ============================================ */
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=number],
input[type=search],
input[type=url],
textarea,
.input-text {
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  input[type=number],
  input[type=search],
  input[type=url],
  textarea,
  .input-text {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  input[type=number],
  input[type=search],
  input[type=url],
  textarea,
  .input-text {
    font-size: calc(16px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  input[type=number],
  input[type=search],
  input[type=url],
  textarea,
  .input-text {
    font-size: 16px;
  }
}
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=number],
input[type=search],
input[type=url],
textarea,
.input-text {
  line-height: 120%;
  padding-block: 10px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  input[type=number],
  input[type=search],
  input[type=url],
  textarea,
  .input-text {
    padding-block: calc(8px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  input[type=number],
  input[type=search],
  input[type=url],
  textarea,
  .input-text {
    padding-block: calc(8px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  input[type=number],
  input[type=search],
  input[type=url],
  textarea,
  .input-text {
    padding-block: 8px;
  }
}
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=number],
input[type=search],
input[type=url],
textarea,
.input-text {
  padding-inline: 10px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  input[type=number],
  input[type=search],
  input[type=url],
  textarea,
  .input-text {
    padding-inline: calc(8px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  input[type=number],
  input[type=search],
  input[type=url],
  textarea,
  .input-text {
    padding-inline: calc(8px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  input[type=number],
  input[type=search],
  input[type=url],
  textarea,
  .input-text {
    padding-inline: 8px;
  }
}
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=number],
input[type=search],
input[type=url],
textarea,
.input-text {
  border: 1px solid;
  border-radius: var(--radius-sm);
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=url]::-moz-placeholder, textarea::-moz-placeholder, .input-text::-moz-placeholder {
  opacity: 0.7;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=search]::placeholder,
input[type=url]::placeholder,
textarea::placeholder,
.input-text::placeholder {
  opacity: 0.7;
}

/* Textarea specifics
   ============================================ */
textarea {
  resize: vertical;
  min-height: 80px;
}

/* Autofill reset
   ============================================ */
input:-internal-autofill-selected,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: #5F382A !important;
  background-color: transparent !important;
  background-image: none !important;
  color: #5F382A !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

.swiper-product__img-wrapper {
  position: relative;
}

.swiper-product__img-wrapper .tinv-wraper.tinv-wishlist {
  position: absolute !important;
  top: 15px;
  right: 15px;
  z-index: 5;
  padding: 0;
  overflow: visible !important;
  display: block !important;
}
@media screen and (max-width: 768px) {
  .swiper-product__img-wrapper .tinv-wraper.tinv-wishlist {
    top: 10px;
    right: 10px;
  }
}

.swiper-product__img-wrapper .tinvwl_add_to_wishlist_button.no-txt {
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #F4EDE2;
  border-radius: 6px;
  padding: 4px;
}
@media screen and (max-width: 768px) {
  .swiper-product__img-wrapper .tinvwl_add_to_wishlist_button.no-txt {
    width: 28px !important;
    height: 28px !important;
  }
}

.swiper-product__img-wrapper .tinvwl_add_to_wishlist_button img {
  max-width: 26px !important;
  max-height: 26px !important;
  width: 100% !important;
  height: 100% !important;
}

/* Показываем иконку "добавить" по умолчанию */
.swiper-product__img-wrapper .tinvwl_add_to_wishlist_button img.icon-add-on-wishlist {
  display: inline !important;
}

/* Скрываем иконку "уже в вишлисте" по умолчанию */
.swiper-product__img-wrapper .tinvwl_add_to_wishlist_button img.icon-already-on-wishlist {
  display: none !important;
}

/* Когда товар в вишлисте — переключаем иконки */
.swiper-product__img-wrapper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list img.icon-add-on-wishlist {
  display: none !important;
}

.swiper-product__img-wrapper .tinvwl_add_to_wishlist_button.tinvwl-product-in-list img.icon-already-on-wishlist {
  display: inline !important;
}

.da-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.da-popup[hidden] {
  display: none;
}

.da-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(95, 56, 42, 0.35);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.da-popup__box {
  position: relative;
  z-index: 1;
  background: #F4EDE2;
  border: 1px solid rgba(95, 56, 42, 0.15);
  padding: 48px 40px 40px;
  max-width: 480px;
  width: calc(100% - 32px);
  text-align: center;
}

.da-popup__title {
  font-size: clamp(18px, 2vw, 22px);
  color: #5F382A;
  margin: 0 0 32px;
  line-height: 1.4;
  font-weight: 500;
}

.da-popup__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.da-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 28px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #5F382A;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, opacity 0.25s;
  font-family: inherit;
  line-height: 1;
  background: none;
}

.da-popup__btn--confirm {
  background: #5F382A;
  color: #F4EDE2;
}

.da-popup__btn--confirm:hover:not(:disabled) {
  background: #7a4a38;
  border-color: #7a4a38;
  color: #F4EDE2;
}

.da-popup__btn--confirm:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.da-popup__btn--cancel {
  background: transparent;
  color: #5F382A;
}

.da-popup__btn--cancel:hover {
  background: #5F382A;
  color: #F4EDE2;
}

@media (max-width: 600px) {
  .da-popup__box {
    padding: 36px 24px 28px;
  }
  .da-popup__actions {
    flex-direction: column;
    align-items: center;
  }
  .da-popup__btn {
    width: 100%;
    max-width: 220px;
  }
}
.allergen-icon {
  position: relative;
  display: inline-flex;
}
.allergen-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: auto;
  right: 0;
  transform: translateX(0);
  background: #F4EDE2;
  color: #5F382A;
  border: 1px solid #5F382A;
  font-family: "Geometria", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
  z-index: 10;
}
@media (max-width: 600px) {
  .allergen-icon::after {
    padding: 3px 6px;
    font-size: 12px;
  }
}
.allergen-icon:hover::after {
  opacity: 1;
  visibility: visible;
}

.header {
  color: #5F382A;
  background-color: #F4EDE2;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  position: relative;
  background-color: #F4EDE2;
  z-index: 10;
  gap: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .header__top {
    gap: calc(32px + 8 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .header__top {
    gap: calc(20px + 12 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .header__top {
    gap: 20px;
  }
}
.header__burger svg {
  display: block;
}
.header__bottom {
  display: none;
  text-align: center;
  padding-bottom: 10px;
  background-color: #F4EDE2;
  color: #5F382A;
  position: absolute;
  z-index: 5;
  top: 100%;
  left: 0;
  right: 0;
  transition: all 0.3s;
}
.header:empty {
  display: none !important;
}
.header_hide-bottom .header__bottom {
  top: -100%;
  box-shadow: unset;
}

.logo {
  margin: 0 auto;
}
.logo__img-pc {
  max-width: 306px;
}
@media (max-width: 1920px) {
  .logo__img-pc {
    max-width: calc(200px + 106 * (100vw - 390px) / 1530);
  }
}
.logo__img-pc {
  width: 100%;
}
.logo__img-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .header__top {
    padding: 36px 0;
  }
  .header__container {
    max-width: 100%;
  }
}
@media (max-width: 830px) {
  .header {
    position: fixed;
    font-size: 16px;
    width: 100%;
    top: 0;
    z-index: 100;
  }
  .header .container {
    width: 100%;
  }
  .header__top {
    padding: 0 0;
    height: 44px;
    align-items: center;
  }
  .header__bottom {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .header__bottom:not(:empty) {
    display: flex;
  }
  .header__city {
    display: none;
  }
  .logo {
    margin-right: auto;
    margin-left: 0;
  }
  .logo__img-mobile {
    display: block;
    max-width: unset;
  }
  .logo__img-pc {
    display: none;
  }
}
.footer {
  color: #F4EDE2;
  background-color: #5F382A;
  padding-top: 100px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .footer {
    padding-top: calc(40px + 60 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .footer {
    padding-top: calc(32px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .footer {
    padding-top: 32px;
  }
}
.footer {
  padding-bottom: 100px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .footer {
    padding-bottom: calc(40px + 60 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .footer {
    padding-bottom: calc(24px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .footer {
    padding-bottom: 24px;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer__col-copy {
  display: none;
}
.footer__logo {
  display: block;
  margin-bottom: 14px;
}
.footer__logo-img {
  max-width: unset;
  width: 230px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .footer__logo-img {
    width: calc(160px + 70 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .footer__logo-img {
    width: calc(116px + 44 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .footer__logo-img {
    width: 116px;
  }
}
.footer__copy {
  font-size: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .footer__copy {
    font-size: calc(12px + 12 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .footer__copy {
    font-size: calc(10px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .footer__copy {
    font-size: 10px;
  }
}
.footer__menu {
  font-size: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .footer__menu {
    font-size: calc(16px + 8 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .footer__menu {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .footer__menu {
    font-size: 12px;
  }
}
.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .footer__menu-list {
    gap: calc(12px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .footer__menu-list {
    gap: calc(12px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .footer__menu-list {
    gap: 12px;
  }
}
.footer__number {
  font-size: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .footer__number {
    font-size: calc(20px + 8 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .footer__number {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .footer__number {
    font-size: 16px;
  }
}
.footer__number {
  text-wrap: nowrap;
}
.footer__number-socials {
  display: none;
  margin-bottom: 12px;
}
.footer__socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}
@media (max-width: 1920px) {
  .footer__socials {
    gap: calc(16px + 16 * (100vw - 390px) / 1530);
  }
}
.footer__socials-link svg {
  display: block;
  width: 40px;
}
@media (max-width: 1920px) {
  .footer__socials-link svg {
    width: calc(16px + 24 * (100vw - 390px) / 1530);
  }
}
.footer__socials-link svg {
  height: 40px;
}
@media (max-width: 1920px) {
  .footer__socials-link svg {
    height: calc(16px + 24 * (100vw - 390px) / 1530);
  }
}

@media (max-width: 1024px) {
  .footer__col-number {
    display: none;
  }
  .footer__number-socials {
    display: block;
  }
}
@media (max-width: 600px) {
  .footer {
    text-align: center;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer__socials {
    justify-content: center;
  }
  .footer__copy {
    display: none;
  }
  .footer__col-socials {
    margin-top: 16px;
  }
  .footer__col-copy {
    display: block;
    width: 100%;
  }
  .footer__col-copy hr {
    margin-bottom: 16px;
    border: none;
    border-top: 1px solid;
  }
  .footer__col-copy .footer__copy {
    display: block;
  }
}
.menu-drawer {
  position: fixed;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  line-height: 1.2;
  color: #5F382A;
  font-size: 22px;
}
@media (max-width: 1920px) {
  .menu-drawer {
    font-size: calc(18px + 4 * (100vw - 390px) / 1530);
  }
}
.menu-drawer.menu-drawer_active {
  position: fixed;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s;
}
.menu-drawer.menu-drawer_active .menu-drawer__inner {
  transform: translateX(0);
  transition: transform 0.5s;
}
.menu-drawer.menu-drawer_inactive {
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
.menu-drawer.menu-drawer_inactive .menu-drawer__inner {
  left: -1000px;
  top: 0;
  transition: all 0.5s;
}
.menu-drawer__inner {
  transform: translateX(-100%);
  transition: transform 0.5s;
  background: #F4EDE2;
  height: 100%;
  max-width: 375px;
  width: 100%;
  padding-left: 10px;
  overflow: auto;
  padding-bottom: 32px;
  padding-top: 24px;
}
@media (max-width: 1920px) {
  .menu-drawer__inner {
    padding-top: calc(0px + 24 * (100vw - 390px) / 1530);
  }
}
@media (max-width: 768px) {
  .menu-drawer__inner {
    padding-top: 10px;
  }
}
.menu-drawer__top {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 11px;
}
.menu-drawer__close {
  cursor: pointer;
}
.menu-drawer__list {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.menu-drawer__catalog-title {
  display: flex;
  gap: 8px;
  align-items: center;
}
.menu-drawer__catalog-title > * {
  cursor: pointer;
}
.menu-drawer__catalog-title-icon {
  transform: translateY(2px);
}
.menu-drawer__catalog-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-drawer__catalog-item:first-child {
  margin-top: 20px;
}
@media (max-width: 1920px) {
  .menu-drawer__catalog-item:first-child {
    margin-top: calc(12px + 8 * (100vw - 390px) / 1530);
  }
}
.menu-drawer__catalog .menu-drawer__catalog-title .menu-drawer__catalog-title-icon {
  transition: all 0.4s ease;
}

.menu-drawer__catalog.open .menu-drawer__catalog-title .menu-drawer__catalog-title-icon {
  transform: rotate(90deg);
}

.menu-drawer__catalog .menu-drawer__catalog-bottom {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: all 0.4s ease;
}

.menu-drawer__catalog.open .menu-drawer__catalog-bottom {
  grid-template-rows: 1fr;
}

.menu-drawer__catalog .menu-drawer__catalog-bottom .menu-drawer__catalog-list {
  min-height: 0;
}

.mobile-catalog {
  position: fixed;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  line-height: 1.2;
  color: #5F382A;
  display: flex;
  justify-content: end;
  align-items: end;
}
.mobile-catalog_active {
  position: fixed;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s;
}
.mobile-catalog_active .mobile-catalog__inner {
  transform: translateY(0);
  transition: transform 0.5s;
}
.mobile-catalog_inactive {
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
.mobile-catalog_inactive .menu-drawer__inner {
  transition: all 0.5s;
}
.mobile-catalog__inner {
  transform: translateY(100%);
  transition: transform 0.5s;
  background: #F4EDE2;
  width: 100%;
  padding-top: 20px;
  overflow: auto;
  padding-bottom: 32px;
  height: auto;
  border-radius: 16px 16px 0 0;
  position: relative;
}
.mobile-catalog__top {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(148, 129, 122, 0.4);
}
.mobile-catalog__title {
  text-align: center;
  font-size: 24px;
  font-family: "Livret", sans-serif;
  font-weight: 400;
}
.mobile-catalog__close {
  position: absolute;
  top: 15px;
  right: 10px;
}
.mobile-catalog__list {
  padding: 15px 20px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-catalog__item {
  font-size: 18px;
}
@media (max-width: 600px) {
  .home-banner .container {
    margin: 0;
  }
}
.home-banner .swiper-banner:not(.swiper-initialized) {
  opacity: 0 !important;
  min-height: 400px; /* чтобы не было прыжка высоты */
}
.home-banner .swiper-banner {
  position: relative;
  padding-bottom: 24px;
  overflow: hidden;
  opacity: 0;
}
.home-banner .swiper-banner.swiper-initialized {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.home-banner .swiper-banner:not(.swiper-initialized) .swiper-wrapper {
  display: none;
}
.home-banner .swiper-banner:not(.swiper-initialized) .swiper-button-prev,
.home-banner .swiper-banner:not(.swiper-initialized) .swiper-button-next,
.home-banner .swiper-banner:not(.swiper-initialized) .swiper-pagination {
  display: none;
}
.home-banner .swiper-banner__wrapper {
  margin-bottom: 18px;
}
.home-banner .swiper-banner__slide-img {
  width: 100%;
}
@media (max-width: 600px) {
  .home-banner .swiper-banner__slide-img {
    display: none;
  }
}
.home-banner .swiper-banner__slide-img--mobile {
  display: none;
}
@media (max-width: 600px) {
  .home-banner .swiper-banner__slide-img--mobile {
    display: block;
  }
}
.home-banner .swiper-banner__content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}
.home-banner .swiper-banner__content .container {
  pointer-events: auto;
}
@media (max-width: 830px) {
  .home-banner .swiper-banner__content {
    top: 40%;
  }
}
.home-banner .swiper-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-banner .swiper-banner__title {
  max-width: 806px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .home-banner .swiper-banner__title {
    max-width: calc(464px + 342 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .home-banner .swiper-banner__title {
    max-width: calc(335px + 129 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .home-banner .swiper-banner__title {
    max-width: 335px;
  }
}
.home-banner .swiper-banner__title {
  width: 100%;
  font-family: "Livret", sans-serif;
  font-weight: 400;
  font-size: 90px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .home-banner .swiper-banner__title {
    font-size: calc(48px + 42 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .home-banner .swiper-banner__title {
    font-size: calc(32px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .home-banner .swiper-banner__title {
    font-size: 32px;
  }
}
.home-banner .swiper-banner__title {
  line-height: 115%;
  color: #F4EDE2;
}
.home-banner .swiper-banner__button {
  max-width: 194px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .home-banner .swiper-banner__button {
    max-width: calc(148px + 46 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .home-banner .swiper-banner__button {
    max-width: calc(90px + 58 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .home-banner .swiper-banner__button {
    max-width: 90px;
  }
}
.home-banner .swiper-banner__button {
  height: 194px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .home-banner .swiper-banner__button {
    height: calc(148px + 46 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .home-banner .swiper-banner__button {
    height: calc(90px + 58 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .home-banner .swiper-banner__button {
    height: 90px;
  }
}
.home-banner .swiper-banner__button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .home-banner .swiper-banner__button {
    padding: calc(10px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .home-banner .swiper-banner__button {
    padding: calc(6px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .home-banner .swiper-banner__button {
    padding: 6px;
  }
}
.home-banner .swiper-banner__button {
  border: 1px solid #F4EDE2;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background-image: url("https://fraga.ua/wp-content/uploads/2026/02/swiper-banner__button-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  color: #F4EDE2;
  font-size: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .home-banner .swiper-banner__button {
    font-size: calc(18px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .home-banner .swiper-banner__button {
    font-size: calc(12px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .home-banner .swiper-banner__button {
    font-size: 12px;
  }
}
.home-banner .swiper-banner__button {
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  transition: all 0.4s ease;
}
.home-banner .swiper-banner__button:hover {
  background-size: 150%;
}
@media (max-width: 1024px) {
  .home-banner .swiper-banner__button {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .home-banner .swiper-banner__button {
    display: none;
  }
}
.home-banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
.home-banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 3px;
}
@media (max-width: 1920px) {
  .home-banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
  .home-banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: calc(10px + -7 * (100vw - 390px) / 1530);
  }
}
.home-banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
.home-banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 100% !important;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.home-banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.home-banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #94817A;
  cursor: pointer;
}
.home-banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.home-banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #5F382A;
}
.home-banner .swiper-banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
.home-banner .swiper-banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.home-banner .swiper-banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev,
.home-banner .swiper-banner .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(1);
}
.home-banner .swiper-banner .swiper-button-prev:after,
.home-banner .swiper-banner .swiper-button-next:after {
  display: none;
}
.home-banner .swiper-banner .swiper-button-prev,
.home-banner .swiper-banner .swiper-button-next {
  align-self: center;
  width: 48px;
  height: 48px;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .home-banner .swiper-banner .swiper-button-prev,
  .home-banner .swiper-banner .swiper-button-next {
    display: none;
  }
}
.home-banner .swiper-banner .swiper-button-prev {
  left: 0;
}
.home-banner .swiper-banner .swiper-button-next {
  right: 0;
}

.info__inner {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr;
  max-width: 100%;
  gap: 30px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .info__inner {
    gap: calc(24px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .info__inner {
    gap: calc(16px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .info__inner {
    gap: 16px;
  }
}
.info__content {
  position: relative;
  height: 100%;
}
.info__media {
  position: relative;
}
.info__link {
  position: absolute;
  bottom: 28px;
  left: 48px;
}
.info__link svg {
  max-width: 80px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .info__link svg {
    max-width: calc(40px + 40 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .info__link svg {
    max-width: calc(40px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .info__link svg {
    max-width: 40px;
  }
}
.info__link svg {
  width: 100%;
}
.info__title {
  font-family: "Livret", sans-serif;
  font-weight: 400;
  font-size: 44px;
  margin-bottom: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .info__title {
    margin-bottom: calc(28px + 0 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .info__title {
    margin-bottom: calc(18px + 10 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .info__title {
    margin-bottom: 18px;
  }
}
.info__title {
  line-height: 120%;
  color: #94817A;
}
.info__text {
  font-weight: 300;
  font-size: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .info__text {
    font-size: calc(22px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .info__text {
    font-size: calc(16px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .info__text {
    font-size: 16px;
  }
}
.info__text {
  line-height: 120%;
  color: #94817A;
}
.info__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.info__media-mobile {
  display: none;
}

@media (max-width: 1440px) {
  .info__inner {
    grid-template-columns: 1fr;
  }
  .info__content {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .info__inner {
    grid-template-rows: 1fr 287px;
  }
  .info__title {
    font-size: 48px;
    margin-bottom: 24px;
    text-align: center;
  }
  .info__title span {
    display: inline;
  }
  .info__link {
    right: 40px;
    left: unset;
    bottom: 40px;
  }
}
@media (max-width: 768px) {
  .info__title {
    font-size: 38px;
  }
}
@media (max-width: 600px) {
  .info .container {
    margin: 0;
  }
  .info__inner {
    grid-template-rows: 1fr;
  }
  .info__title {
    margin-bottom: 18px;
    font-size: 32px;
    text-align: left;
  }
  .info__title span {
    display: block;
  }
  .info__text {
    text-align: left;
    display: block;
  }
  .info__content {
    margin-bottom: 18px;
  }
  .info__link {
    right: 24px;
    bottom: 20px;
  }
  .info__media {
    display: none;
  }
  .info__media-mobile {
    display: block;
    position: relative;
  }
}
.socials {
  text-align: center;
  padding-bottom: 200px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .socials {
    padding-bottom: calc(88px + 112 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .socials {
    padding-bottom: calc(56px + 32 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .socials {
    padding-bottom: 56px;
  }
}
.socials__title {
  display: none;
}
.socials__link {
  display: none;
  font-size: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .socials__link {
    font-size: calc(22px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .socials__link {
    font-size: calc(14px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .socials__link {
    font-size: 14px;
  }
}
.socials__link {
  margin-bottom: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .socials__link {
    margin-bottom: calc(8px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .socials__link {
    margin-bottom: calc(0px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .socials__link {
    margin-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .socials__title {
    display: block;
  }
  .socials__link {
    display: block;
  }
}

.top-products {
  overflow: hidden !important;
}
.top-products .swiper-category__title {
  font-family: "Livret", sans-serif;
  font-weight: 400;
  font-size: 44px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .top-products .swiper-category__title {
    font-size: calc(26px + 18 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .top-products .swiper-category__title {
    font-size: calc(18px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .top-products .swiper-category__title {
    font-size: 18px;
  }
}
.top-products .swiper-category__title {
  line-height: 120%;
  color: #94817A;
  left: 50%;
  transform: translateX(-50%);
}
.top-products {
  padding-top: 70px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .top-products {
    padding-top: calc(35px + 35 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .top-products {
    padding-top: calc(10px + 25 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .top-products {
    padding-top: 10px;
  }
}

.label {
  padding-bottom: 200px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .label {
    padding-bottom: calc(100px + 100 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .label {
    padding-bottom: calc(48px + 52 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .label {
    padding-bottom: 48px;
  }
}
.label {
  text-align: center;
}
.label__logo--mobile {
  display: none;
}
@media (max-width: 600px) {
  .label__logo {
    display: none;
  }
  .label__logo--mobile {
    display: inline;
  }
}

#sb_instagram {
  height: 100% !important;
}

.sbi_bio {
  display: none;
}

.custom-product {
  display: flex;
  position: relative;
  gap: 165px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product {
    gap: calc(96px + 69 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product {
    gap: calc(16px + 80 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .custom-product {
    flex-direction: column;
  }
}
.custom-product .summary.entry-summary {
  max-width: 663px;
  flex: 1;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 24px;
}
.custom-product .product_title {
  font-family: "Livret", sans-serif;
  font-weight: 400;
  color: #5F382A;
  font-size: 68px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product .product_title {
    font-size: calc(48px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product .product_title {
    font-size: calc(32px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product .product_title {
    font-size: 32px;
  }
}
.custom-product .product_title {
  margin-bottom: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product .product_title {
    margin-bottom: calc(12px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product .product_title {
    margin-bottom: calc(8px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product .product_title {
    margin-bottom: 8px;
  }
}
.custom-product .product-availability,
.custom-product .sku_wrapper {
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product .product-availability,
  .custom-product .sku_wrapper {
    font-size: calc(16px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product .product-availability,
  .custom-product .sku_wrapper {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product .product-availability,
  .custom-product .sku_wrapper {
    font-size: 12px;
  }
}
.custom-product .price {
  color: #5F382A;
  font-size: 48px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product .price {
    font-size: calc(32px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product .price {
    font-size: calc(24px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product .price {
    font-size: 24px;
  }
}
.custom-product th.label {
  display: none;
}
.custom-product-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 389px;
  margin-bottom: 36px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product-inner {
    margin-bottom: calc(32px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product-inner {
    margin-bottom: calc(16px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product-inner {
    margin-bottom: 16px;
  }
}
.custom-product .variations {
  width: 100%;
  max-width: 389px;
}
.custom-product .variable-items-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 28px;
}
.custom-product .variable-items-wrapper .variable-item {
  border: 2px solid #5F382A;
  color: #5F382A;
  border-radius: 6px;
  padding: 14px 8px 12px 8px;
  transition: all 0.3s;
  text-align: center;
  line-height: 1;
}
.custom-product .variable-items-wrapper .variable-item[data-wvstooltip-out-of-stock] {
  opacity: 0.5;
}
.custom-product .variable-items-wrapper .variable-item {
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product .variable-items-wrapper .variable-item {
    font-size: calc(20px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product .variable-items-wrapper .variable-item {
    font-size: calc(12px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product .variable-items-wrapper .variable-item {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .custom-product .variable-items-wrapper .variable-item {
    border: 1px solid #5F382A;
  }
}
.custom-product .variable-items-wrapper .variable-item:after {
  display: none;
}
.custom-product .variable-items-wrapper .variable-item:before {
  display: none;
}
.custom-product .variable-items-wrapper .variable-item.selected {
  background-color: #5F382A;
  color: #F4EDE2;
}
.custom-product .add-to-favorite svg {
  width: 48px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product .add-to-favorite svg {
    width: calc(32px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product .add-to-favorite svg {
    width: calc(24px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product .add-to-favorite svg {
    width: 24px;
  }
}
.custom-product .add-to-favorite svg {
  height: 48px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product .add-to-favorite svg {
    height: calc(32px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product .add-to-favorite svg {
    height: calc(24px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product .add-to-favorite svg {
    height: 24px;
  }
}
.custom-product .single_add_to_cart_button {
  background-color: #5F382A;
  padding: 16px;
  display: block;
  border-radius: 6px;
  color: #F4EDE2;
  width: 100%;
  max-width: 389px;
  text-transform: lowercase;
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product .single_add_to_cart_button {
    font-size: calc(20px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product .single_add_to_cart_button {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product .single_add_to_cart_button {
    font-size: 16px;
  }
}
.custom-product .single_add_to_cart_button {
  margin-bottom: 36px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product .single_add_to_cart_button {
    margin-bottom: calc(32px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product .single_add_to_cart_button {
    margin-bottom: calc(16px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product .single_add_to_cart_button {
    margin-bottom: 16px;
  }
}
.custom-product .single_add_to_cart_button.wc-variation-is-unavailable {
  display: none !important;
}
.custom-product .single_variation_wrap {
  margin-top: 32px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product .single_variation_wrap {
    margin-top: calc(20px + 12 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product .single_variation_wrap {
    margin-top: calc(20px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product .single_variation_wrap {
    margin-top: 20px;
  }
}
.custom-product a.reset_variations,
.custom-product .woocommerce-variation-price,
.custom-product .stock.out-of-stock {
  display: none !important;
}
.custom-product .input-text.qty.text {
  display: none;
}
.custom-product .woocommerce-product-details__short-description {
  font-weight: 300;
  line-height: 120%;
  text-align: justify;
  font-size: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-product .woocommerce-product-details__short-description {
    font-size: calc(22px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-product .woocommerce-product-details__short-description {
    font-size: calc(16px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-product .woocommerce-product-details__short-description {
    font-size: 16px;
  }
}

.product_unavailable .product-gallery,
.product_unavailable .price,
.product_unavailable .single_add_to_cart_button {
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .custom-product .single_add_to_cart_button {
    padding: 12px;
    max-width: 304px;
  }
  .custom-product .variable-items-wrapper {
    gap: 13px;
  }
  .custom-product .variable-items-wrapper .variable-item {
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .custom-product .variable-items-wrapper .variable-item {
    padding: 10px;
    font-size: 14px;
  }
  .custom-product .summary.entry-summary {
    max-width: unset;
  }
  .custom-product .single_add_to_cart_button {
    width: 100%;
    max-width: 100%;
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .custom-product .single_add_to_cart_button {
    padding: 10px;
  }
  .custom-product .variable-items-wrapper {
    max-width: 200px;
    gap: 12px;
  }
  .custom-product .variable-items-wrapper .variable-item {
    padding: 8px;
  }
  .custom-product-inner {
    width: unset;
    justify-content: normal;
    gap: 12px;
  }
}
.categories {
  padding-bottom: 140px;
}
.categories__title {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .categories__title {
    margin-bottom: calc(24px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .categories__title {
    margin-bottom: calc(16px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .categories__title {
    margin-bottom: 16px;
  }
}
.categories__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .categories__items {
    grid-row-gap: calc(22px + 18 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .categories__items {
    grid-row-gap: calc(8px + 14 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .categories__items {
    grid-row-gap: 8px;
  }
}
.categories__items {
  grid-column-gap: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .categories__items {
    grid-column-gap: calc(22px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .categories__items {
    grid-column-gap: calc(8px + 14 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .categories__items {
    grid-column-gap: 8px;
  }
}
@media (max-width: 768px) {
  .categories__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.categories__item {
  position: relative;
  max-height: 394px;
  height: 20.5vw;
  overflow: hidden;
}
@media (max-width: 768px) {
  .categories__item {
    height: 31.5vw;
  }
}
.categories__item:hover img {
  transition: all 0.3s;
  transform: scale(1.1);
  filter: blur(3px);
}
.categories__item:hover .categories__item-name {
  transition: all 0.5s;
  opacity: 1;
}
.categories__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.3s;
}
.categories__item-name {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  color: #F4EDE2;
  font-family: "Livret", sans-serif;
  background-color: #5F382A;
  transition: all 0.3s;
  font-size: 68px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .categories__item-name {
    font-size: calc(26px + 42 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .categories__item-name {
    font-size: calc(14px + 12 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .categories__item-name {
    font-size: 14px;
  }
}
.categories__item-name {
  padding-top: 34px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .categories__item-name {
    padding-top: calc(8px + 26 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .categories__item-name {
    padding-top: calc(4px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .categories__item-name {
    padding-top: 4px;
  }
}
.categories__item-name {
  padding-bottom: 34px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .categories__item-name {
    padding-bottom: calc(8px + 26 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .categories__item-name {
    padding-bottom: calc(4px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .categories__item-name {
    padding-bottom: 4px;
  }
}
.categories__item-name {
  padding-left: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .categories__item-name {
    padding-left: calc(8px + 8 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .categories__item-name {
    padding-left: calc(4px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .categories__item-name {
    padding-left: 4px;
  }
}
.categories__item-name {
  padding-right: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .categories__item-name {
    padding-right: calc(8px + 8 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .categories__item-name {
    padding-right: calc(4px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .categories__item-name {
    padding-right: 4px;
  }
}
@media (hover: hover) {
  .categories__item-name {
    opacity: 0;
  }
}
@media (max-width: 1024px) {
  .categories__item-name {
    top: auto;
    left: auto;
    bottom: 0;
    transform: none;
  }
}

.policy {
  text-align: justify;
}
.policy .container {
  margin: 0 auto;
  width: 100%;
  padding-left: 50px;
}
@media (max-width: 768px) {
  .policy .container {
    padding: 0 20px;
    padding-left: 50px;
  }
}
@media (max-width: 768px) and (max-width: 1920px) {
  .policy .container {
    padding-left: calc(32px + 18 * (100vw - 390px) / 1530);
  }
}
.policy__title {
  text-align: center;
  margin-top: calc(36px + 44 * (100vw - 390px) / 1530);
}
.policy__inner {
  font-size: 26px;
}
@media (max-width: 1920px) {
  .policy__inner {
    font-size: calc(16px + 10 * (100vw - 390px) / 1530);
  }
}
.policy__inner h4 {
  font-weight: 500;
  margin-bottom: calc(8px + 8 * (100vw - 390px) / 1530);
}
.policy__inner ul {
  list-style: auto;
}
.policy__inner ul li {
  padding-bottom: 80px;
}
@media (max-width: 1920px) {
  .policy__inner ul li {
    padding-bottom: calc(36px + 44 * (100vw - 390px) / 1530);
  }
}
.policy__inner ul li:not(:last-child) {
  border-bottom: 1px solid #5F382A;
  margin-top: 80px;
}
@media (max-width: 1920px) {
  .policy__inner ul li:not(:last-child) {
    margin-top: calc(36px + 44 * (100vw - 390px) / 1530);
  }
}
.policy__inner ul li:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 1920px) {
  .policy__inner ul li:not(:last-child) {
    margin-bottom: calc(36px + 44 * (100vw - 390px) / 1530);
  }
}
.policy__inner ul li ol {
  list-style: disc;
}
.policy__inner ul li ol li:not(:last-child) {
  border-bottom: none;
  margin: 0;
  padding: 0;
}
.policy__inner a {
  text-decoration: underline;
}

.woocommerce-result-count,
.woocommerce-notices-wrapper {
  display: none !important;
}

.category__top {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr;
  align-items: center;
  grid-column: 2/3;
  justify-self: flex-end;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .category__top {
    -moz-column-gap: calc(24px + 0 * (100vw - 1024px) / (896));
         column-gap: calc(24px + 0 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .category__top {
    -moz-column-gap: calc(24px + 0 * (100vw - 375px) / (649));
         column-gap: calc(24px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .category__top {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.category__top {
  row-gap: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .category__top {
    row-gap: calc(28px + 0 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .category__top {
    row-gap: calc(20px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .category__top {
    row-gap: 20px;
  }
}
@media (max-width: 1023px) {
  .category__top {
    grid-column: 1/-1;
  }
}
.category__name {
  font-family: "Livret", sans-serif;
  font-weight: 400;
  font-size: 44px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .category__name {
    font-size: calc(40px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .category__name {
    font-size: calc(24px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .category__name {
    font-size: 24px;
  }
}
.category__name {
  line-height: 120%;
  color: #5F382A;
}
.category-inner__sort select {
  border: 1px solid #94817A;
  border-radius: 6px;
  font-weight: 400;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .category-inner__sort select {
    font-size: calc(16px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .category-inner__sort select {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .category-inner__sort select {
    font-size: 12px;
  }
}
.category-inner__sort select {
  line-height: 120%;
  color: #5F382A;
  text-align: left;
  padding: 11px 44px 11px 14px;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  background-image: url("https://fraga.ua/wp-content/uploads/2026/03/arrow.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) center;
}
@media (max-width: 1023px) {
  .category-inner__sort select {
    padding: 7px 36px 7px 10px;
  }
}
@media (max-width: 599px) {
  .category-inner__sort select {
    width: 100%;
  }
}
.category-inner__sort select option {
  background-color: #F4EDE2;
}
@media (max-width: 599px) {
  .category-inner__sort {
    width: 100%;
  }
}
.category-inner__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .category-inner__buttons {
    gap: calc(16px + 0 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .category-inner__buttons {
    gap: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .category-inner__buttons {
    gap: 12px;
  }
}
@media (max-width: 1023px) {
  .category-inner__buttons {
    justify-content: space-between;
    grid-column: 1/-1;
    grid-row: 2;
  }
}
.category-inner__button {
  display: none;
  align-items: center;
  gap: 4px;
  background-color: #5F382A;
  color: #F4EDE2;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 100%;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .category-inner__button {
    display: flex;
    max-width: 224px;
    width: 100%;
  }
}
@media (max-width: 599px) {
  .category-inner__button {
    max-width: unset;
    justify-content: center;
  }
}
.category__inner {
  display: grid;
  grid-template-columns: minmax(0, 389px) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  -moz-column-gap: 28px;
       column-gap: 28px;
  row-gap: 38px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .category__inner {
    row-gap: calc(28px + 10 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .category__inner {
    row-gap: calc(12px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .category__inner {
    row-gap: 12px;
  }
}
.category__inner {
  padding-bottom: 100px;
}
@media (max-width: 1439px) {
  .category__inner {
    grid-template-columns: minmax(0, 224px) minmax(0, 1fr);
    padding-bottom: 60px;
  }
}
@media (max-width: 1023px) {
  .category__inner {
    grid-template-rows: 1fr;
  }
}
@media (max-width: 829px) {
  .category__inner {
    padding-bottom: 35px;
  }
}
.category__inner ul.products {
  display: grid;
  height: -moz-fit-content;
  height: fit-content;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 28px;
       column-gap: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .category__inner ul.products {
    -moz-column-gap: calc(16px + 12 * (100vw - 1024px) / (896));
         column-gap: calc(16px + 12 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .category__inner ul.products {
    -moz-column-gap: calc(8px + 8 * (100vw - 375px) / (649));
         column-gap: calc(8px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .category__inner ul.products {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.category__inner ul.products {
  row-gap: 68px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .category__inner ul.products {
    row-gap: calc(48px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .category__inner ul.products {
    row-gap: calc(24px + 24 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .category__inner ul.products {
    row-gap: 24px;
  }
}
@media (max-width: 1023px) {
  .category__inner ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
@media (max-width: 599px) {
  .category__inner ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

body.page-template-cooperation {
  background-image: url("https://fraga.ua/wp-content/uploads/2026/04/cooperation-bg-scaled.png");
  background-size: cover;
  position: relative;
  z-index: 0;
  color: #F4EDE2;
}
body.page-template-cooperation .label {
  padding-top: 315px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.page-template-cooperation .label {
    padding-top: calc(315px + 0 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.page-template-cooperation .label {
    padding-top: calc(150px + 165 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.page-template-cooperation .label {
    padding-top: 150px;
  }
}
body.page-template-cooperation .label {
  padding-bottom: 250px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.page-template-cooperation .label {
    padding-bottom: calc(250px + 0 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.page-template-cooperation .label {
    padding-bottom: calc(125px + 125 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.page-template-cooperation .label {
    padding-bottom: 125px;
  }
}
body.page-template-cooperation .label__logo--mobile {
  max-height: 317px;
}
body.page-template-cooperation .header {
  background-color: rgba(95, 56, 42, 0.2);
  color: #F4EDE2;
}
body.page-template-cooperation .header_hide-bottom {
  background-color: #5F382A;
}
body.page-template-cooperation .header__top {
  background-color: transparent;
}
body.page-template-cooperation .header__burger svg path {
  stroke: #F4EDE2;
}
body.page-template-cooperation .header .logo__img-mobile path {
  stroke: #F4EDE2;
  fill: #F4EDE2;
}
body.page-template-cooperation .header .logo__img-pc path {
  fill: #F4EDE2;
}
body.page-template-cooperation .header .menu__item-catalog svg path {
  stroke: #F4EDE2;
}
body.page-template-cooperation .header .user-menu__item svg path {
  stroke: #F4EDE2;
}
body.page-template-cooperation .header .underline:after {
  background-color: #F4EDE2;
}
body.page-template-cooperation .footer {
  background-color: #5F382A;
}

.luxury-story {
  padding-top: 137px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .luxury-story {
    padding-top: calc(70px + 67 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .luxury-story {
    padding-top: calc(30px + 40 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .luxury-story {
    padding-top: 30px;
  }
}
.luxury-story {
  padding-bottom: 120px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .luxury-story {
    padding-bottom: calc(60px + 60 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .luxury-story {
    padding-bottom: calc(30px + 30 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .luxury-story {
    padding-bottom: 30px;
  }
}
.luxury-story__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 28px;
  gap: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .luxury-story__inner {
    gap: calc(16px + 12 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .luxury-story__inner {
    gap: calc(10px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .luxury-story__inner {
    gap: 10px;
  }
}
.luxury-story__item:nth-child(1) {
  font-family: "Livret", sans-serif;
  font-size: 68px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .luxury-story__item:nth-child(1) {
    font-size: calc(48px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .luxury-story__item:nth-child(1) {
    font-size: calc(28px + 20 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .luxury-story__item:nth-child(1) {
    font-size: 28px;
  }
}
.luxury-story__item:nth-child(1) {
  font-weight: 400;
  line-height: 115%;
  color: #F4EDE2;
  grid-column: 1/3;
  grid-row: 1/2;
}
.luxury-story__item:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .luxury-story__item:nth-child(2) {
    gap: calc(30px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .luxury-story__item:nth-child(2) {
    gap: calc(5px + 25 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .luxury-story__item:nth-child(2) {
    gap: 5px;
  }
}
.luxury-story__item:nth-child(2) {
  grid-column: 3;
  grid-row: 1/3;
}
.luxury-story__item:nth-child(2) p {
  font-weight: 400;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .luxury-story__item:nth-child(2) p {
    font-size: calc(16px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .luxury-story__item:nth-child(2) p {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .luxury-story__item:nth-child(2) p {
    font-size: 12px;
  }
}
.luxury-story__item:nth-child(2) p {
  line-height: 120%;
}
.luxury-story__item:nth-child(3) {
  grid-column: 1;
  grid-row: 3/5;
}
.luxury-story__item:nth-child(4) {
  grid-column: 2;
  grid-row: 4/6;
}
.luxury-story__item:nth-child(5) {
  grid-column: 3;
  grid-row: 3/5;
}
.luxury-story__item:nth-child(6) {
  grid-column: 1;
  grid-row: 5/7;
}
.luxury-story__item:nth-child(7) {
  grid-column: 2;
  grid-row: 6/8;
}
.luxury-story__item:nth-child(8) {
  grid-column: 3;
  grid-row: 5/7;
}
.luxury-story__item img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.luxury-story__text {
  text-align: justify;
}
@media (max-width: 768px) {
  .luxury-story__item:nth-child(1) {
    grid-column: 1/4;
    grid-row: 1/2;
  }
  .luxury-story__item:nth-child(2) {
    grid-column: 1/4;
    grid-row: 2/3;
  }
}
@media (max-width: 600px) {
  .luxury-story__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .luxury-story__item:nth-child(1) {
    margin-bottom: 18px;
  }
  .luxury-story__item:nth-child(2) {
    margin-bottom: 70px;
  }
  .luxury-story__item:nth-child(3) {
    grid-column: 1/4;
    grid-row: 3;
  }
  .luxury-story__item:nth-child(6) {
    grid-column: 1/4;
    grid-row: 4;
  }
  .luxury-story__item:nth-child(4) {
    grid-column: 1/4;
    grid-row: 5;
  }
  .luxury-story__item:nth-child(7) {
    grid-column: 1/4;
    grid-row: 6;
  }
  .luxury-story__item:nth-child(5), .luxury-story__item:nth-child(8) {
    display: none;
  }
}

.brands {
  padding-top: 120px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .brands {
    padding-top: calc(60px + 60 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .brands {
    padding-top: calc(30px + 30 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .brands {
    padding-top: 30px;
  }
}
.brands {
  padding-bottom: 120px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .brands {
    padding-bottom: calc(60px + 60 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .brands {
    padding-bottom: calc(30px + 30 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .brands {
    padding-bottom: 30px;
  }
}
.brands__title {
  font-weight: 400;
  font-size: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .brands__title {
    font-size: calc(28px + 12 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .brands__title {
    font-size: calc(20px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .brands__title {
    font-size: 20px;
  }
}
.brands__title {
  margin-bottom: 80px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .brands__title {
    margin-bottom: calc(40px + 40 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .brands__title {
    margin-bottom: calc(20px + 20 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .brands__title {
    margin-bottom: 20px;
  }
}
.brands__title {
  line-height: 120%;
  color: #94817A;
  text-align: center;
}
.brands__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .brands__inner {
    grid-auto-rows: calc(80px + 60 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .brands__inner {
    grid-auto-rows: calc(58px + 22 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .brands__inner {
    grid-auto-rows: 58px;
  }
}
.brands__inner {
  align-items: stretch;
  -moz-column-gap: 28px;
       column-gap: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .brands__inner {
    -moz-column-gap: calc(16px + 12 * (100vw - 1024px) / (896));
         column-gap: calc(16px + 12 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .brands__inner {
    -moz-column-gap: calc(11px + 5 * (100vw - 375px) / (649));
         column-gap: calc(11px + 5 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .brands__inner {
    -moz-column-gap: 11px;
         column-gap: 11px;
  }
}
.brands__inner {
  row-gap: 80px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .brands__inner {
    row-gap: calc(46px + 34 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .brands__inner {
    row-gap: calc(16px + 30 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .brands__inner {
    row-gap: 16px;
  }
}
.brands__block {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brands__block img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .brands__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 830px) {
  .brands__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.chocolate-story {
  padding-top: 120px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .chocolate-story {
    padding-top: calc(60px + 60 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .chocolate-story {
    padding-top: calc(30px + 30 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .chocolate-story {
    padding-top: 30px;
  }
}
.chocolate-story {
  padding-bottom: 120px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .chocolate-story {
    padding-bottom: calc(60px + 60 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .chocolate-story {
    padding-bottom: calc(30px + 30 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .chocolate-story {
    padding-bottom: 30px;
  }
}
.chocolate-story__inner {
  max-width: 1084px;
  width: 100%;
  margin: 0 auto;
}
.chocolate-story__title {
  font-family: "Livret", sans-serif;
  font-weight: 400;
  font-size: 68px;
  font-size: 68px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .chocolate-story__title {
    font-size: calc(48px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .chocolate-story__title {
    font-size: calc(32px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .chocolate-story__title {
    font-size: 32px;
  }
}
.chocolate-story__title {
  line-height: 115%;
  text-align: center;
  padding-top: 68px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .chocolate-story__title {
    padding-top: calc(48px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .chocolate-story__title {
    padding-top: calc(28px + 20 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .chocolate-story__title {
    padding-top: 28px;
  }
}
.chocolate-story__title {
  margin-bottom: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .chocolate-story__title {
    margin-bottom: calc(30px + 10 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .chocolate-story__title {
    margin-bottom: calc(20px + 10 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .chocolate-story__title {
    margin-bottom: 20px;
  }
}
.chocolate-story__title {
  color: #F4EDE2;
}
.chocolate-story__text {
  font-weight: 300;
  font-size: 28px;
  font-size: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .chocolate-story__text {
    font-size: calc(20px + 8 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .chocolate-story__text {
    font-size: calc(12px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .chocolate-story__text {
    font-size: 12px;
  }
}
.chocolate-story__text {
  line-height: 120%;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .chocolate-story__text {
    margin-bottom: calc(50px + 30 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .chocolate-story__text {
    margin-bottom: calc(20px + 30 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .chocolate-story__text {
    margin-bottom: 20px;
  }
}
.chocolate-story__text {
  color: #94817A;
}
.chocolate-story__link {
  max-width: 528px;
  width: 100%;
  height: 78px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .chocolate-story__link {
    height: calc(48px + 30 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .chocolate-story__link {
    height: calc(48px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .chocolate-story__link {
    height: 48px;
  }
}
.chocolate-story__link {
  margin: 0 auto;
  color: #94817A;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #94817A;
  border-radius: 8px;
  background-color: transparent;
  transition: all ease-in-out 0.3s;
}
.chocolate-story__link:hover {
  background-color: #94817A;
  color: white;
}

:root {
  --bg-card: #FDFAF7;
  --white: #FFFFFF;
  --error-red: #C0392B;
  --success-green: #5A7A5A;
  --shadow-soft: 0 2px 16px rgba(95, 56, 42, 0.06);
  --shadow-hover: 0 4px 24px rgba(95, 56, 42, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

body.woocommerce-checkout .woocommerce {
  padding-top: 84px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.woocommerce-checkout .woocommerce {
    padding-top: calc(40px + 44 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.woocommerce-checkout .woocommerce {
    padding-top: calc(20px + 20 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.woocommerce-checkout .woocommerce {
    padding-top: 20px;
  }
}
body.woocommerce-checkout .woocommerce {
  padding-bottom: 100px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.woocommerce-checkout .woocommerce {
    padding-bottom: calc(50px + 50 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.woocommerce-checkout .woocommerce {
    padding-bottom: calc(25px + 25 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.woocommerce-checkout .woocommerce {
    padding-bottom: 25px;
  }
}
body.woocommerce-checkout .checkout-inline-error-message {
  font-size: 14px;
  color: var(--error-red);
  margin-top: 4px;
  display: block;
}

.woocommerce-NoticeGroup-checkout {
  display: none;
}

form.woocommerce-checkout {
  display: grid;
  grid-template-areas: "payment title" "payment delivery" "payment delivery";
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto 1fr;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  form.woocommerce-checkout {
    -moz-column-gap: calc(30px + 20 * (100vw - 1024px) / (896));
         column-gap: calc(30px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  form.woocommerce-checkout {
    -moz-column-gap: calc(20px + 10 * (100vw - 375px) / (649));
         column-gap: calc(20px + 10 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  form.woocommerce-checkout {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  form.woocommerce-checkout {
    grid-template-areas: "payment" "title" "delivery";
    grid-template-columns: 1fr;
  }
}

/* --- Two-Column Layout --- */
.col2-set {
  display: block;
  grid-area: payment;
  gap: 48px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .col2-set {
    gap: calc(24px + 24 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .col2-set {
    gap: calc(16px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .col2-set {
    gap: 16px;
  }
}
.col2-set .col-1,
.col2-set .col-2 {
  width: 100%;
  float: none;
}

/* ============================================
   HEADINGS
   ============================================ */
.woocommerce-billing-fields h3,
.wcus-checkout-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
h3#order_review_heading {
  font-weight: 500;
  font-size: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-billing-fields h3,
  .wcus-checkout-fields h3,
  .woocommerce-shipping-fields h3,
  .woocommerce-additional-fields h3,
  h3#order_review_heading {
    font-size: calc(24px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-billing-fields h3,
  .wcus-checkout-fields h3,
  .woocommerce-shipping-fields h3,
  .woocommerce-additional-fields h3,
  h3#order_review_heading {
    font-size: calc(20px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-billing-fields h3,
  .wcus-checkout-fields h3,
  .woocommerce-shipping-fields h3,
  .woocommerce-additional-fields h3,
  h3#order_review_heading {
    font-size: 20px;
  }
}
.woocommerce-billing-fields h3,
.wcus-checkout-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
h3#order_review_heading {
  line-height: 120%;
  color: #5F382A;
  margin-bottom: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-billing-fields h3,
  .wcus-checkout-fields h3,
  .woocommerce-shipping-fields h3,
  .woocommerce-additional-fields h3,
  h3#order_review_heading {
    margin-bottom: calc(24px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-billing-fields h3,
  .wcus-checkout-fields h3,
  .woocommerce-shipping-fields h3,
  .woocommerce-additional-fields h3,
  h3#order_review_heading {
    margin-bottom: calc(20px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-billing-fields h3,
  .wcus-checkout-fields h3,
  .woocommerce-shipping-fields h3,
  .woocommerce-additional-fields h3,
  h3#order_review_heading {
    margin-bottom: 20px;
  }
}
.woocommerce-billing-fields h3,
.wcus-checkout-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
h3#order_review_heading {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 129, 122, 0.4);
  letter-spacing: -0.01em;
}

/* ============================================
   LABELS — colors only
   ============================================ */
.woocommerce-checkout label,
.woocommerce-form-coupon label {
  color: #5F382A;
}
.woocommerce-checkout label .optional,
.woocommerce-form-coupon label .optional {
  color: #94817A;
}
.woocommerce-checkout label abbr.required,
.woocommerce-form-coupon label abbr.required {
  color: var(--error-red);
}

/* ============================================
   INPUTS & TEXTAREAS — colors only
   ============================================ */
.woocommerce-checkout .input-text,
.woocommerce-checkout input[type=text],
.woocommerce-checkout input[type=email],
.woocommerce-checkout input[type=tel],
.woocommerce-checkout input[type=password],
.woocommerce-checkout textarea,
.woocommerce-form-coupon .input-text,
.woocommerce-form-coupon input[type=text],
.woocommerce-form-coupon input[type=email],
.woocommerce-form-coupon input[type=tel],
.woocommerce-form-coupon input[type=password],
.woocommerce-form-coupon textarea {
  color: #5F382A;
  border-color: #94817A;
}
.woocommerce-checkout .input-text::-moz-placeholder, .woocommerce-checkout input[type=text]::-moz-placeholder, .woocommerce-checkout input[type=email]::-moz-placeholder, .woocommerce-checkout input[type=tel]::-moz-placeholder, .woocommerce-checkout input[type=password]::-moz-placeholder, .woocommerce-checkout textarea::-moz-placeholder, .woocommerce-form-coupon .input-text::-moz-placeholder, .woocommerce-form-coupon input[type=text]::-moz-placeholder, .woocommerce-form-coupon input[type=email]::-moz-placeholder, .woocommerce-form-coupon input[type=tel]::-moz-placeholder, .woocommerce-form-coupon input[type=password]::-moz-placeholder, .woocommerce-form-coupon textarea::-moz-placeholder {
  color: #94817A;
}
.woocommerce-checkout .input-text::placeholder,
.woocommerce-checkout input[type=text]::placeholder,
.woocommerce-checkout input[type=email]::placeholder,
.woocommerce-checkout input[type=tel]::placeholder,
.woocommerce-checkout input[type=password]::placeholder,
.woocommerce-checkout textarea::placeholder,
.woocommerce-form-coupon .input-text::placeholder,
.woocommerce-form-coupon input[type=text]::placeholder,
.woocommerce-form-coupon input[type=email]::placeholder,
.woocommerce-form-coupon input[type=tel]::placeholder,
.woocommerce-form-coupon input[type=password]::placeholder,
.woocommerce-form-coupon textarea::placeholder {
  color: #94817A;
}
.woocommerce-checkout .input-text:focus,
.woocommerce-checkout input[type=text]:focus,
.woocommerce-checkout input[type=email]:focus,
.woocommerce-checkout input[type=tel]:focus,
.woocommerce-checkout input[type=password]:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-form-coupon .input-text:focus,
.woocommerce-form-coupon input[type=text]:focus,
.woocommerce-form-coupon input[type=email]:focus,
.woocommerce-form-coupon input[type=tel]:focus,
.woocommerce-form-coupon input[type=password]:focus,
.woocommerce-form-coupon textarea:focus {
  border-color: #5F382A;
  box-shadow: 0 0 0 3px rgba(95, 56, 42, 0.08);
}

/* ============================================
   SELECT2 DROPDOWNS
   ============================================ */
.woocommerce-checkout .select2-container--default .select2-selection--single {
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout .select2-container--default .select2-selection--single {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout .select2-container--default .select2-selection--single {
    font-size: calc(16px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout .select2-container--default .select2-selection--single {
    font-size: 16px;
  }
}
.woocommerce-checkout .select2-container--default .select2-selection--single {
  line-height: 120%;
  color: #5F382A;
  padding-block: 10px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout .select2-container--default .select2-selection--single {
    padding-block: calc(8px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout .select2-container--default .select2-selection--single {
    padding-block: calc(8px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout .select2-container--default .select2-selection--single {
    padding-block: 8px;
  }
}
.woocommerce-checkout .select2-container--default .select2-selection--single {
  padding-inline: 10px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout .select2-container--default .select2-selection--single {
    padding-inline: calc(8px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout .select2-container--default .select2-selection--single {
    padding-inline: calc(8px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout .select2-container--default .select2-selection--single {
    padding-inline: 8px;
  }
}
.woocommerce-checkout .select2-container--default .select2-selection--single {
  height: auto;
  border: 1px solid #94817A;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #5F382A;
  line-height: 120%;
  padding: 0;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 16px;
}

.woocommerce-checkout .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce-checkout .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #5F382A;
  box-shadow: 0 0 0 3px rgba(95, 56, 42, 0.08);
}

.select2-dropdown {
  border: 1px solid rgba(148, 129, 122, 0.4);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.select2-results__option {
  font-size: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .select2-results__option {
    font-size: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .select2-results__option {
    font-size: calc(14px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .select2-results__option {
    font-size: 14px;
  }
}
.select2-results__option {
  padding-block: 8px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .select2-results__option {
    padding-block: calc(6px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .select2-results__option {
    padding-block: calc(4px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .select2-results__option {
    padding-block: 4px;
  }
}
.select2-results__option {
  padding-inline: 10px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .select2-results__option {
    padding-inline: calc(8px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .select2-results__option {
    padding-inline: calc(6px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .select2-results__option {
    padding-inline: 6px;
  }
}
.select2-results__option {
  color: #5F382A;
}

.select2-results__option--highlighted[aria-selected] {
  background-color: #5F382A !important;
  color: var(--white) !important;
}

/* ============================================
   ZEN-UI SELECTS (Nova Poshta plugin)
   ============================================ */
.zen-ui-select__value {
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .zen-ui-select__value {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .zen-ui-select__value {
    font-size: calc(16px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .zen-ui-select__value {
    font-size: 16px;
  }
}
.zen-ui-select__value {
  line-height: 120%;
  color: #5F382A;
  padding-block: 8px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .zen-ui-select__value {
    padding-block: calc(6px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .zen-ui-select__value {
    padding-block: calc(4px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .zen-ui-select__value {
    padding-block: 4px;
  }
}
.zen-ui-select__value {
  padding-inline: 10px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .zen-ui-select__value {
    padding-inline: calc(8px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .zen-ui-select__value {
    padding-inline: calc(6px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .zen-ui-select__value {
    padding-inline: 6px;
  }
}
.zen-ui-select__value {
  border: 1px solid #94817A;
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.zen-ui-select__value:hover {
  background: transparent;
  border-color: #5F382A;
}
.zen-ui-select__value svg {
  width: 14px;
  height: 14px;
  fill: #94817A;
  flex-shrink: 0;
  margin-left: 12px;
}
.zen-ui-select__value.disabled {
  background-color: transparent;
}

.zen-ui-select__value-text {
  color: #94817A;
  opacity: 0.7;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

.zen-ui-select__option--current .zen-ui-select__value-text,
.zen-ui-select__value-text:not(:empty) {
  opacity: 1;
}

.zen-ui-select__dropdown {
  background: #F4EDE2;
  border: 1px solid rgba(148, 129, 122, 0.4);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-hover);
  margin-top: 4px;
  overflow: hidden;
}

.zen-ui-select__search-input {
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .zen-ui-select__search-input {
    font-size: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .zen-ui-select__search-input {
    font-size: calc(14px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .zen-ui-select__search-input {
    font-size: 14px;
  }
}
.zen-ui-select__search-input {
  line-height: 120%;
  color: #5F382A;
  padding-block: 8px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .zen-ui-select__search-input {
    padding-block: calc(6px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .zen-ui-select__search-input {
    padding-block: calc(4px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .zen-ui-select__search-input {
    padding-block: 4px;
  }
}
.zen-ui-select__search-input {
  padding-inline: 10px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .zen-ui-select__search-input {
    padding-inline: calc(8px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .zen-ui-select__search-input {
    padding-inline: calc(6px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .zen-ui-select__search-input {
    padding-inline: 6px;
  }
}
.zen-ui-select__search-input {
  border: none;
  border-bottom: 1px solid rgba(148, 129, 122, 0.4);
  width: 100%;
  outline: none;
  box-sizing: border-box;
}
.zen-ui-select__search-input::-moz-placeholder {
  color: #94817A;
}
.zen-ui-select__search-input::placeholder {
  color: #94817A;
}

.zen-ui-select__option {
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .zen-ui-select__option {
    font-size: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .zen-ui-select__option {
    font-size: calc(14px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .zen-ui-select__option {
    font-size: 14px;
  }
}
.zen-ui-select__option {
  line-height: 120%;
  color: #5F382A;
  padding-block: 8px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .zen-ui-select__option {
    padding-block: calc(6px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .zen-ui-select__option {
    padding-block: calc(4px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .zen-ui-select__option {
    padding-block: 4px;
  }
}
.zen-ui-select__option {
  padding-inline: 10px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .zen-ui-select__option {
    padding-inline: calc(8px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .zen-ui-select__option {
    padding-inline: calc(6px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .zen-ui-select__option {
    padding-inline: 6px;
  }
}
.zen-ui-select__option {
  cursor: pointer;
  transition: all 0.15s ease;
}

.zen-ui-select__option--current {
  background: #5F382A;
  color: #F4EDE2;
}

.zen-ui-select__option:not(.zen-ui-select__option--disabled):not(.zen-ui-select__option--current):hover {
  background: #5F382A;
  color: #F4EDE2;
}

/* ============================================
   FORM ROW SPACING
   ============================================ */
.woocommerce-checkout .form-row {
  margin-bottom: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout .form-row {
    margin-bottom: calc(16px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout .form-row {
    margin-bottom: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout .form-row {
    margin-bottom: 12px;
  }
}
.woocommerce-checkout .form-row.create-account {
  margin-bottom: 0;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  display: inline-block;
  width: 48%;
}

.woocommerce-checkout .form-row-first {
  margin-right: 4%;
}

@media (max-width: 520px) {
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    width: 100%;
    margin-right: 0;
  }
}
.woocommerce-checkout .form-row-wide {
  width: 100%;
}

/* ============================================
   CHECKBOX STYLES
   ============================================ */
.woocommerce-checkout .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout .woocommerce-form__label-for-checkbox {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout .woocommerce-form__label-for-checkbox {
    font-size: calc(14px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout .woocommerce-form__label-for-checkbox {
    font-size: 14px;
  }
}
.woocommerce-checkout .woocommerce-form__label-for-checkbox {
  color: #5F382A;
}

.woocommerce-checkout .woocommerce-form__input-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #5F382A;
  cursor: pointer;
  flex-shrink: 0;
}

/* ============================================
   COUPON SECTION
   ============================================ */
.woocommerce-form-coupon-toggle .woocommerce-info {
  background: transparent;
  border: 1px solid rgba(148, 129, 122, 0.4);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    margin-bottom: calc(20px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    margin-bottom: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    margin-bottom: 16px;
  }
}
.woocommerce-form-coupon-toggle .woocommerce-info {
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    font-size: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    font-size: calc(14px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    font-size: 14px;
  }
}
.woocommerce-form-coupon-toggle .woocommerce-info {
  line-height: 120%;
  color: #5F382A;
  padding-block: 8px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    padding-block: calc(6px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    padding-block: calc(4px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    padding-block: 4px;
  }
}
.woocommerce-form-coupon-toggle .woocommerce-info {
  padding-inline: 10px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    padding-inline: calc(8px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    padding-inline: calc(6px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-form-coupon-toggle .woocommerce-info {
    padding-inline: 6px;
  }
}
.woocommerce-form-coupon-toggle .woocommerce-info {
  border-left: none;
}
.woocommerce-form-coupon-toggle .woocommerce-info::before {
  display: none;
}

.woocommerce-form-coupon-toggle a.showcoupon {
  color: #5F382A;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.woocommerce-form-coupon-toggle a.showcoupon:hover {
  color: rgb(59.6350364964, 35.1532846715, 26.3649635036);
}

.woocommerce-form-coupon {
  background: transparent;
  border: 1px solid rgba(148, 129, 122, 0.4);
  border-radius: var(--radius);
  padding: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-form-coupon {
    padding: calc(20px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-form-coupon {
    padding: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-form-coupon {
    padding: 16px;
  }
}
.woocommerce-form-coupon {
  margin-bottom: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-form-coupon {
    margin-bottom: calc(20px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-form-coupon {
    margin-bottom: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-form-coupon {
    margin-bottom: 16px;
  }
}
.woocommerce-form-coupon p {
  font-size: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-form-coupon p {
    font-size: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-form-coupon p {
    font-size: calc(14px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-form-coupon p {
    font-size: 14px;
  }
}
.woocommerce-form-coupon p {
  color: #94817A;
  margin-bottom: 16px;
}

/* ============================================
   BUTTONS
   ============================================ */
.woocommerce-checkout .button,
.woocommerce-form-coupon .button,
#place_order {
  font-weight: 400;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout .button,
  .woocommerce-form-coupon .button,
  #place_order {
    font-size: calc(20px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout .button,
  .woocommerce-form-coupon .button,
  #place_order {
    font-size: calc(18px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout .button,
  .woocommerce-form-coupon .button,
  #place_order {
    font-size: 18px;
  }
}
.woocommerce-checkout .button,
.woocommerce-form-coupon .button,
#place_order {
  line-height: 120%;
  color: var(--white);
  background-color: #5F382A;
  border: none;
  border-radius: 8px;
  padding-block: 14px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout .button,
  .woocommerce-form-coupon .button,
  #place_order {
    padding-block: calc(12px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout .button,
  .woocommerce-form-coupon .button,
  #place_order {
    padding-block: calc(10px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout .button,
  .woocommerce-form-coupon .button,
  #place_order {
    padding-block: 10px;
  }
}
.woocommerce-checkout .button,
.woocommerce-form-coupon .button,
#place_order {
  padding-inline: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout .button,
  .woocommerce-form-coupon .button,
  #place_order {
    padding-inline: calc(15px + 5 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout .button,
  .woocommerce-form-coupon .button,
  #place_order {
    padding-inline: calc(10px + 5 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout .button,
  .woocommerce-form-coupon .button,
  #place_order {
    padding-inline: 10px;
  }
}
.woocommerce-checkout .button,
.woocommerce-form-coupon .button,
#place_order {
  cursor: pointer;
  transition: background-color var(--transition), box-shadow var(--transition), transform 0.15s ease;
  letter-spacing: 0.02em;
  display: inline-block;
  text-align: center;
  text-transform: initial;
}
.woocommerce-checkout .button:hover,
.woocommerce-form-coupon .button:hover,
#place_order:hover {
  background-color: rgb(59.6350364964, 35.1532846715, 26.3649635036);
  box-shadow: 0 4px 20px rgba(95, 56, 42, 0.2);
  transform: translateY(-1px);
}
.woocommerce-checkout .button:active,
.woocommerce-form-coupon .button:active,
#place_order:active {
  transform: translateY(0);
}

#place_order {
  width: 100%;
  padding-block: 14px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  #place_order {
    padding-block: calc(12px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  #place_order {
    padding-block: calc(10px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  #place_order {
    padding-block: 10px;
  }
}
#place_order {
  padding-inline: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  #place_order {
    padding-inline: calc(15px + 5 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  #place_order {
    padding-inline: calc(10px + 5 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  #place_order {
    padding-inline: 10px;
  }
}
#place_order {
  font-size: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  #place_order {
    font-size: calc(20px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  #place_order {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  #place_order {
    font-size: 16px;
  }
}
#place_order {
  margin-top: 12px;
}

/* ============================================
   SUMMARY
   ============================================ */
.customer-summary {
  border: 1px solid rgba(148, 129, 122, 0.4);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}
.customer-summary h4 {
  font-weight: 500;
  font-size: 18px;
  color: #5F382A;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(148, 129, 122, 0.4);
}

.customer-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 16px;
  color: #5F382A;
}

.customer-summary__label {
  color: #94817A;
  flex-shrink: 0;
}

.customer-summary__value {
  text-align: right;
  word-break: break-word;
}

/* ============================================
   ORDER REVIEW TABLE
   ============================================ */
h3#order_review_heading {
  grid-area: title;
}

#order_review {
  grid-area: delivery;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout-review-order-table {
    margin-bottom: calc(20px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout-review-order-table {
    margin-bottom: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout-review-order-table {
    margin-bottom: 16px;
  }
}
.woocommerce-checkout-review-order-table .cart-subtotal {
  display: none !important;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding-block: 14px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    padding-block: calc(12px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    padding-block: calc(10px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    padding-block: 10px;
  }
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding-inline: 0;
  border-bottom: 1px solid rgba(148, 129, 122, 0.4);
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    font-size: calc(16px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    font-size: 16px;
  }
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  color: #5F382A;
  text-align: left;
}
.woocommerce-checkout-review-order-table thead th {
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout-review-order-table thead th {
    font-size: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout-review-order-table thead th {
    font-size: calc(14px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout-review-order-table thead th {
    font-size: 14px;
  }
}
.woocommerce-checkout-review-order-table thead th {
  text-transform: uppercase;
  color: #94817A;
  padding-bottom: 12px;
}
.woocommerce-checkout-review-order-table .product-name {
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout-review-order-table .product-name {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout-review-order-table .product-name {
    font-size: calc(16px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout-review-order-table .product-name {
    font-size: 16px;
  }
}
.woocommerce-checkout-review-order-table .product-name {
  color: #5F382A;
}
.woocommerce-checkout-review-order-table .product-quantity {
  font-weight: 500;
  color: #94817A;
}
.woocommerce-checkout-review-order-table .product-total {
  text-align: right;
  font-weight: 500;
}
.woocommerce-checkout-review-order-table thead tr:first-child .product-total {
  visibility: hidden;
}
.woocommerce-checkout-review-order-table tfoot th {
  font-weight: 500;
}
.woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout-review-order-table .order-total th,
  .woocommerce-checkout-review-order-table .order-total td {
    font-size: calc(20px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout-review-order-table .order-total th,
  .woocommerce-checkout-review-order-table .order-total td {
    font-size: calc(18px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout-review-order-table .order-total th,
  .woocommerce-checkout-review-order-table .order-total td {
    font-size: 18px;
  }
}
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  font-weight: 400;
  color: #5F382A;
  border-bottom: none;
  padding-top: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout-review-order-table .order-total th,
  .woocommerce-checkout-review-order-table .order-total td {
    padding-top: calc(16px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout-review-order-table .order-total th,
  .woocommerce-checkout-review-order-table .order-total td {
    padding-top: calc(14px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout-review-order-table .order-total th,
  .woocommerce-checkout-review-order-table .order-total td {
    padding-top: 14px;
  }
}

.woocommerce-Price-currencySymbol {
  font-size: inherit;
}

/* ============================================
   SHIPPING METHODS
   ============================================ */
.woocommerce-shipping-methods {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-shipping-methods li label {
  font-size: 20px !important;
  color: #5F382A;
}

#billing_country_field,
#shipping_country_field {
  display: none !important;
}

/* ============================================
   PAYMENT SECTION
   ============================================ */
.woocommerce-checkout-payment {
  margin-top: 24px;
}
.woocommerce-checkout-payment .woocommerce-info {
  background: rgba(95, 56, 42, 0.04);
  border: 1px solid rgba(148, 129, 122, 0.4);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-checkout-payment .woocommerce-info {
    font-size: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-checkout-payment .woocommerce-info {
    font-size: calc(14px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-checkout-payment .woocommerce-info {
    font-size: 14px;
  }
}
.woocommerce-checkout-payment .woocommerce-info {
  color: #94817A;
  border-left: none;
}
.woocommerce-checkout-payment .woocommerce-info::before {
  display: none;
}

.wc_payment_methods {
  display: grid;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.wc_payment_methods .wc_payment_method {
  display: flex;
  align-items: center;
  gap: 15px;
}
.wc_payment_methods label {
  margin-bottom: 0;
}
.wc_payment_methods .input-radio {
  accent-color: #5F382A;
}
.wc_payment_methods .payment_box {
  display: none !important;
}

/* ============================================
   PRIVACY POLICY & TERMS
   ============================================ */
.woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 20px;
}

.woocommerce-privacy-policy-text p {
  font-size: 16px;
  line-height: 150%;
  color: #94817A;
}

.woocommerce-privacy-policy-link {
  color: #5F382A;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.woocommerce-privacy-policy-link:hover {
  color: rgb(59.6350364964, 35.1532846715, 26.3649635036);
}

/* ============================================
   PASSWORD FIELD (Show/Hide toggle)
   ============================================ */
.password-input {
  position: relative;
}

.show-password-input {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #94817A;
}

/* ============================================
   ADDITIONAL FIELDS (Order Notes)
   ============================================ */
.woocommerce-additional-fields {
  margin-top: 8px;
}

/* ============================================
   VALIDATION STATES
   ============================================ */
.woocommerce-checkout .woocommerce-invalid .input-text {
  border-color: var(--error-red);
}

.woocommerce-checkout .woocommerce-validated .input-text {
  border-color: var(--success-green);
}

/* ============================================
   NOTICES
   ============================================ */
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message {
  font-family: "Geometria", "Cormorant Garamond", Georgia, serif;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 18px;
  margin-bottom: 20px;
}

#no_callback_field .woocommerce-input-wrapper {
  display: block;
}
#no_callback_field label.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #5F382A;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#no_callback_field input.input-checkbox {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #5F382A;
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
#no_callback_field input.input-checkbox::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5px;
  height: 9px;
  border: 2px solid #F4EDE2;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s ease;
}
#no_callback_field input.input-checkbox:checked {
  background-color: #5F382A;
  border-color: #5F382A;
}
#no_callback_field input.input-checkbox:checked::after {
  opacity: 1;
}
#no_callback_field input.input-checkbox:focus-visible {
  outline: 2px solid #5F382A;
  outline-offset: 2px;
}

body.page-template-contacts {
  background-color: #5F382A;
  color: #F4EDE2;
}
body.page-template-contacts .label {
  padding-top: 100px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.page-template-contacts .label {
    padding-top: calc(100px + 0 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.page-template-contacts .label {
    padding-top: calc(60px + 40 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.page-template-contacts .label {
    padding-top: 60px;
  }
}
body.page-template-contacts .label {
  padding-bottom: 100px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.page-template-contacts .label {
    padding-bottom: calc(70px + 30 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.page-template-contacts .label {
    padding-bottom: calc(25px + 45 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.page-template-contacts .label {
    padding-bottom: 25px;
  }
}
@media (max-width: 600px) {
  body.page-template-contacts .label__logo--mobile {
    display: inline;
    height: 317px;
  }
}
body.page-template-contacts .custom-newsletter__title {
  color: #F4EDE2;
}
body.page-template-contacts .custom-newsletter svg path {
  fill: #F4EDE2;
}
body.page-template-contacts .custom-newsletter__form-wrapper .tnp-subscription input[type=submit] {
  color: #F4EDE2;
}

.contacts {
  padding-bottom: calc(80px + 80 * (100vw - 390px) / 1530);
}
.contacts__inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding-top: calc(56px + 64 * (100vw - 390px) / 1530);
}
@media screen and (max-width: 1024px) {
  .contacts__inner {
    gap: 16px;
  }
}
@media screen and (max-width: 830px) {
  .contacts__inner {
    flex-direction: column;
    gap: 60px;
  }
}
.contacts__info {
  flex-basis: 665px;
  color: #F4EDE2;
}
@media screen and (max-width: 830px) {
  .contacts__info {
    flex-basis: auto;
  }
}
.contacts__form {
  flex-basis: 667px;
  margin: 0 auto;
}
@media screen and (max-width: 830px) {
  .contacts__form {
    flex-basis: auto;
    width: 100%;
    margin: initial;
  }
}
.contacts .contacts-page .contacts-title {
  font-family: "Livret", sans-serif;
  font-weight: 400;
  font-size: calc(48px + 20 * (100vw - 390px) / 1530);
  line-height: 115%;
  margin-bottom: calc(18px + 22 * (100vw - 390px) / 1530);
}
.contacts .contacts-page .contacts-title ~ p {
  font-weight: 300;
  font-size: calc(22px + 6 * (100vw - 390px) / 1530);
  line-height: 120%;
  margin-bottom: calc(48px + 12 * (100vw - 390px) / 1530);
}
.contacts .contacts-page .contacts-title ~ p a {
  text-decoration: underline;
}
.contacts .contacts-page .contacts-title + p {
  margin-bottom: calc(25px + 5 * (100vw - 390px) / 1530);
}
.contacts .contacts-page .contacts-phone {
  font-weight: 400;
  font-size: calc(20px + 12 * (100vw - 390px) / 1530);
  font-size: 32px;
  line-height: 120%;
  margin-bottom: calc(18px + -4 * (100vw - 390px) / 1530);
}
.contacts .contacts-page .contacts-company,
.contacts .contacts-page .contacts-address {
  font-weight: 400;
  font-size: calc(20px + 6 * (100vw - 390px) / 1530);
  line-height: 100%;
}
.contacts .contact-form {
  display: grid;
  gap: calc(18px + 2 * (100vw - 390px) / 1530);
  color: #F4EDE2;
}
.contacts .contact-form__row {
  display: flex;
  gap: calc(16px + 4 * (100vw - 390px) / 1530);
  align-items: center;
}
@media screen and (max-width: 830px) {
  .contacts .contact-form__row {
    flex-direction: column;
  }
}
.contacts .contact-form__group {
  display: grid;
  width: 100%;
  gap: 8px;
}
.contacts .contact-form label {
  font-size: calc(16px + 10 * (100vw - 390px) / 1530);
}
.contacts .contact-form input,
.contacts .contact-form textarea {
  border-color: #94817A;
  color: #F4EDE2;
  border-radius: 6px;
  padding-block: 13px;
  padding-inline: calc(18px + 2 * (100vw - 390px) / 1530);
}
.contacts .contact-form input::-moz-placeholder, .contacts .contact-form textarea::-moz-placeholder {
  font-size: 22px;
  color: #94817A;
}
.contacts .contact-form input::placeholder,
.contacts .contact-form textarea::placeholder {
  font-size: 22px;
  color: #94817A;
}
.contacts .contact-form input:focus,
.contacts .contact-form textarea:focus {
  border-color: #F4EDE2;
  box-shadow: 0 0 0 3px rgba(244, 237, 226, 0.2);
}
.contacts .contact-form input:not(:-moz-placeholder), .contacts .contact-form textarea:not(:-moz-placeholder) {
  border-color: rgb(182.10625, 169.1625, 164.39375);
}
.contacts .contact-form input:not(:placeholder-shown),
.contacts .contact-form textarea:not(:placeholder-shown) {
  border-color: rgb(182.10625, 169.1625, 164.39375);
}
.contacts .contact-form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  width: 100%;
  background-color: #F4EDE2;
  color: #5F382A;
  font-weight: 400;
  font-size: 22px;
  padding-block: calc(10px + 3 * (100vw - 390px) / 1530);
  padding-inline: 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}
.contacts .contact-form__submit:hover {
  background-color: rgb(235.585, 223.23, 203.815);
  box-shadow: 0 4px 16px rgba(95, 56, 42, 0.25);
}
.contacts .contact-form__submit:active {
  background-color: rgb(227.17, 209.46, 181.63);
  box-shadow: 0 2px 8px rgba(95, 56, 42, 0.2);
  transform: translateY(1px);
}
@media screen and (max-width: 1024px) {
  .contacts .contact-form__submit {
    max-width: 160px;
  }
}
@media screen and (max-width: 600px) {
  .contacts .contact-form__submit {
    max-width: unset;
  }
}

body.woocommerce-account .woocommerce:not(.tinv-wishlist) {
  display: grid;
  grid-template-columns: 31% 66%;
  justify-content: space-between;
  gap: 28px;
  padding-top: 84px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.woocommerce-account .woocommerce:not(.tinv-wishlist) {
    padding-top: calc(40px + 44 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.woocommerce-account .woocommerce:not(.tinv-wishlist) {
    padding-top: calc(20px + 20 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.woocommerce-account .woocommerce:not(.tinv-wishlist) {
    padding-top: 20px;
  }
}
body.woocommerce-account .woocommerce:not(.tinv-wishlist) {
  padding-bottom: 120px;
}
@media screen and (max-width: 600px) {
  body.woocommerce-account .woocommerce:not(.tinv-wishlist) {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }
}

#account-after-sections {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 600px) {
  #account-after-sections {
    flex-direction: column-reverse;
  }
}

body.woocommerce-edit-account .woocommerce-EditAccountForm label {
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm label {
    font-size: calc(20px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm label {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm label {
    font-size: 16px;
  }
}
body.woocommerce-edit-account .woocommerce-EditAccountForm label {
  color: #5F382A;
}
body.woocommerce-edit-account .woocommerce-EditAccountForm label .required {
  color: var(--error-red);
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .input-text {
  border-color: #94817A;
  color: #5F382A;
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .input-text::-moz-placeholder {
  font-size: 22px;
  color: #94817A;
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .input-text::placeholder {
  font-size: 22px;
  color: #94817A;
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .input-text:focus {
  border-color: #5F382A;
  box-shadow: 0 0 0 3px rgba(95, 56, 42, 0.1);
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .input-text:not(:-moz-placeholder) {
  border-color: rgb(121.3625, 104.025, 97.6375);
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .input-text:not(:placeholder-shown) {
  border-color: rgb(121.3625, 104.025, 97.6375);
}
body.woocommerce-edit-account .woocommerce-EditAccountForm {
  /* Ім'я + Прізвище в одну строку */
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .form-row-first,
body.woocommerce-edit-account .woocommerce-EditAccountForm .form-row-last {
  display: inline-block;
  width: 47%;
  margin-bottom: 20px;
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .form-row-first {
  margin-right: 4%;
}
@media (max-width: 768px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm .form-row-first,
  body.woocommerce-edit-account .woocommerce-EditAccountForm .form-row-last {
    width: 100%;
    margin-right: 0;
  }
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .form-row-wide {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm .form-row-wide {
    margin-bottom: calc(15px + 5 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm .form-row-wide {
    margin-bottom: calc(10px + 5 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm .form-row-wide {
    margin-bottom: 10px;
  }
}
body.woocommerce-edit-account .woocommerce-EditAccountForm #account_display_name_description {
  display: none;
}
body.woocommerce-edit-account .woocommerce-EditAccountForm fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
body.woocommerce-edit-account .woocommerce-EditAccountForm fieldset legend {
  font-weight: 500;
  font-size: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm fieldset legend {
    font-size: calc(20px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm fieldset legend {
    font-size: calc(18px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm fieldset legend {
    font-size: 18px;
  }
}
body.woocommerce-edit-account .woocommerce-EditAccountForm fieldset legend {
  color: #5F382A;
  margin-bottom: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm fieldset legend {
    margin-bottom: calc(16px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm fieldset legend {
    margin-bottom: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm fieldset legend {
    margin-bottom: 12px;
  }
}
body.woocommerce-edit-account .woocommerce-EditAccountForm fieldset legend {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
  width: 100%;
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .button {
  background-color: #94817A;
  border: 1px solid #94817A;
  color: #F4EDE2;
  border-radius: 6px;
  font-weight: 400;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm .button {
    font-size: calc(20px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm .button {
    font-size: calc(18px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm .button {
    font-size: 18px;
  }
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .button {
  padding-block: 13px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm .button {
    padding-block: calc(10px + 3 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm .button {
    padding-block: calc(10px + 0 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  body.woocommerce-edit-account .woocommerce-EditAccountForm .button {
    padding-block: 10px;
  }
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .button {
  line-height: 120%;
  padding-inline: 20px;
  cursor: pointer;
  text-transform: initial;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease, color 0.25s ease;
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .button:hover {
  background-color: rgb(127.015, 108.87, 102.185);
  color: #F4EDE2;
  box-shadow: 0 4px 16px rgba(148, 129, 122, 0.25);
}
body.woocommerce-edit-account .woocommerce-EditAccountForm .button:active {
  background-color: rgb(107.23125, 91.9125, 86.26875);
  color: #F4EDE2;
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(148, 129, 122, 0.2);
}

.custom-orders-list {
  display: flex;
  flex-direction: column;
}

.custom-order-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.custom-order-row {
  display: flex;
  align-items: center;
  padding-block: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-row {
    padding-block: calc(16px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-row {
    padding-block: calc(14px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-row {
    padding-block: 14px;
  }
}
.custom-order-row {
  border-bottom: 1px solid rgba(148, 129, 122, 0.25);
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .custom-order-row {
    background-color: rgba(148, 129, 122, 0.05);
    padding-inline: 14px;
    border-bottom: none;
    border-radius: 6px;
    margin-bottom: 15px;
  }
  .custom-order-row:last-child {
    margin-bottom: 0;
  }
}

.custom-order-top {
  display: flex;
  align-items: center;
  width: 100%;
  order: 1;
  gap: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-top {
    gap: calc(18px + 10 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-top {
    gap: calc(12px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-top {
    gap: 12px;
  }
}
.custom-order-top {
  margin-bottom: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-top {
    margin-bottom: calc(18px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-top {
    margin-bottom: calc(14px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-top {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 1440px) {
  .custom-order-top {
    flex-wrap: wrap;
  }
}

.custom-order-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.custom-order-number {
  font-family: Geometria, sans-serif;
  font-weight: 400;
  font-size: 32px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-number {
    font-size: calc(22px + 10 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-number {
    font-size: calc(12px + 10 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-number {
    font-size: 12px;
  }
}
.custom-order-number {
  line-height: 120%;
  color: #5F382A;
  text-decoration: none;
}
.custom-order-number:hover {
  text-decoration: underline;
}

.custom-order-date {
  font-family: Geometria, sans-serif;
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-date {
    font-size: calc(16px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-date {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-date {
    font-size: 12px;
  }
}
.custom-order-date {
  line-height: 100%;
  color: #94817A;
}

.custom-order-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #5F382A;
  padding: 8px;
  transition: transform 0.3s ease;
  margin-left: auto;
  flex-shrink: 0;
}
.custom-order-toggle[aria-expanded=true] {
  transform: rotate(180deg);
}
@media screen and (max-width: 600px) {
  .custom-order-toggle {
    padding: 0;
    margin-right: 0;
    order: 1;
  }
}

.custom-order-images {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
  gap: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-images {
    gap: calc(18px + 10 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-images {
    gap: calc(9px + 9 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-images {
    gap: 9px;
  }
}
@media screen and (max-width: 1440px) {
  .custom-order-images {
    justify-content: space-between;
    order: 2;
    width: 100%;
    margin-top: 12px;
  }
}

.custom-order-thumb {
  max-width: 111px;
  width: 100%;
  height: auto;
}
.custom-order-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.custom-order-delivery-address {
  font-family: Geometria, sans-serif;
  font-weight: 400;
  line-height: 100%;
  width: 100%;
  order: 4;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-delivery-address {
    font-size: calc(16px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-delivery-address {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-delivery-address {
    font-size: 12px;
  }
}
.custom-order-delivery-address {
  margin-bottom: 25px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-delivery-address {
    margin-bottom: calc(21px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-delivery-address {
    margin-bottom: calc(20px + 1 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-delivery-address {
    margin-bottom: 20px;
  }
}
.custom-order-delivery-address {
  color: #94817A;
}

.custom-order-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  order: 5;
  font-family: Geometria, sans-serif;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-summary {
    font-size: calc(16px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-summary {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-summary {
    font-size: 12px;
  }
}
.custom-order-summary {
  font-weight: 500;
  line-height: 100%;
  color: #94817A;
}

.custom-order-details {
  width: 100%;
  overflow: hidden;
  transition: height 0.35s ease;
  display: none;
}

.custom-order-details-inner {
  margin-top: 30px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-details-inner {
    margin-top: calc(25px + 5 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-details-inner {
    margin-top: calc(20px + 5 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-details-inner {
    margin-top: 20px;
  }
}
.custom-order-details-inner {
  padding: 20px;
  background: rgba(148, 129, 122, 0.05);
  border-radius: 12px;
}
@media screen and (max-width: 600px) {
  .custom-order-details-inner {
    padding: 0 0 60px;
    background-color: transparent;
  }
}

.custom-order-items-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-items-list {
    gap: calc(24px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-items-list {
    gap: calc(20px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-items-list {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .custom-order-items-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .custom-order-items-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.custom-order-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-item {
    gap: calc(12px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-item {
    gap: calc(8px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-item {
    gap: 8px;
  }
}
.custom-order-item {
  border: none;
  padding: 0;
  height: 100%;
}

.custom-order-item-thumb {
  width: 100%;
}
.custom-order-item-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.custom-order-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-item-info {
    gap: calc(14px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-item-info {
    gap: calc(8px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-item-info {
    gap: 8px;
  }
}

.custom-order-item-name {
  font-family: Geometria, sans-serif;
  display: block;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-item-name {
    font-size: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-item-name {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-item-name {
    font-size: 12px;
  }
}
.custom-order-item-name {
  line-height: 120%;
  color: #5F382A;
}

.custom-order-item-qty {
  text-align: right;
  margin-right: 5px;
  font-size: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-item-qty {
    font-size: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-item-qty {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-item-qty {
    font-size: 12px;
  }
}
.custom-order-item-qty {
  line-height: 120%;
}

.custom-order-item-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  gap: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-item-bottom {
    gap: calc(12px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-item-bottom {
    gap: calc(8px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-item-bottom {
    gap: 8px;
  }
}
.custom-order-item-bottom {
  margin-top: auto;
}

.custom-order-item-price {
  font-family: Geometria, sans-serif;
  font-weight: 400;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-item-price {
    font-size: calc(18px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-item-price {
    font-size: calc(14px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-item-price {
    font-size: 14px;
  }
}
.custom-order-item-price {
  line-height: 120%;
  color: #5F382A;
}

.custom-order-item-weight {
  font-family: Geometria, sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-item-weight {
    font-size: calc(16px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-item-weight {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-item-weight {
    font-size: 12px;
  }
}
.custom-order-item-weight {
  line-height: 120%;
  color: #94817A;
}

.custom-order-item-meta span {
  font-size: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .custom-order-item-meta span {
    font-size: calc(14px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .custom-order-item-meta span {
    font-size: calc(12px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .custom-order-item-meta span {
    font-size: 12px;
  }
}
.custom-order-item-meta span {
  color: #94817A;
  display: inline;
}

.woocommerce-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.woocommerce-MyAccount-content .woocommerce-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-MyAccount-content .woocommerce-info {
    gap: calc(15px + 5 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-MyAccount-content .woocommerce-info {
    gap: calc(10px + 5 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-MyAccount-content .woocommerce-info {
    gap: 10px;
  }
}
.woocommerce-MyAccount-content .button.wc-forward {
  width: 40%;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .woocommerce-MyAccount-content .button.wc-forward {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .woocommerce-MyAccount-content .button.wc-forward {
    font-size: calc(16px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .woocommerce-MyAccount-content .button.wc-forward {
    font-size: 16px;
  }
}
.woocommerce-MyAccount-content .button.wc-forward {
  line-height: 120%;
}
@media screen and (max-width: 600px) {
  .woocommerce-MyAccount-content .button.wc-forward {
    width: 100%;
    padding: 10px 4px;
  }
}

/**
 * TI WooCommerce Wishlist — Grid Card Layout
 * Works with the custom ti-wishlist.php template (div-based).
 */
/* ===== Wishlist header ===== */
.tinv-wishlist .tinv-header {
  display: none;
}

/* ===== Grid ===== */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 28px;
       column-gap: 28px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-grid {
    -moz-column-gap: calc(18px + 10 * (100vw - 1024px) / (896));
         column-gap: calc(18px + 10 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-grid {
    -moz-column-gap: calc(8px + 10 * (100vw - 375px) / (649));
         column-gap: calc(8px + 10 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-grid {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.wishlist-grid {
  row-gap: 60px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-grid {
    row-gap: calc(44px + 16 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-grid {
    row-gap: calc(24px + 20 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-grid {
    row-gap: 24px;
  }
}
@media screen and (max-width: 1440px) {
  .wishlist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Card ===== */
.wishlist_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

/* ===== Thumbnail ===== */
.wishlist-item__thumbnail {
  width: 100%;
  margin-bottom: 16px;
}
.wishlist-item__thumbnail a {
  display: block;
  width: 100%;
}
.wishlist-item__thumbnail img {
  width: 100%;
  height: 186px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__thumbnail img {
    height: calc(154px + 32 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__thumbnail img {
    height: calc(122px + 32 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__thumbnail img {
    height: 122px;
  }
}
.wishlist-item__thumbnail img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  margin: 0;
}

/* ===== Name ===== */
.wishlist-item__name {
  margin-bottom: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__name {
    margin-bottom: calc(12px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__name {
    margin-bottom: calc(8px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__name {
    margin-bottom: 8px;
  }
}
.wishlist-item__name a {
  font-family: "Geometria", sans-serif;
  font-weight: 400;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__name a {
    font-size: calc(20px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__name a {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__name a {
    font-size: 16px;
  }
}
.wishlist-item__name a {
  line-height: 120%;
  color: #5F382A;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

/* ===== Price + Weight row ===== */
.wishlist-item__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  width: 100%;
  margin-top: auto;
  margin-bottom: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__price-row {
    margin-bottom: calc(12px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__price-row {
    margin-bottom: calc(8px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__price-row {
    margin-bottom: 8px;
  }
}
.wishlist-item__price-row {
  gap: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__price-row {
    gap: calc(16px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__price-row {
    gap: calc(8px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__price-row {
    gap: 8px;
  }
}

.wishlist-item__price .woocommerce-Price-amount {
  font-family: "Geometria", sans-serif;
  font-weight: 400;
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__price .woocommerce-Price-amount {
    font-size: calc(20px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__price .woocommerce-Price-amount {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__price .woocommerce-Price-amount {
    font-size: 16px;
  }
}
.wishlist-item__price .woocommerce-Price-amount {
  line-height: 120%;
  color: #5F382A;
}

.wishlist-item__weight {
  font-family: "Geometria", sans-serif;
  font-weight: 400;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__weight {
    font-size: calc(18px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__weight {
    font-size: calc(12px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__weight {
    font-size: 12px;
  }
}
.wishlist-item__weight {
  line-height: 120%;
  color: #94817A;
}

/* ===== Allergens (inside price-row) ===== */
.wishlist-item__allergens {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
  gap: 8px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__allergens {
    gap: calc(6px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__allergens {
    gap: calc(4px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__allergens {
    gap: 4px;
  }
}
.wishlist-item__allergens img {
  width: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__allergens img {
    width: calc(20px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__allergens img {
    width: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__allergens img {
    width: 16px;
  }
}
.wishlist-item__allergens img {
  height: auto;
  display: block;
}

/* ===== Wishlist add button (add to cart) ===== */
.wishlist-item__add-to-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: Geometria, sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__add-to-cart {
    font-size: calc(16px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__add-to-cart {
    font-size: calc(12px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__add-to-cart {
    font-size: 12px;
  }
}
.wishlist-item__add-to-cart {
  line-height: 100%;
  color: #5F382A;
  background-color: transparent;
  border: 1px solid #5F382A;
  padding-block: 14px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__add-to-cart {
    padding-block: calc(12px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__add-to-cart {
    padding-block: calc(8px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__add-to-cart {
    padding-block: 8px;
  }
}
.wishlist-item__add-to-cart {
  padding-inline: 10px;
  border-radius: 6px;
  transition: all 0.4s ease;
}
.wishlist-item__add-to-cart:hover {
  background-color: #5F382A;
  color: #F4EDE2;
}

/* ===== Wishlist heart button (removes from wishlist) ===== */
.wishlist-item__heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__heart {
    width: calc(28px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__heart {
    width: calc(24px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__heart {
    width: 24px;
  }
}
.wishlist-item__heart {
  height: 32px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .wishlist-item__heart {
    height: calc(28px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .wishlist-item__heart {
    height: calc(24px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .wishlist-item__heart {
    height: 24px;
  }
}
.wishlist-item__heart {
  border-radius: 6px;
  border: none;
  color: #5F382A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: none;
  background-color: #F4EDE2;
  transition: background 0.25s ease;
}
.wishlist-item__heart svg {
  width: 70%;
  height: auto;
  display: block;
}

/* ===== Wishlist Empty ===== */
.cart-empty.woocommerce-info {
  margin-bottom: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .cart-empty.woocommerce-info {
    margin-bottom: calc(15px + 5 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .cart-empty.woocommerce-info {
    margin-bottom: calc(10px + 5 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .cart-empty.woocommerce-info {
    margin-bottom: 10px;
  }
}

.button.wc-backward {
  width: 40%;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .button.wc-backward {
    font-size: calc(18px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .button.wc-backward {
    font-size: calc(16px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .button.wc-backward {
    font-size: 16px;
  }
}
.button.wc-backward {
  line-height: 120%;
}
@media screen and (max-width: 600px) {
  .button.wc-backward {
    width: 100%;
    padding: 10px 4px;
  }
}

.fraga-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.fraga-popup--visible {
  opacity: 1;
  visibility: visible;
}
.fraga-popup__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.fraga-popup__center {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.fraga-popup__card {
  background: #F4EDE2;
  border-radius: 12px;
  max-width: 786px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  padding-inline: 60px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .fraga-popup__card {
    padding-inline: calc(40px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .fraga-popup__card {
    padding-inline: calc(20px + 20 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .fraga-popup__card {
    padding-inline: 20px;
  }
}
.fraga-popup__card {
  padding-top: 40px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .fraga-popup__card {
    padding-top: calc(35px + 5 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .fraga-popup__card {
    padding-top: calc(30px + 5 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .fraga-popup__card {
    padding-top: 30px;
  }
}
.fraga-popup__card {
  padding-bottom: 50px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .fraga-popup__card {
    padding-bottom: calc(40px + 10 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .fraga-popup__card {
    padding-bottom: calc(35px + 5 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .fraga-popup__card {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 600px) {
  .fraga-popup__card {
    border-radius: 16px;
    width: 100%;
    max-height: 85vh;
  }
}
.fraga-popup__close {
  position: absolute;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: opacity 0.15s ease;
  display: none;
}
@media screen and (max-width: 600px) {
  .fraga-popup__close {
    display: block;
    right: 20px;
    top: 10px;
    width: 24px;
    height: 24px;
  }
}
.fraga-popup__close:hover {
  opacity: 0.7;
}
.fraga-popup__icon {
  font-size: 64px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .fraga-popup__icon {
    font-size: calc(52px + 12 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .fraga-popup__icon {
    font-size: calc(42px + 10 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .fraga-popup__icon {
    font-size: 42px;
  }
}
.fraga-popup__icon {
  margin-bottom: 24px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .fraga-popup__icon {
    margin-bottom: calc(20px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .fraga-popup__icon {
    margin-bottom: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .fraga-popup__icon {
    margin-bottom: 16px;
  }
}
.fraga-popup__title {
  font-family: "Livret", sans-serif;
  font-weight: 400;
  color: #5F382A;
  font-size: 44px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .fraga-popup__title {
    font-size: calc(30px + 14 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .fraga-popup__title {
    font-size: calc(22px + 8 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .fraga-popup__title {
    font-size: 22px;
  }
}
.fraga-popup__title {
  line-height: 120%;
  margin-bottom: 16px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .fraga-popup__title {
    margin-bottom: calc(14px + 2 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .fraga-popup__title {
    margin-bottom: calc(12px + 2 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .fraga-popup__title {
    margin-bottom: 12px;
  }
}
.fraga-popup__title {
  margin-top: 0;
}
.fraga-popup__text {
  color: #94817A;
  font-weight: 400;
  line-height: 150%;
  font-size: 22px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .fraga-popup__text {
    font-size: calc(18px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .fraga-popup__text {
    font-size: calc(14px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .fraga-popup__text {
    font-size: 14px;
  }
}
.fraga-popup__text {
  margin-bottom: 32px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .fraga-popup__text {
    margin-bottom: calc(28px + 4 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .fraga-popup__text {
    margin-bottom: calc(24px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .fraga-popup__text {
    margin-bottom: 24px;
  }
}
.fraga-popup__text {
  margin-top: 0;
}
.fraga-popup__btn {
  display: inline-block;
  cursor: pointer;
  border: 1px solid #5F382A;
  background: #5F382A;
  color: #F4EDE2;
  border-radius: 6px;
  font-weight: 400;
  text-transform: none;
  width: 100%;
  max-width: 320px;
  transition: background 0.15s ease, color 0.15s ease;
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .fraga-popup__btn {
    font-size: calc(20px + 6 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .fraga-popup__btn {
    font-size: calc(16px + 4 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .fraga-popup__btn {
    font-size: 16px;
  }
}
.fraga-popup__btn {
  line-height: 100%;
  height: 60px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .fraga-popup__btn {
    height: calc(45px + 15 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .fraga-popup__btn {
    height: calc(38px + 7 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .fraga-popup__btn {
    height: 38px;
  }
}
.fraga-popup__btn:hover {
  background: transparent;
  color: #5F382A;
}

.error {
  padding-top: 60px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .error {
    padding-top: calc(100px + -40 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .error {
    padding-top: calc(150px + -50 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .error {
    padding-top: 150px;
  }
}
.error {
  padding-bottom: 120px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .error {
    padding-bottom: calc(100px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .error {
    padding-bottom: calc(80px + 20 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .error {
    padding-bottom: 80px;
  }
}
.error {
  height: 933px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .error {
    height: calc(915px + 18 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .error {
    height: calc(900px + 15 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .error {
    height: 900px;
  }
}
.error {
  background-image: url("https://fraga.ua/wp-content/uploads/2026/04/bg-404.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
}
.error > .container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .error > .container {
    gap: 80px;
  }
}
.error::before {
  position: absolute;
  content: "";
  display: block;
  inset: 0;
  background-color: rgba(95, 56, 42, 0.7);
}
.error__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #F4EDE2;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.error__code {
  font-weight: 300;
  font-size: 80px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .error__code {
    font-size: calc(60px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .error__code {
    font-size: calc(48px + 12 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .error__code {
    font-size: 48px;
  }
}
.error__code {
  line-height: 135%;
}
@media screen and (max-width: 600px) {
  .error__code {
    margin-bottom: 51px;
  }
}
.error__title {
  max-width: 600px;
  width: 100%;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .error__title {
    margin-bottom: calc(40px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .error__title {
    margin-bottom: calc(28px + 12 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .error__title {
    margin-bottom: 28px;
  }
}
.error__title {
  font-family: "Livret", sans-serif;
  font-size: 68px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .error__title {
    font-size: calc(48px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .error__title {
    font-size: calc(32px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .error__title {
    font-size: 32px;
  }
}
.error__title {
  line-height: 150%;
}
@media screen and (max-width: 600px) {
  .error__title {
    margin-top: unset;
  }
}
.error__button {
  max-width: 389px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .error__button {
    height: calc(48px + 12 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .error__button {
    height: calc(32px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .error__button {
    height: 32px;
  }
}
.error__button {
  background-color: #F4EDE2;
  color: #5F382A;
  font-size: 26px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .error__button {
    font-size: calc(18px + 8 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .error__button {
    font-size: calc(12px + 6 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .error__button {
    font-size: 12px;
  }
}
.error__button {
  border-radius: 6px;
  transition: all ease-in 0.3s;
}
.error__button:hover {
  background-color: #5F382A;
  color: #F4EDE2;
}
.error .label {
  padding: 0;
  position: relative;
  z-index: 1;
  height: 46%;
}
.error .label img {
  height: 100%;
}

.success {
  background-color: #F4EDE2;
}
.success__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 998px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .success__inner {
    height: calc(850px + 148 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .success__inner {
    height: calc(800px + 50 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .success__inner {
    height: 800px;
  }
}
.success__inner {
  text-align: center;
}
.success__title {
  font-family: "Livret", sans-serif;
  font-size: 68px;
}
@media (max-width: 1920px) and (min-width: 1024px) {
  .success__title {
    font-size: calc(48px + 20 * (100vw - 1024px) / (896));
  }
}
@media (max-width: 1024px) and (min-width: 375px) {
  .success__title {
    font-size: calc(32px + 16 * (100vw - 375px) / (649));
  }
}
@media (max-width: 375px) {
  .success__title {
    font-size: 32px;
  }
}
.success__title {
  font-weight: 400;
  line-height: 115%;
  color: #5F382A;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .success__title {
    gap: 50px;
  }
}
@media screen and (max-width: 600px) {
  .success__title span {
    font-family: "Geometria", sans-serif;
    font-size: 68px;
    line-height: 120%;
  }
}
@media screen and (max-width: 600px) and (max-width: 1920px) and (min-width: 1024px) {
  .success__title span {
    font-size: calc(48px + 20 * (100vw - 1024px) / (896));
  }
}
@media screen and (max-width: 600px) and (max-width: 1024px) and (min-width: 375px) {
  .success__title span {
    font-size: calc(16px + 32 * (100vw - 375px) / (649));
  }
}
@media screen and (max-width: 600px) and (max-width: 375px) {
  .success__title span {
    font-size: 16px;
  }
}
.success .label {
  padding: 0;
}
@media screen and (max-width: 600px) {
  .success .label {
    height: 45%;
  }
}
.success .label img {
  height: 100%;
}
