:root {
  /* Core Colors */
  --color-primary: #006A53;
  --color-secondary: #BFDFAF;
  --color-tetriary: #F1F5EE;
  --color-black: #171717;
  --color-white: #FEFEFE;
  --color-star: #EFBD00;
  --color-gray: #939EAE;

  /* Translucent variants (HEX + Alpha) */
  --color-more-gray: #171717B3;
  /* 70% opacity */
  --color-light-gray: #C5C5C580;
  /* 50% opacity */

  /* Backgrounds */
  --color-background-1: #FAFAFA;
  --color-background-2: #F1F4F1;
  --color-background-3: #F2C663;

  /* Background Dies */
  --color-background-die-1: #FEFEFEB3;
  /* 70% opacity */
  --color-background-die-2: #17171799;
  /* 60% opacity */
  --color-background-die-3: #F1F4F133;
  /* 20% opacity */

  /* Shadows */
  --shadow-1: 0 1px 4px 0 rgba(12, 12, 13, 0.2);
  --shadow-2: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  --shadow-3: 0 -1px 4px 0 rgba(12, 12, 13, 0.2);
  --shadow-4: 0px 4px 20px 0px #0000000F;

}

html,
body {
  overscroll-behavior-x: none !important;
  width: 100%;
  height: 100%;
}

html {
  font-family: 'TT Chocolates', sans-serif;
  font-size: 62.5%;
  font-weight: 300;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-white);
  /* Reset the body to 1.6rem so your normal text is 16px again */
  font-size: 1.6rem;
  padding-top: var(--header-height);
}

body:has(.modal[data-active="true"]),
body:has(#catalog-menu-app-root>.active),
body:has(.mobile-menu.active) {
  overflow: hidden;
}

main {
  overflow: hidden;
  font-size: 1.9rem;
  font-weight: 400;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a:hover {
  color: var(--color-star);
}

ul,
ol {
  list-style: none;
}

input[type="submit"],
button {
  display: inline-flex;
  color: inherit;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Container */
.container {
  box-sizing: content-box;
  max-width: 1280px;
  padding: 0 42px;
  margin: 0 auto;

  @media (max-width: 1215px) {
    padding: 0 24px;
  }

  @media (max-width: 768px) {
    padding: 0 12px;
  }
}


/* Button */
.button {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  gap: 0.8rem;
  align-items: center;
  height: fit-content;
  border-radius: 10rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1.35rem 3.2rem;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.08;
  letter-spacing: 0em;
  border: .1rem solid var(--color-primary);

  @media (max-width: 576px) {
    font-size: 20px;
  }
}

.button:hover,
.button:active {
  background-color: var(--color-star);
  color: var(--color-white);
  border-color: var(--color-light-gray);
}

.button--white {
  color: var(--color-black);
  border: 0.1rem solid var(--color-secondary);
  background-color: var(--color-white);
}

.button--white:hover {
  color: var(--color-black);
  background-color: var(--color-secondary);
}

.button--light:not([data-active="true"]) {
  color: var(--color-black);
  border: 0.1rem solid var(--color-light-gray);
  background-color: var(--color-tetriary);
}

.button[disabled] {
  pointer-events: none;
  background-color: var(--color-tetriary);
  color: var(--color-gray);
  opacity: 0.5;
}


/* Burger Button */
.burger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  border-radius: 10rem;
  border: 0.1rem solid var(--color-black);
  cursor: pointer;
}

.burger-button:hover {
  --svg-color-1: none;
  --svg-color-2: currentColor;
  color: currentColor;
}

/* Helpers */
.text-star {
  color: var(--color-star);
}

.warning {
  margin: 12px 0;
  font-size: 18px;
  font-weight: normal;
  color: orange;
  padding: 16px;
  border: 2px solid orange;
  width: fit-content;
  max-width: 100%;
}

.notification {
  margin: 12px 0;
  font-size: 18px;
  font-weight: normal;
  color: green;
  background: var(--color-white);
  padding: 16px;
  border: 2px solid green;
  width: fit-content;
  max-width: 100%;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* Header */
.header {
  background: var(--color-white);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header__top {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;

  @media (max-width: 1023px) {
    padding-top: 3.2rem;
    padding-bottom: 1.2rem;
  }
}

.header__main {
  display: flex;
  align-items: center;
  gap: 4.4rem;
  padding: 1.25rem 0;

  @media (max-width: 1023px) {
    justify-content: space-between;
  }

  @media (max-width: 1023px) {
    padding: 0 0 2.4rem;
  }
}

.header__top-left {
  flex: auto;
  display: flex;
  align-items: center;
  gap: 4rem;

  @media (max-width: 1023px) {
    justify-content: space-between;
    gap: 2rem;
  }
}

.header__top-right {
  display: flex;
  gap: 1.2rem;

  @media (max-width: 1023px) {
    display: none;
  }
}

.header__location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.header__location:hover .header__location-chevron {
  --svg-color-1: var(--color-star);
}

.header__top-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.header__burger {
  position: relative;
  display: none;

  @media (max-width: 1023px) {
    display: flex;
    align-items: center;
  }
}

.header__burger.active .header__burger-icon {
  visibility: hidden;
}

.header__burger-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
}

.header__burger.active .header__burger-close {
  visibility: visible;
}

.header__logo {
  flex: none;

  @media (max-width: 1023px) {
    display: none;
  }

  @media (max-width: 1023px) {
    display: none;
  }
}

.header__main-right {
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.2rem;

  @media (max-width: 1023px) {
    flex: none;
  }
}

.header__main-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;

  @media (max-width: 1023px) {
    display: none;
  }
}

.header__search-container {
  position: relative;
  flex: 0 1 31rem;

  /* fibosearch plugin */
  input {
    border: 0.1rem solid var(--color-gray) !important;
    background-color: transparent !important;
  }
}

.header__search {
  position: relative;
  width: 100%;
  padding: 0.9rem 1.6rem;
  padding-right: 4.2rem;
  border-radius: 10rem;
  border: 0.1rem solid var(--color-black);
  outline: none;
  background-color: transparent;
  z-index: 1;
}

.header__search-placeholder {
  position: absolute;
  top: 50%;
  left: 1.6rem;
  transform: translateY(-50%);
  color: var(--color-gray);
  z-index: 0;
}

.header__search-container:has(input:not(:placeholder-shown)) .header__search-placeholder {
  visibility: hidden;
}

.header__search-icon {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  color: gray;
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 0.2rem;

  @media (max-width: 1023px) {
    display: none;
  }
}

.header__icons-icon {
  color: var(--color-gray);
}

.counter-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.counter-icon__value {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  text-align: center;
  top: 0;
  right: 0;
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 0.82;
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 100%;
  border: 0.05rem solid var(--color-gray);
}

.counter-icon[data-active="false"] .counter-icon__value {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 99;
  transform: translateX(-100%);
  transition: .4s transform;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 2.4rem;
  overflow-y: auto;
  padding: 3.4rem 1.6rem 4rem;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}

.mobile-menu__button {
  margin-top: auto;
  width: 100%;
}

/* Stamp */
.stamp {
  display: flex;
  width: 15.2rem;
  height: 15.2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 0.1rem solid #327F83;
  backdrop-filter: blur(6px);
  text-align: center;
  gap: 0.4rem;
}

@supports (-webkit-backdrop-filter: blur(6px)) and (not (backdrop-filter: blur(6px))) {
  .stamp {
    -webkit-backdrop-filter: blur(6px);
  }
}

/* Home Hero */
.home-hero__slide {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  height: auto;
  padding-bottom: 7.4rem;
}

.home-hero__slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;

  @media (max-width: 1215px) {
    min-width: calc(100% + 20rem);
    object-position: -20rem top;
  }

  @media (max-width: 768px) {
    min-width: unset;
    object-position: left top;
  }
}

.home-hero__slide-image--center {
  object-position: center;
}

.home-hero__swiper-controls {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.4rem;
  z-index: 1;
}

.home-hero__swiper-pagination,
.home-hero__swiper-prev,
.home-hero__swiper-next {
  position: relative;
  width: auto !important;
}

.swiper-pagination-bullet {
  background: var(--color-white) !important;
  margin: 0 0.6rem !important;
}

.home-hero__swiper-prev,
.home-hero__swiper-next {
  --svg-color-1: none;
  --svg-color-2: currentColor;
  --svg-color-3: var(--color-white);

  cursor: pointer;
}

.home-hero__swiper-prev:hover,
.home-hero__swiper-next:hover {
  --svg-color-2: var(--color-white);
  --svg-color-3: var(--color-primary);
}

.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* First Home Hero Slide */
.first-home-hero-slide {
  @media (max-width: 768px) {
    display: flex !important;
    align-items: center;
    padding: 7.4rem 0;
  }
}

.first-home-hero-slide__container {
  position: relative;
  height: 100%;
  padding-top: 18svh;

  @media (max-width: 768px) {
    padding: 6.2rem 0;
    top: 2.5rem;
  }
}


.first-home-hero-slide__column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.first-home-hero-slide__title {
  font-family: 'Constantia';
  font-weight: 700;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-white);

  @media (max-width: 768px) {
    font-size: 4.6rem;
    color: var(--color-primary);
  }
}

.first-home-hero-slide__intro {
  color: var(--color-white);
}

.first-home-hero-slide__button {
  margin-top: 2.4rem;
}

/* Second Home Hero Slide */
.second-home-hero-slide {
  position: relative;
}

.second-home-hero-slide__container {
  position: relative;
  height: 100%;
  display: flex;
}

.second-home-hero-slide__stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-120%, -75%);

  @media (max-width: 1023px) {
    top: 30%;
    left: 17%;
    transform: none;
  }

  @media (max-width: 768px) {
    width: 12.4rem;
    height: 12.4rem;
    top: 11%;
    left: 53%;
  }
}

.second-home-hero-slide__column {
  width: 42rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 17vh;
  margin-left: auto;

  @media (max-width: 768px) {
    margin: 0 auto;
    width: auto;
    padding-top: 42svh;
  }
}

.second-home-hero-slide__title {
  @media (max-width: 768px) {
    padding-left: 2.4rem;
  }
}

.second-home-hero-slide__intro {
  margin-bottom: 3.2rem;

  @media (max-width: 768px) {
    padding-left: 2.4rem;
    margin-bottom: 1.2rem;
  }
}

.second-home-hero-slide__discount {
  border-radius: 10rem;
  background-color: var(--color-primary);
  padding: 0.8rem 1.2rem;

  @media (max-width: 768px) {
    margin-left: auto;
    margin-bottom: 1.2rem;
  }
}

.second-home-hero-slide__offer {
  position: relative;
  width: 100%;
  padding: 3.2rem 2.4rem 2.2rem;
  border-radius: 10rem;
  background-color: var(--color-primary);
  margin-top: 8.4rem;
  margin-left: -2.4rem;

  @media (max-width: 768px) {
    width: auto;
    margin-left: 0;
    margin-top: 0;
  }
}

.second-home-hero-slide__offer-now {
  height: 0;
  transform: translateY(-10.6rem);

  @media (max-width: 768px) {
    transform: translateY(-7.4rem);
  }
}

.second-home-hero-slide__offer-old span:first-child {
  text-decoration: line-through;
  text-decoration-thickness: 0.2rem;
}

/* Third Home Hero Slide */
.third-home-hero-slide {
  @media (max-width: 768px) {
    background-color: #ECF4E7;
  }
}

.third-home-hero-slide__image {

  @media (max-width: 768px) {
    object-fit: contain;
    object-position: center;
  }
}

.third-home-hero-slide__container {
  position: relative;
}

.third-home-hero-slide__stamp {
  position: absolute;
  top: 4rem;
  left: 8%;

  @media (max-width: 768px) {
    top: 9rem;
    left: unset;
    right: 1.6rem;
    width: 12.4rem;
    height: 12.4rem;
  }
}

.third-home-hero-slide__column {
  display: flex;
  flex-direction: column;
  max-width: 55rem;
  padding-top: 17vh;
  margin-left: auto;

  @media (max-width: 768px) {
    margin: 0 auto;
    width: auto;
    padding-top: 42svh;
  }
}

.third-home-hero-slide__title {
  @media (max-width: 768px) {
    margin-bottom: 0.4rem;
  }
}

.third-home-hero-slide__intro {
  margin-bottom: 2.2rem;
}

.third-home-hero-slide__banks {
  margin-bottom: 3.2rem;
}

.third-home-hero-slide__button {
  width: fit-content;

  @media (max-width: 1215px) and (min-width: 769px) {
    margin-left: auto;
  }
}

/* Sales Hits Card */
.sales-hits-card {
  display: block;
  position: relative;
}

.sales-hits-card__image {
  width: 100%;
  aspect-ratio: 28 / 18;
  border-radius: 2.4rem;
  margin-bottom: 1.4rem;
}

.sales-hits-card__title {
  margin-bottom: 0.4rem;
}

.sales-hits-card__price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sales-hits-card__price-actual {
  color: var(--color-primary);
}

.sales-hits-card__price-old {
  color: var(--color-gray);
  text-decoration: line-through;
  text-decoration-thickness: 0.1rem;
}

.sales-hits-card__discount {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.8rem 1.2rem;
  border-radius: 10rem;
  color: var(--color-white);
  background-color: var(--color-primary);
}

/* Sales Hits Card */
.new-arrivals-card {
  position: relative;
}

.new-arrivals-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 380 / 168;
  border-radius: 2.4rem;
  margin-bottom: 1.4rem;
  object-fit: cover;
}

.new-arrivals-card__title {
  margin-bottom: 0.4rem;
}

.new-arrivals-card__price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.new-arrivals-card__price-actual {
  color: var(--color-primary);
}

.new-arrivals-card__price-old {
  color: var(--color-gray);
  text-decoration: line-through;
  text-decoration-thickness: 0.1rem;
}

.new-arrivals-card__discount {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.8rem 1.2rem;
  border-radius: 10rem;
  background-color: var(--color-primary);
}

/* Sales Hits Swiper */
.sales-hits__swiper-pagination {
  position: relative;
  display: flex;
  margin-top: 3.2rem;
  overflow: visible;
}

.sales-hits__swiper-pagination::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.05rem;
  background: var(--color-gray);
  transform: translateY(-50%);
}

.sales-hits__swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  flex: auto;
  height: 0.2rem;
  background-color: var(--color-gray);
  border-radius: 10rem;
  transition: .2s all;
  /* transform: translateY(-50%); */
}

.sales-hits__swiper-bottom {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.sales-hits__swiper:has(.swiper-pagination-lock) .sales-hits__swiper-bottom {
  display: none;
}

.sales-hits__swiper-controls {
  display: flex;
  gap: 0.6rem;
}

.sales-hits__swiper-prev,
.sales-hits__swiper-next {
  cursor: pointer;
}

/* Sales Hits */
.sales-hits {
  padding: 8rem 0rem 4rem;
}

.sales-hits__title {
  margin-bottom: 2.8rem;

  @media (max-width: 768px) {
    margin-bottom: 1.4rem;
  }
}

/* New Arrivals */
.new-arrivals__top {
  margin-bottom: 2rem;

  @media (max-width: 768px) {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 1.6rem;
  }
}

.new-arrivals__title {
  margin-bottom: 2.8rem;

  @media (max-width: 768px) {
    margin-top: 0;
  }
}

.new-arrivals__categories {
  @media (max-width: 768px) {
    position: relative;
    padding-top: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.8rem;
  }
}

.new-arrivals__cat-dropdown-toggle {
  display: none;
  cursor: pointer;
  align-items: center;
  gap: 1.2rem;

  @media (max-width: 768px) {
    display: flex;
  }
}

.new-arrivals__cat-list {
  display: flex;
  gap: 2.8rem;

  @media (max-width: 768px) {
    position: absolute;
    top: calc(1.2rem + 100%);
    width: max-content;
    flex-direction: column;
    gap: 1.8rem;
    align-items: flex-end;
    text-align: right;
    border-radius: 1.6rem;
    border: 0.1rem solid var(--color-gray);
    background-color: var(--color-white);
    padding: 2.4rem 0.8rem 1.2rem;
    opacity: 0;
    transform: translateY(-2rem);
    z-index: -1;
    transition:
      z-index step-end,
      opacity .2s,
      transform .2s;
  }
}

.new-arrivals__cat-list.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
  transition:
    z-index step-start,
    opacity .2s,
    transform .2s;
}

.new-arrivals__cat {
  color: var(--color-gray);
  cursor: pointer;

  @media (max-width: 768px) {
    text-align: right;
  }
}

.new-arrivals__cat.active {
  cursor: default;
  color: var(--color-black);
}

/* New Arrivals */
.new-arrivals {
  padding: 4rem 0;

  @media (max-width: 768px) {
    padding: 1.6rem 0;
  }
}

.new-arrivals__columns {
  display: flex;
  gap: 2.4rem;

  @media (max-width: 768px) {
    display: block;
  }
}

.new-arrivals__image-container {
  position: relative;
  flex: auto;
  z-index: 1;
}

.new-arrivals__image {
  border-radius: 2.4rem;
  width: 100%;
  height: auto;
  aspect-ratio: 775/572;
}

.new-arrivals__right {
  flex: 0 0 38rem;
  border-radius: 2.4rem;
  box-shadow: var(--shadow-1);

  @media (max-width: 1023px) {
    flex: 0 0 30rem;
  }

  @media (max-width: 768px) {
    position: relative;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: -2.4rem;
    padding-top: 4.8rem;
  }
}

.new-arrivals__link {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
  padding: 1.8rem 1.8rem 0;
  margin-bottom: 1rem;

  @media (max-width: 768px) {
    position: absolute;
    top: -1rem;
    right: 1.8rem;
    transform: translateY(-100%);
    z-index: 1;

    padding: 0.6rem 1.2rem;
    border-radius: 10rem;
    background-color: var(--color-background-die-1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}

.new-arrivals__card-container {
  padding: 0 1.8rem;
}

.new-arrivals__button {
  margin: 1.5rem 1.8rem 0;
}

.new-arrivals__info-container {
  overflow: hidden;
  border-radius: 2.4rem;
}

.new-arrivals__info {
  margin-top: 3rem;
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-1);
  border-radius: 2.4rem;
}

.new-arrivals__info-icon {
  color: var(--color-primary);
  margin-bottom: -0.6rem;
}

/* Our Products In Web */
.our-products-in-web {
  padding: 4rem 0;

  @media (max-width: 768px) {
    padding: 1.6rem 0;
  }
}

.our-products-in-web__title {
  margin-bottom: 2.8rem;

  @media (max-width: 768px) {
    margin-bottom: 1.4rem;
  }
}

.our-products-in-web__swiper {
  /* Fix slide shadow cut */
  padding: 1rem !important;
  margin: -1rem !important;
}

.our-products-in-web__column {
  --row-gap: 2rem;

  flex: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--row-gap);
}

.our-products-in-web__row {
  display: flex;
  gap: var(--row-gap);
}

.our-products-in-web__item {
  position: relative;
  flex: 50%;
  aspect-ratio: 580 / 340;
  border-radius: 2.4rem;
  box-shadow: var(--shadow-1);
  overflow: hidden;

  @media (max-width: 520px) {
    aspect-ratio: 580 / 440;
  }
}

.our-products-in-web__item[data-type="small"] {
  border-radius: 1.4rem;
}

.our-products-in-web__item-point {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
  color: var(--color-background-die-2);
  cursor: pointer;
}

.our-products-in-web__item-point[data-id="card-2"] {
  left: unset;
  right: 25%;
}

.our-products-in-web__item[data-current-id="card-1"] .our-products-in-web__item-point[data-id="card-1"],
.our-products-in-web__item[data-current-id="card-2"] .our-products-in-web__item-point[data-id="card-2"] {
  --svg-color-2: var(--color-white);
  --svg-color-3: none;
}

.our-products-in-web__item-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.our-products-in-web__item-card {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(50% - (var(--row-gap) / 2));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  background-color: var(--color-white);
  padding: 2rem 2rem 2rem;
  border-radius: 2.3rem;
  z-index: 1;

  @media (max-width: 1215px) {
    padding: 2rem 1.2rem 2rem;
  }

  @media (max-width: 520px) {
    width: 70%;
  }
}

.our-products-in-web__item-card[data-id] {
  transition: all .4s;
  translate: 100% 0;
}

.our-products-in-web__item-card[data-type="small"] {
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem;
  border-radius: 1.4rem;
  translate: 0 -100%;
}

.our-products-in-web__item[data-current-id="card-1"] .our-products-in-web__item-card[data-id="card-1"],
.our-products-in-web__item[data-current-id="card-2"] .our-products-in-web__item-card[data-id="card-2"] {
  translate: 0;
}

.our-products-in-web__item-card-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: flex;
  width: 3.2rem;
  height: 3.2rem;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 100%;
  box-shadow: var(--shadow-1);
  cursor: pointer;
}

[data-type="small"]>.our-products-in-web__item-card-close {
  opacity: 0.5;

  &:hover {
    opacity: 1;
  }
}

.our-products-in-web__item-card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 280 / 146;
  border-radius: 1.2rem;
  object-fit: cover;
  margin-bottom: 0.8rem;
}

.our-products-in-web__item-card-title {
  margin-bottom: 0.1em;
}

.our-products-in-web__item-card-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.our-products-in-web__item-card-price {
  margin-right: auto;
}

.our-products-in-web__item-card-button {
  width: 100%;
}

[data-type="small"]>.our-products-in-web__item-card-button {
  border: none;
  background-color: transparent;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.4rem;
  padding: 0;

  &:hover {
    color: var(--color-star);
  }
}

.our-products-in-web__swiper-controls {
  display: none;
  justify-content: center;
  align-items: flex-end;
  gap: 2.4rem;
  margin-top: 1.4rem;

  @media (max-width: 1023px) {
    display: flex;
  }
}

.our-products-in-web__swiper-pagination,
.our-products-in-web__swiper-prev,
.our-products-in-web__swiper-next {
  position: relative;
  width: auto !important;
}

.swiper-pagination-bullet {
  background: var(--color-black);
  margin: 0 0.6rem !important;
}

.our-products-in-web__swiper-prev,
.our-products-in-web__swiper-next {
  --svg-color-1: currentColor;
  --svg-color-2: currentColor;
  --svg-color-3: var(--color-white);

  cursor: pointer;
}

.our-products-in-web__swiper-prev:hover,
.our-products-in-web__swiper-next:hover {
  --svg-color-1: var(--color-primary);
  --svg-color-2: var(--color-white);
  --svg-color-3: var(--color-primary);
}

.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Sales */
.sales {
  padding: 4rem 0;

  @media (max-width: 768px) {
    padding: 1.6rem 0;
  }
}

.sales__swiper {
  overflow: visible !important;
}

.sales__card {
  position: relative;
  background-color: var(--color-background-2);
  border-radius: 2.4rem;
  padding: 2rem;
}

.sales__card--bg-yellow {
  background-color: var(--color-background-3);
}

.sales__card-discount {
  width: fit-content;
  padding: 0.8rem 1rem;
  border-radius: 10rem;
  background-color: var(--color-primary);
  margin-bottom: 0.8rem;

  @media (max-width: 768px) {
    margin-bottom: 0.6rem;
  }
}

.sales__card-title {
  margin-bottom: 1.6rem;

  @media (max-width: 768px) {
    margin-bottom: 0.8rem;
  }
}

.sales__card-intro {
  margin-bottom: 2.8rem;

  @media (max-width: 768px) {
    margin-bottom: 2rem;
  }
}

.sales__card-bottom {
  display: flex;
  padding-bottom: 10rem;

  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
}

.sales__card-button {
  position: relative;
  z-index: 1;

  @media (max-width: 768px) {
    width: fit-content;
    margin-bottom: 1.6rem;
  }
}

.sales__card-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: auto;
  transform: translate(4%, 5%);

  @media (max-width: 768px) {
    position: relative;
    width: 100%;
    margin-bottom: -4rem;
    transform: translate(8%, 0);
  }
}

.sales__swiper-controls {
  display: none;
  justify-content: center;
  align-items: flex-end;
  gap: 2.4rem;
  margin-top: 1.4rem;

  @media (max-width: 1023px) {
    display: flex;
  }
}

.sales__swiper-pagination,
.sales__swiper-prev,
.sales__swiper-next {
  position: relative;
  width: auto !important;
}

.swiper-pagination-bullet {
  background: var(--color-black);
  margin: 0 0.6rem !important;
}

.sales__swiper-prev,
.sales__swiper-next {
  --svg-color-1: currentColor;
  --svg-color-2: currentColor;
  --svg-color-3: var(--color-white);

  cursor: pointer;
}

.sales__swiper-prev:hover,
.sales__swiper-next:hover {
  --svg-color-1: var(--color-primary);
  --svg-color-2: var(--color-white);
  --svg-color-3: var(--color-primary);
}

.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Locations */
.locations {
  padding: 4rem 0;

  @media (max-width: 768px) {
    padding: 1.6rem 0;
  }
}

.locations__title {
  margin-bottom: 2.8rem;

  @media (max-width: 768px) {
    margin-bottom: 1.4rem;
  }
}

.locations__columns {
  display: flex;
  align-items: start;
  gap: 2rem;

  @media (max-width: 920px) {
    flex-direction: column;
  }
}

.locations__left {
  flex: auto;

  @media (max-width: 920px) {
    width: 100%;
  }
}

.locations__map {
  width: 100%;
  height: auto;
  aspect-ratio: 776 / 572;
  border-radius: 2.4rem;
  z-index: 1;
}

.locations__right {
  flex: 0 0 38rem;

  @media (max-width: 920px) {
    flex: auto;
    width: 100%;
    align-self: center;
  }
}

.locations__search-container {
  position: relative;
  flex: 0 1 31rem;
  margin-bottom: 1.4rem;
}

.locations__search {
  position: relative;
  width: 100%;
  padding: 0.9rem 1.6rem;
  padding-right: 4.2rem;
  border-radius: 10rem;
  border: 0.1rem solid var(--color-black);
  outline: none;
  background-color: transparent;
  z-index: 1;
}

.locations__search-placeholder {
  position: absolute;
  top: 50%;
  left: 1.6rem;
  transform: translateY(-50%);
  color: var(--color-gray);
  z-index: 0;
}

.locations__search-container:has(input:not(:placeholder-shown)) .locations__search-placeholder {
  visibility: hidden;
}

.locations__search-icon {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  color: gray;
}

.locations__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.locations__list-item {
  display: flex;
  gap: 1.6rem;
  padding: 1rem;
  border-radius: 1.6rem;
  cursor: pointer;
}

.locations__list-item.active {
  background-color: var(--color-background-3) !important;
}

.locations__list-item:has(.matchToSearch) {
  background-color: var(--color-tetriary);
  order: -1;
}

.locations__list-item-left {
  flex: auto;
}

.locations__list-item-title {
  margin-bottom: 0.6rem;
}

.locations__list-item-title-icon {
  color: var(--color-primary);
  transform: translateY(25%);
}

.locations__list-item-right {
  flex: none;
}

.locations__list-item-button-icon {
  transition: all 0.3s;
}

.locations__list-item.active .locations__list-item-button-icon,
.locations__list-item:hover .locations__list-item-button-icon {
  color: var(--color-star);
  rotate: -180deg;
}

.locations__list-item.active .locations__list-item-button-icon {
  color: var(--color-black);
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;

  @media (max-width: 768px) {
    padding: 1.6rem 0;
  }
}

.testimonials__top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials__title {
  margin-bottom: 2rem;
}

.testimonials__intro {
  margin-bottom: 0.7rem;
}

.testimonials__stars {
  display: flex;
  margin-bottom: 2.6rem;
}

.testimonials__star {
  color: var(--color-star);
}

.testimonials__swiper {
  width: calc(100% + 0.8rem);
  padding: 0.4rem;
  margin: -0.4rem;
}

.testimonials__swiper-wrapper {
  align-items: stretch;
}

.testimonials__swiper-slide {
  height: auto;
}

.testimonials__card {
  border-radius: 2.4rem;
  box-shadow: var(--shadow-1);
  overflow: hidden;
  height: auto;
}

.testimonials__card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 281 / 216;
  margin-bottom: -2.4rem;
}

.testimonials__card-info {
  position: relative;
  background-color: var(--color-white);
  border-radius: 2.4rem;
  padding: 1.6rem 1.6rem 2rem;
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.testimonials__card-stars {
  display: flex;
  margin-bottom: 0.8rem;
}

.testimonials__card-star {
  color: var(--color-star);
}

.testimonials__card-text {
  margin-bottom: 1rem;
}

.testimonials__card-name {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.testimonials__swiper-controls {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.4rem;
  margin-top: 1.4rem;
}

.testimonials__swiper-pagination,
.testimonials__swiper-prev,
.testimonials__swiper-next {
  position: relative;
  width: auto !important;
}

.swiper-pagination-bullet {
  background: var(--color-black);
  margin: 0 0.6rem !important;
}

.testimonials__swiper-prev,
.testimonials__swiper-next {
  --svg-color-1: currentColor;
  --svg-color-2: currentColor;
  --svg-color-3: var(--color-white);

  cursor: pointer;
}

.testimonials__swiper-prev:hover,
.testimonials__swiper-next:hover {
  --svg-color-1: var(--color-primary);
  --svg-color-2: var(--color-white);
  --svg-color-3: var(--color-primary);
}

.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Our Insta */
.our-insta {
  padding: 4rem 0;

  @media (max-width: 768px) {
    padding: 1.6rem 0;
  }
}

.our-insta__title {
  margin-bottom: 2.8rem;

  @media (max-width: 768px) {
    margin-bottom: 1.4rem;
  }
}

.our-insta__columns {
  display: flex;
  align-items: stretch;
  gap: 2rem;

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.our-insta__left {
  flex: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-background-2);
  border-radius: 2.4rem;
  padding: 2.4rem;

  @media (max-width: 768px) {
    flex: auto;
    width: 100%;
    aspect-ratio: 372 / 274;
  }
}

.our-insta__left-content {
  width: 35.2rem;
  max-width: 100%;
  text-align: center;
}

.our-insta__left-title {
  margin-bottom: 1.4rem;
}

.our-insta__right {
  flex: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.our-insta__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 2.4rem;
}

/* FAQ */
.faq {
  padding: 4rem 0;
  box-shadow: var(--shadow-1);

  @media (max-width: 768px) {
    padding: 1.6rem 0;
  }
}

.faq__title {
  text-align: center;
  margin-bottom: 2.8rem;

  @media (max-width: 768px) {
    margin-bottom: 1.4rem;
  }
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.faq__item {

  cursor: default;
  padding: 0 2.8rem;
  border-radius: 2.4rem;
  transition: all .4s;
}

.faq__item.active {
  color: var(--color-white);
  padding: 2.8rem;
  background-color: var(--color-primary);
}

.faq__item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
}

.faq__item.active .faq__item-title {
  --svg-color-2: none;
}

.faq__item-text {
  position: relative;
  height: 0;
  opacity: 0;
  transform: translateY(-12px);
  z-index: -1;
}

.faq__item.active .faq__item-text {
  padding-top: 1.4rem;
  height: auto;
  z-index: 100;
  opacity: 1;
  transform: translateY(0);
}

/* Contact */
.contact {
  padding: 8rem 0;

  @media (max-width: 768px) {
    padding: 3.2rem 0;
  }
}

.contact__inner {
  width: 58rem;
  max-width: 100%;
  margin: 0 auto;
}

.contact__title {
  text-align: center;
  margin-bottom: 1.3rem;

  @media (max-width: 768px) {
    margin-bottom: 1rem;
  }
}

.contact__intro {
  text-align: center !important;
  margin-bottom: 3rem;
}

.contact-form__hidden-cf7 {
  display: none;
}

/* Contact Form */
.contact-form {}

.contact-form__notification-box {
  color: orange;
  font-weight: 500;
  padding: 2rem 0;
}

.contact-form__row {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.4rem;

  @media (max-width: 768px) {
    flex-direction: column;
    align-items: stretch;
  }
}

.contact-form__field {
  position: relative;
  flex: 50%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1.6rem;
  border-radius: 10rem;
  border: 0.1rem solid var(--color-primary);
}

.contact-form__field-icon {
  color: var(--color-gray);
}

.contact-form__field-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-items: center;
  color: var(--color-gray);
  padding-left: 4rem;
  border-radius: inherit;
  z-index: -1;
}

.contact-form__field:has(.contact-form__field-input:not(:placeholder-shown)) .contact-form__field-placeholder {
  visibility: hidden;
}

.contact-form__field-input {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  border: none;
  outline: none;
  background-color: transparent;
}


.contact-form__tel-field {
  position: relative;
  flex: 50%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1.6rem;
  border-radius: 10rem;
  border: 0.1rem solid var(--color-primary);
}

.contact-form__tel-field-icon {
  width: 2rem;
  color: var(--color-gray);
}

.contact-form__tel-field-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-items: center;
  color: var(--color-gray);
  padding-left: 8.2rem;
  border-radius: inherit;
  z-index: -1;
}

.contact-form__tel-field-chevron {
  flex-shrink: 0;
}

.contact-form__tel-field:has(.contact-form__tel-field-input:not(:placeholder-shown)) .contact-form__tel-field-placeholder {
  transform: scale(0.8) translate(0%, -28%);
  transform-origin: top center;
}

.contact-form__tel-field-input {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  border: none;
  outline: none;
  background-color: transparent;
  padding-left: 1rem;
}

.contact-form__checkbox {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 3.2rem;
}

.contact-form__checkbox[data-checked="true"] .contact-form__checkbox-icon {
  --svg-color-2: var(--color-primary);
  --svg-color-3: var(--color-white);
}

.contact-form__checkbox-icon {
  flex-shrink: 0;
  --svg-color-1: var(--color-primary);
}

.contact-form__checkbox-text {
  color: var(--color-gray);
}

.contact-form__checkbox-text a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.contact-form__submit {
  width: 100%;

  &[disabled] {
    cursor: not-allowed;

    &:hover {
      background-color: var(--color-gray);
      color: var(--color-black);
      opacity: 0.3;
    }
  }
}

/* Editor Content */
.editor-content {
  padding: 4rem 0;
  box-shadow: var(--shadow-1);

  @media (max-width: 768px) {
    padding: 1.6rem 0;
  }
}

.editor-content h2 {
  font-family: 'TT Chocolates';
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 3.2rem;

  @media (max-width: 768px) {
    font-size: 2.8rem;
    line-height: 1.03;
  }
}

.editor-content h3 {
  font-family: 'TT Chocolates';
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.16;
  letter-spacing: 0em;
  margin-bottom: 1rem;

  @media (max-width: 768px) {
    font-size: 2rem;
    line-height: auto;
  }
}

.editor-content p {
  font-family: 'TT Chocolates';
  font-weight: 300;
  font-size: 1.9rem;
  line-height: 1.26;
  letter-spacing: 0.0em;
  margin-bottom: 1rem;
}

.editor-content ul {
  list-style: disc;
  list-style-position: inside;
  padding-left: 1rem;
}

.editor-content ol {
  list-style: decimal;
  list-style-position: inside;
  padding-left: 1rem;
}

.editor-content>*:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  padding: 3.4rem 0 5rem;
  background-color: var(--color-background-2);
  box-shadow: var(--shadow-1);
  margin-top: 6rem;
}

.footer__row {
  --row-gap: 2.8rem;
  --col-gap: 4rem;

  display: flex;
  gap: var(--col-gap);

  @media (max-width: 768px) {
    --row-gap: 3rem;
    --col-gap: 1.6rem;

    flex-direction: column;
    gap: var(--row-gap);
  }
}

.footer__row--row-gap-0 {
  --row-gap: 0;
}

.footer__row:not(:last-child) {
  margin-bottom: 5rem;
}

.footer__left {
  flex: 0 0 33%;
  display: flex;
  flex-direction: column;
  gap: var(--row-gap);

  @media (max-width: 768px) {
    flex: none;
    width: 100%;
  }
}

.footer__right {
  flex: auto;
  display: flex;
  gap: var(--col-gap);

  @media (max-width: 768px) {
    flex: none;
    width: 100%;
    flex-direction: column;
    gap: var(--row-gap);
  }
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__column--row-on-mobile {
  @media (max-width: 768px) {
    flex-direction: row;
    gap: var(--col-gap);
  }
}

.footer__column--row-on-mobile>.footer__column {
  @media (max-width: 768px) {
    flex: 50%;
  }
}

.footer__column:not(:last-child) {
  margin-bottom: var(--row-gap);
}

.footer__title {
  margin-bottom: 1.6rem;
}

.footer__menu {
  display: flex;
  gap: var(--col-gap);

  @media (max-width: 1023px) {
    flex-direction: column;
    gap: var(--row-gap);
  }

  @media (max-width: 768px) {
    flex-direction: row;
    gap: var(--col-gap);
  }
}

.footer__menu>.footer__column {
  @media (max-width: 768px) {
    flex: 50%;
  }
}

.footer__icons {
  display: block;
  width: 24rem;
  max-width: 100%;
  height: auto;
}

.footer__socials {
  display: flex;
  gap: 0.8rem;
}

.footer__socials-link {
  color: var(--color-primary);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  gap: 1.2rem;
  color: var(--color-gray);
}

/* ProductGallery */
.product-gallery {
  --gap: 1.6rem;
}

.product-page__breadcrumbs {
  @media (max-width: 768px) {
    display: none;
  }
}

.product-gallery__main {
  aspect-ratio: 780 / 436;
  border-radius: 2.4rem;
  overflow: hidden;
  margin-bottom: var(--gap);
}

.product-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-gallery__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(20% - var(--gap) * 0.5), 1fr));
  gap: calc(var(--gap) / 2);
}

.product-gallery__card {
  container-type: inline-size;
  aspect-ratio: 380 / 286;
}

.product-gallery__card .product-gallery__img {
  border-radius: 7cqw;
}

/* Product Page */
.product-page__breadcrumbs {
  margin-bottom: 1.2rem;
}

.product-page__inner {
  display: grid;
  grid-template-columns: 1fr 37.5rem;
  gap: 2.4rem;

  @media (max-width: 1023px) {
    grid-template-columns: 2fr 1fr;
  }

  @media (max-width: 920px) {
    grid-template-columns: 1fr 1fr;
  }

  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.product-page__left {
  min-width: 0;

  @media (max-width: 768px) {
    margin-bottom: 2rem;
  }
}

.product-page__gallery-thumbs-slide {
  height: auto;
  aspect-ratio: 178 / 129;
  border-radius: 1.4rem;
  overflow: hidden;
  cursor: pointer;
}

.product-page__right {
  grid-column: 2;
  grid-row: 1 / 3;

}

.product-page__product-gallery {}

.product-page__description {
  @media (max-width: 768px) {
    margin-bottom: 4rem;
  }
}

.product-page__at-left {
  grid-column-start: 1;
}

.product-page__details {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-top: 2rem;
  margin-bottom: 8rem;

  @media (max-width: 1023px) {
    grid-column: 1 / span 2;
  }
}

.product-page__detail {
  cursor: default;
  padding: 0;
}

.product-page__detail-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-bottom: 0.8rem;
  border-bottom: 0.1rem solid var(--color-black);
  cursor: pointer;
}

.product-page__detail.active .product-page__detail-title {
  --svg-color-2: none;
}

.product-page__detail-content {
  position: relative;
  height: 0;
  opacity: 0;
  transform: translateY(-8px);
  z-index: -1;
  transition: z-index .3s step-end, transform .3s, opacity .3s;

  h3,
  h4,
  h5,
  h6,
  h7 {
    margin-bottom: 0.5em;
  }

  p {
    margin-bottom: 1.2rem;
  }

  ol {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    list-style: decimal;
    list-style-position: inside;
  }

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

.product-page__detail-content-block {
  margin-bottom: 2.4rem;
}

.product-page__detail-content-underlined-text {
  text-decoration: underline;
  text-underline-offset: 0.6rem;
  text-decoration-thickness: 0.1rem;
}

.product-page__detail-content-row {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.product-page__detail.active .product-page__detail-content {
  padding-top: 2.4rem;
  height: auto;
  z-index: 10;
  opacity: 1;
  transform: translateY(0);
  transition: z-index .3s step-start, transform .3s, opacity .3s;
}

.product-page__detail-content-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.product-page__detail-content-title-icon {
  --svg-color-1: var(--color-primary);
}

.product-page__steps {
  @media (max-width: 1023px) {
    grid-column: 1 / span 2;
  }
}


.product-page__steps-title {
  margin-bottom: 2.8rem;
}

.product-page__steps-row {
  display: flex;
  align-items: start;
  gap: 2.4rem;
}

.product-page__steps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-page__steps-item-icon {
  --svg-color-1: var(--color-primary);
}

.product-page__steps-item-text {
  text-align: center;
}

.product-page__overview {
  @media (max-width: 768px) {
    margin-bottom: 5rem;
  }
}

.product-page__overview-title {
  margin-bottom: 2rem;
}

.product-page__overview-price {
  display: flex;
  align-items: flex-end;
  gap: 1.4rem;
  margin-bottom: 2.4rem;
}

.product-page__overview-price-actual {
  color: var(--color-primary);
}

.product-page__overview-price-old {
  color: var(--color-gray);
  text-decoration: line-through;
  text-decoration-thickness: 0.1rem;
  transform: translateY(-0.6rem);
}

.product-page__overview-colors {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.6rem;
}

.product-page__overview-dimensions {
  text-decoration: underline;
  text-underline-offset: 0.6rem;
  text-decoration-thickness: 0.1rem;
  margin-bottom: 3.4rem;
}

.product-page__overview-link-to-details {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 4rem;
}

.product-page__overview-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 5rem;
}

.product-page__overview-add-to-cart {
  flex: auto;
}

.product-page__overview-like {
  --svg-color-1: var(--color-primary);
  flex: none;
}

.product-page__overview-augmented {
  display: flex;
}

.product-page__overview-augmented-left {
  flex: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-page__overview-augmented-image {
  display: block;
  width: 100%;
  height: auto;
}

.product-page__overview-augmented-button {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  text-align-last: left;
  background-color: var(--color-tetriary);
  padding: 0 1.2rem;
  border-radius: 1.4rem;
  border: 0.1rem solid var(--color-primary);
  align-self: center;
  margin: 1.2rem auto;
}

.product-page__overview-augmented-right {
  flex: none;
}

/* Offers */
.offers {
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.offers__title {
  text-align: center;
  margin-bottom: 2.8rem;
}

.offers__inner {
  --gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--gap);
  row-gap: 4rem;
}

.offers__card {
  width: calc(100% / 3 - var(--gap));
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;

  @media (max-width: 768px) {
    width: calc(100% / 2 - var(--gap));
  }

  @media (max-width: 520px) {
    width: 100%;
  }
}

.offers__card:not([href]) {
  pointer-events: none;
}

.offers__card-image {
  border-radius: 2.4rem;
  width: 100%;
  height: auto;
  aspect-ratio: 380 / 300;
}

.offers__card-text {
  text-align: center;
}

/* Benefits */
.benefits {
  margin-top: 6rem;
  margin-bottom: 8rem;
}

.benefits__title {
  text-align: center;
  margin-bottom: 3.8rem;

  @media (max-width: 768px) {
    margin-bottom: 1.6rem;
  }
}

.benefits__inner {
  --gap: 2rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  @media (max-width: 1023px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 768px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.benefits__inner::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background-color: var(--color-background-2);
  z-index: -1;

  @media (max-width: 768px) {
    display: none;
  }
}


.benefits__body {
  border-radius: 2.4rem;
  background-color: var(--color-background-2);
  padding: 2rem;

  @media (max-width: 1023px) {
    &[data-card-index="1"] {
      grid-row-start: 1;
      grid-column-start: 1;
    }

    &[data-card-index="2"] {
      grid-row-start: 2;
      grid-column-start: 2;
    }

    &[data-card-index="3"] {
      grid-row-start: 3;
      grid-column-start: 1;
    }
  }

  @media (max-width: 768px) {
    &[data-card-index="1"] {
      grid-row-start: 1;
      grid-column-start: 1;
    }

    &[data-card-index="2"] {
      grid-row-start: 3;
      grid-column-start: 1;
    }

    &[data-card-index="3"] {
      grid-row-start: 5;
      grid-column-start: 1;
    }
  }
}

.benefits__top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.benefits__icon {
  --svg-color-1: var(--color-primary);
}

.benefits__image-wrapper {

  &[data-card-index="1"] {
    margin-left: -1rem;
    margin-bottom: -1rem;

    @media (max-width: 1023px) {
      grid-row-start: 1;
      grid-column-start: 2;
      margin: -1rem 0 0;
    }

    @media (max-width: 768px) {
      grid-row-start: 2;
      grid-column-start: 1;
    }
  }

  &[data-card-index="2"] {
    margin-top: -1rem;

    @media (max-width: 1023px) {
      grid-row-start: 2;
      grid-column-start: 1;
      margin: 0 0 0 -1rem;
    }

    @media (max-width: 768px) {
      grid-row-start: 4;
      grid-column-start: 1;
    }
  }

  &[data-card-index="3"] {
    margin-right: -1rem;
    margin-bottom: -1rem;

    @media (max-width: 1023px) {
      grid-row-start: 3;
      grid-column-start: 2;
      margin: 0 -1rem 0 0;
    }

    @media (max-width: 768px) {
      grid-row-start: 6;
      grid-column-start: 1;
    }
  }


  @media (max-width: 768px) {
    &:not(:last-child) {
      margin-top: 1rem;
      margin-bottom: 2.4rem;
    }
  }
}

.benefits__image {
  width: 100%;
  min-height: 100%;
  height: auto;
  aspect-ratio: 360 / 213;
  border-radius: 3rem;
  border: 1rem solid var(--color-white);

  @media (max-width: 768px) {
    border: none;
  }
}

/* About Us */
.about-us {
  padding-bottom: 8rem;
}

.about-us__title {
  text-align: center;
  margin-bottom: 3.8rem;

  @media (max-width: 768px) {
    margin-bottom: 1.6rem;
  }
}

.about-us__inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;

  @media (max-width: 768px) {
    display: block;
  }
}

.about-us__left {
  flex: 1;

  @media (max-width: 768px) {
    margin-bottom: 1.4rem;
  }
}

.about-us__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 580 / 308;
  border-radius: 2.4rem;
}

.about-us__right {
  flex: 1;
}

.about-us__col-top {
  display: flex;
  align-items: start;
  gap: 1.6rem;
  margin-bottom: 1.4rem;
}

.about-us__button {
  @media (max-width: 768px) {
    flex: 1;
  }
}

.about-us__text[disabled] {
  opacity: 0;
  height: 0;
  z-index: -1;
}

.about-us__col-bottom {
  max-width: 54rem;
  display: flex;
  align-items: flex-end;
  gap: 1.6rem;
  margin-top: 2rem;
}

.about-us__25-wrapper {
  flex-shrink: 0;
}

.about-us__25 {
  display: block;
  width: 8.6rem;
}

/* Media Tabs */
.media-tabs {
  padding-bottom: 8rem;
}

.media-tabs__title {
  text-align: center;
  margin-bottom: 3.8rem;

  @media (max-width: 920px) {
    margin-bottom: 1.6rem;
  }
}

.media-tabs__inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;

  @media (max-width: 920px) {
    max-width: 58rem;
    margin: 0 auto;
    display: block;
  }
}

.media-tabs__left {
  flex: 1 0 48rem;

  @media (max-width: 920px) {
    margin-bottom: 1.4rem;
  }
}

.media-tabs__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 580 / 308;
  border-radius: 2.4rem;
}

.media-tabs__right {
  flex: 1 1 auto;
  max-width: 69rem;
  margin-top: 1rem;
}

.media-tabs__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 1.6rem;
  margin-bottom: 1.4rem;
}

.media-tabs__button {
  padding: 1.2rem 1.5rem;

  @media (max-width: 920px) {
    pointer-events: none;

    &:not([data-active="true"]) {
      display: none;
    }
  }
}

.media-tabs__controls {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 1.4rem;
  z-index: -1;
  visibility: hidden;

  @media (max-width: 920px) {
    position: relative;
    z-index: 1;
    visibility: visible;
  }
}

.media-tabs__control[data-disabled="true"] {
  opacity: .3;
  pointer-events: none;
}

.media-tabs__bullets {
  display: flex;
  gap: 0.4rem;
}

.media-tabs__bullet {
  &:not([data-active="true"]) {
    opacity: .3;
  }
}

/* Page Content */
.page-content {
  margin-top: 6rem;

  .page-conten__inner:not(:has(.woocommerce)) {
    max-width: 100rem;
    margin: 0 auto;
  }

  h2 {
    margin-bottom: 3.8rem;

    @media (max-width: 768px) {
      margin-bottom: 1.6rem;
    }
  }

  :where(ol, ul, p):not(.woocommerce *) {
    margin-bottom: 1.6rem;
  }

  ul:not(.woocommerce *) {
    list-style: disc;
    padding-left: 2.5rem;
  }

  ol:not(.woocommerce *) {
    list-style: decimal;
    padding-left: 2.5rem;
  }
}

.woocommerce-Button {
  margin-top: 2.4rem !important;
}

/* Well Help */
.well-help {
  padding: 6rem 0;
  box-shadow: var(--shadow-1), var(--shadow-3);
}

.well-help__inner {
  display: flex;
  align-items: center;

  @media (max-width: 920px) {
    flex-direction: column;
    gap: 3rem;
  }
}

.well-help__left {
  flex-shrink: 0;
  width: 48rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
}

.well-help__right {
  flex: auto;
}

.well-help__image {
  display: block;
  height: auto;
  object-fit: contain;

  @media (max-width: 768px) {
    max-width: 120vw;
  }
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(4px);
  opacity: 0;
  z-index: -1;
  transition: z-index .4s step-end, opacity .4s, left .4s;

  &[data-active="true"] {
    opacity: 1;
    left: 0;
    z-index: 1000;
    transition: z-index .4s step-start, opacity .4s, left .4s;
  }

  /* inner */
  &>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 81rem;
    max-width: 90vw;
    height: fit-content;
    max-height: 80vh;
    overflow: scroll;
    background-color: var(--color-white);
    padding: 3rem 3rem 6rem;
    border-radius: 2.4rem;
    border: 0.1 solid var(--color-gray);
    box-shadow: var(--shadow-1);

    @media (max-width: 768px) {
      height: fit-content;
      max-height: 90vh;
    }
  }

  /* Close btn */
  [data-action="close"]:not(.button) {
    --svg-color-1: var(--color-black);

    flex-shrink: 0;
    justify-self: start;
    margin-left: auto;

    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--color-light-gray);
    transition: all .2s;

    &:hover {
      background-color: var(--color-white);
      box-shadow: var(--shadow-1);
    }
  }

  h2 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  p {
    width: 100%;
    font-weight: 500;
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1.2rem;
  }

  :global(.button) {
    margin-top: 4rem;
  }
}

@supports (-webkit-backdrop-filter: blur(4px)) and (not (backdrop-filter: blur(4px))) {
  .container {
    -webkit-backdrop-filter: blur(4px);
  }
}

.your-location__inner {
  display: flex;
  gap: 1.6rem;
  align-items: stretch;

  @media (max-width: 768px) {
    flex-direction: column;
    gap: 2rem;
  }
}

.your-location__left {
  flex: auto;

  @media (max-width: 768px) {
    flex: none;
    width: 100%;
    height: auto;
  }
}

.your-location__image {
  width: 100%;
  height: auto;
  aspect-ratio: 343 / 366;
  object-fit: cover;
  border-radius: 1.6rem;
}

.your-location__right {
  flex: 0 0 40rem;

  @media (max-width: 768px) {
    flex: none;
    width: 100%;
  }
}

.your-location__right-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.your-location__title {
  font-weight: 700;
}

.your-location__close {
  --svg-color-1: var(--color-black);

  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: var(--color-light-gray);
  transition: all .2s;

  &:hover {
    background-color: var(--color-white);
    box-shadow: var(--shadow-1);
  }
}

.your-location__search {
  display: block;
  width: 100%;
  color: var(--color-black);
  font-weight: 500;
  font-size: 1.6rem;
  padding-bottom: 1rem;
  outline: none;
  border-color: transparent;
  border-bottom: 0.1rem solid var(--color-gray);
  margin-bottom: 2.6rem;

  &::placeholder {
    color: var(--color-gray);
  }
}

.your-location__list {
  column-count: 3;
  column-gap: auto;
  margin: -0.45rem;
}

.your-location__item {
  display: block;
  padding: 0.45rem 0;
}

.your-location__item[data-match="false"] {
  display: none;
}

/* Tooltip */
.tooltip {
  position: relative;
}

.tooltip__box {
  position: absolute;
  top: 0;
  width: 28rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: 0em;
  background-color: var(--color-background-1);
  padding: 1.6rem;
  border-radius: 1.6rem;
  box-shadow: var(--shadow-1);
  translate: 0;
  opacity: 0;
  z-index: -1;
  transition: z-index step-end .3s, opacity .3s, translate .3s;

  &[data-position="left"] {
    right: 100%;
  }

  &[data-position="center"] {
    top: 100%;
    right: 50%;
  }

  &[data-position="right"] {
    left: 100%;
  }
}

.tooltip:hover .tooltip__box {
  opacity: 1;
  z-index: 1;
  transition: z-index step-start .3s, opacity .3s, translate .3s;
}

.tooltip:hover .tooltip__box[data-position="left"] {
  translate: -1.2rem 0;
}

.tooltip:hover .tooltip__box[data-position="center"] {
  translate: 0 1.2rem;
}

.tooltip:hover .tooltip__box[data-position="right"] {
  translate: 1.2rem 0;
}

/* Add To Cart Success Modal */
.add-to-cart-success {
  .add-to-cart-success__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  [data-action="close"] {
    justify-self: start;
    margin-left: auto;
  }

  h2 {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  a.button {
    margin-top: auto;
  }
}

/* Woocommerce  */
main .woocommerce {
  .woocommerce-form {

    border-radius: 2.4rem;
    border: 0.1rem solid var(--color-gray);
    box-shadow: var(--shadow-1);
  }

  .button {
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    gap: 0.8rem;
    align-items: center;
    height: fit-content;
    border-radius: 10rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1.35rem 3.2rem;
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 1.08;
    letter-spacing: 0em;
    border: .1rem solid var(--color-primary);

    @media (max-width: 576px) {
      font-size: 20px;
    }
  }

  form .form-row .input-text {
    padding: 1.6rem 2rem;
    border-radius: 10rem;
    border-color: var(--color-primary);
  }

  form .form-row:has(button[type="submit"]) {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .button:hover,
  .button:active {
    background-color: var(--color-star);
    color: var(--color-white);
    border-color: var(--color-light-gray);
  }

  .button--white {
    color: var(--color-black);
    border: 0.1rem solid var(--color-secondary);
    background-color: var(--color-white);
  }

  .button--white:hover {
    color: var(--color-black);
    background-color: var(--color-secondary);
  }

  .button--light:not([data-active="true"]) {
    color: var(--color-black);
    border: 0.1rem solid var(--color-light-gray);
    background-color: var(--color-tetriary);
  }

  .button[disabled] {
    pointer-events: none;
    background-color: var(--color-tetriary);
    color: var(--color-gray);
    opacity: 0.5;
  }


}

/* Section */
.section {
  padding: 8rem 0;
}