@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --black: #000;
  --black-20: rgba(0, 0, 0, 0.2);
  --black-60: rgba(0, 0, 0, 0.6);
  --white: #fff;
  --primary: #231f20;
  --primary-5: rgba(35, 31, 32, 0.05);
  --primary-10: rgba(35, 31, 32, 0.1);
  --primary-hover: rgba(35, 31, 32, 0.4);
  --primary-60: rgba(35, 31, 32, 0.6);
  --primary-80: rgba(35, 31, 32, 0.8);
  --primary2: #433e3f;
  --secondary: #d8d8d8;
  --secondary2: #7a7a7a;
  --secondary3: #f3f3f3;
  --secondary4: #ccc;
  --secondary5: #f4f3f2;
  --placeholder: #e6e6e6;
  --placeholder2: #e8e8e8;
  --beige: #fcf4ef;
  --beige2: #f5e7df;
  --beige3: #f2e0d6;
  --red: #d0011b;
}
header.header .header-bottom .header-bottom-links {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}
header.header .header-bottom .header-bottom-links li:hover .header-bottom-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-48%, 0);
}
header.header .header-bottom .header-bottom-links li.active {
  border-bottom: 1px solid var(--primary);
}
header.header .header-bottom .header-bottom-links li > a, header.header .header-bottom .header-bottom-links li > p {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  padding-bottom: 20px;
  cursor: pointer;
}
header.header .header-bottom .header-bottom-links li > a.active, header.header .header-bottom .header-bottom-links li > p.active {
  border-bottom: 1px solid var(--primary);
}
header.header .header-bottom .header-bottom-links li > a:hover, header.header .header-bottom .header-bottom-links li > p:hover {
  color: var(--primary-hover);
}
header.header .header-bottom-submenu {
  position: absolute;
  min-width: 1248px;
  max-width: 1248px;
  padding: 60px 40px 46px;
  top: 100%;
  left: 50.5%;
  transform: translate(-48%, 40px);
  border: 1px solid var(--secondary);
  opacity: 0;
  transition: all 0.3s;
  visibility: hidden;
  display: grid;
  background-color: var(--beige);
  z-index: 90;
  white-space: nowrap;
  justify-content: center;
  gap: 80px;
}
header.header .header-bottom-submenu li a {
  padding-bottom: 0;
}
header.header .header-bottom-submenu.profile-menu {
  min-width: 0;
  max-width: none;
  padding: 30px 40px;
  right: 0;
  left: auto;
  transform: translate(0px, 40px);
}
@media (max-width: 1279px) {
  header.header .header-bottom-submenu.profile-menu {
    display: none;
  }
}
header.header .header-bottom-submenu.profile-menu .profile-menu-link {
  border-bottom: 1px solid transparent;
  width: -moz-max-content;
  width: max-content;
}
header.header .header-bottom-submenu.profile-menu .profile-menu-link:hover {
  border-color: var(--primary);
}
header.header .header-bottom-submenu.submenu-1 {
  grid-template-columns: 2fr 1fr;
}
header.header .header-bottom-submenu.submenu-1 .categories {
  grid-template-columns: 1fr;
}
header.header .header-bottom-submenu.submenu-1 .brands {
  grid-template-columns: repeat(4, 1fr);
}
header.header .header-bottom-submenu.submenu-2 {
  grid-template-columns: 1fr 1fr;
}
header.header .header-bottom-submenu.submenu-2 .categories {
  grid-template-columns: 1fr;
}
header.header .header-bottom-submenu.submenu-2 .brands {
  grid-template-columns: repeat(2, 1fr);
}
header.header .header-bottom-submenu a {
  padding: 0;
  line-height: 130%;
}
header.header .header-bottom-submenu .categories {
  display: grid;
  justify-content: center;
  gap: 80px;
}
header.header .header-bottom-submenu .categories .category {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}
header.header .header-bottom-submenu .categories .category .category-heading .category-link {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
}
header.header .header-bottom-submenu .categories .category .category-link {
  font-size: 16px;
  text-transform: initial;
  font-weight: 500;
}
header.header .header-bottom-submenu .brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 26px;
}
header.header .header-bottom-submenu .brands .brand-link {
  font-size: 16px;
  text-transform: initial;
  font-weight: 500;
}
header.header .header-bottom-submenu .img-bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
header.header .header-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
header.header .header-menu-btn .menu-icon {
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3px;
}
header.header .header-menu-btn .menu-icon .line {
  width: 25px;
  height: 2px;
  background-color: var(--primary);
}
header.header .header-menu-btn .menu-icon .line:last-child {
  width: 12px;
}
header.header .header-menu-btn .text {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: 1px;
}
@media (max-width: 1023px) {
  header.header .header-menu-btn .text {
    display: none;
  }
}
header.header .header-menu-btn:hover {
  color: var(--primary-hover);
}
header.header .header-menu-btn:hover .menu-icon .line {
  background-color: var(--primary-hover);
}
header.header .header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
header.header .header-icons a {
  display: flex;
  align-items: center;
  padding: 0 4px;
  gap: 2px;
}
@media (max-width: 1023px) {
  header.header .header-icons a.profile {
    display: none;
  }
  header.header .header-icons a.wishlist {
    display: none;
  }
}
header.header .header-icons a.wishlist-btn {
  fill: none;
}
header.header .header-icons a svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}
header.header .header-icons a:hover svg {
  stroke: var(--primary-hover);
}
header.header .header-menu {
  visibility: visible;
  transform: translateX(0);
  width: 100%;
}
header.header .header-menu.hide {
  visibility: hidden;
  transform: translateX(-100%);
}
header.header .header-menu .header-menu-category-links {
  display: flex;
  flex-direction: column;
}
header.header .header-menu .header-menu-category-links > .list-item {
  border-bottom: 1px solid var(--secondary);
}
header.header .header-menu .header-menu-category-links > .list-item > .header-submenu-btn {
  width: 100%;
  cursor: pointer;
}
header.header .header-menu .header-menu-category-links > .list-item .header-submenu {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 0 0 80px;
  overflow-y: scroll;
  background-color: var(--beige);
  transition: all 0.5s;
  width: 100%;
  visibility: hidden;
  transform: translateX(100%);
}
header.header .header-menu .header-menu-category-links > .list-item .header-submenu .submenu-back-btn {
  display: none;
  font-size: 20px;
  padding: 25px 20px;
  align-items: center;
  gap: 8px;
  background-color: var(--beige2);
  width: 100%;
}
header.header .header-menu .header-menu-category-links > .list-item .header-submenu .submenu-back-btn svg {
  rotate: -90deg;
  stroke: var(--primary);
  width: 16px;
  height: 16px;
}
header.header .header-menu .header-menu-category-links > .list-item .header-submenu .submenu-wrapper {
  display: none;
  padding: 0 20px;
  flex-direction: column;
  gap: 20px;
}
header.header .header-menu .header-menu-category-links > .list-item .header-submenu .submenu-wrapper .submenu-categories li {
  border-bottom: 1px solid var(--beige3);
}
header.header .header-menu .header-menu-category-links > .list-item .header-submenu .submenu-wrapper .submenu-categories li a {
  font-size: 18px;
  padding: 20px 0;
  display: block;
}
header.header .header-menu .header-menu-category-links > .list-item .header-submenu .submenu-wrapper .submenu-brands {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 20px;
}
header.header .header-menu .header-menu-category-links > .list-item .header-submenu .submenu-wrapper .submenu-brands li a {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  padding: 5px;
}
header.header .header-menu .header-menu-category-links > .list-item .header-submenu.open {
  visibility: visible;
  transform: translateX(0);
}
header.header .header-menu .header-menu-category-links > .list-item .header-submenu.open .submenu-back-btn {
  display: flex;
}
header.header .header-menu .header-menu-category-links > .list-item .header-submenu.open .submenu-wrapper {
  display: flex;
}
header.header .header-menu .header-menu-category-links > .list-item > a, header.header .header-menu .header-menu-category-links > .list-item > .header-submenu-btn {
  padding: 14px 20px;
  opacity: 0.6;
  display: block;
  color: var(--primary);
  font-size: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.header .header-menu .header-menu-category-links > .list-item > a:hover, header.header .header-menu .header-menu-category-links > .list-item > .header-submenu-btn:hover {
  opacity: 1;
}
@media (max-width: 1279px) {
  header.header .header-menu .header-menu-category-links > .list-item > a, header.header .header-menu .header-menu-category-links > .list-item > .header-submenu-btn {
    font-size: 18px;
    padding: 20px 0;
    opacity: 1;
  }
}
header.header .header-menu .header-menu-category-links > .list-item > a > svg, header.header .header-menu .header-menu-category-links > .list-item > .header-submenu-btn > svg {
  display: none;
  display: block;
  width: 10px;
  height: 10px;
  stroke: var(--primary);
  rotate: 90deg;
}
header.header .header-menu .header-menu-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 1279px) {
  header.header .header-menu .header-menu-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
header.header .header-menu .header-menu-links .header-menu-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header.header .header-menu .header-menu-links .header-menu-links-list .link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.85px;
  line-height: 160%;
  opacity: 0.6;
  text-transform: uppercase;
}
header.header .header-menu .header-menu-links .header-menu-links-list .link:hover {
  opacity: 1;
}
header.header .header-menu .header-menu-socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1279px) {
  header.header .header-menu .header-menu-socials {
    justify-content: center;
  }
}
header.header .header-menu .header-menu-socials .link svg {
  height: 36px;
  width: 36px;
  fill: var(--secondary2);
}
header.header .header-menu .header-menu-rule-links {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1280px) {
  header.header .header-menu .header-menu-rule-links {
    gap: 15px;
  }
}
header.header .header-menu .header-menu-rule-links .link {
  color: var(--primary);
  font-size: 12px;
}
@media (min-width: 1280px) {
  header.header .header-menu .header-menu-rule-links .link {
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
  }
  header.header .header-menu .header-menu-rule-links .link:hover {
    border-color: var(--primary-hover);
  }
}
@media (max-width: 1279px) {
  header.header .header-menu .header-menu-rule-links .link {
    padding: 20px 0;
    font-size: 14px;
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--secondary3);
  }
  header.header .header-menu .header-menu-rule-links .link:first-child {
    border-top: 1px solid var(--secondary3);
  }
}
header.header .header-menu .header-icons a {
  padding: 6px;
}
header.header .header-menu .header-icons a svg {
  width: 24px;
  height: 24px;
}
header.header .products-count {
  font-size: 14px;
  opacity: 0.5;
}
.custom-select {
  display: flex;
  position: relative;
  height: 100%;
}
.custom-select.open .menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.custom-select .select-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.custom-select .menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background-color: var(--beige);
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
  /* min-width: 6.25rem; */
  min-width: 3.125rem;
  transform: translateY(-10px);
  border: 1px solid var(--secondary);
  transition: all 0.3s;
  z-index: 91;
}
.custom-select .menu .link {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  min-height: 48px;
  font-weight: 500;
  color: var(--primary);
  font-size: 0.875rem;
}
.custom-select .menu .link:hover {
  background-color: var(--primary-5);
}
@media (max-width: 1023px) {
  footer.product-page-margin {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  footer.product-page-margin {
    margin-bottom: 100px;
  }
}
footer .footer-links .link {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  padding: 4px 0;
}
footer .footer-links .link:hover {
  color: var(--primary-hover);
}
footer .footer-socials .link {
  display: block;
}
footer .footer-socials .link:hover svg {
  opacity: 0.6;
}
footer .footer-socials .link svg {
  height: 36px;
  width: 36px;
  fill: var(--secondary2);
}
.auth-page .authorization-section .wrapper .accordion-wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1279px) {
  .auth-page .authorization-section .wrapper .accordion-wrapper:not(:last-child) {
    border-bottom: 1px solid var(--placeholder2);
  }
  .auth-page .authorization-section .wrapper .accordion-wrapper:last-child form {
    padding-bottom: 20px;
  }
}
@media (min-width: 1280px) {
  .auth-page .authorization-section .wrapper .accordion-wrapper:not(:first-child) form {
    border-left: 1px solid var(--placeholder2);
  }
}
@media (max-width: 1279px) {
  .auth-page .authorization-section .wrapper .accordion:not(:last-child) {
    border-bottom: 1px solid var(--placeholder2);
  }
  .auth-page .authorization-section .wrapper .accordion:last-child form {
    padding-bottom: 20px;
  }
  .auth-page .authorization-section .wrapper .accordion .content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
  }
}
@media (min-width: 1280px) {
  .auth-page .authorization-section .wrapper .accordion:not(:first-child) form {
    border-left: 1px solid var(--placeholder2);
  }
}
.auth-page .authorization-section .wrapper .accordion.open .accordion-btn svg {
  rotate: 0deg;
}
.auth-page .authorization-section .wrapper .accordion.open .content {
  padding: var(--accordion-padding) 0 0;
  max-height: none;
  opacity: 1;
}
.auth-page .authorization-section .wrapper .accordion .accordion-btn {
  line-height: 120%;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  padding-right: 10px;
}
@media (min-width: 1280px) {
  .auth-page .authorization-section .wrapper .accordion .accordion-btn {
    display: none;
  }
}
.auth-page .authorization-section .wrapper .accordion .accordion-btn svg {
  rotate: 180deg;
  width: 12px;
  height: 12px;
  stroke: var(--primary);
}
.auth-page .authorization-section .wrapper form {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1279px) {
  .auth-page .authorization-section .wrapper form {
    padding-left: 0px;
    padding-bottom: 50px;
  }
}
@media (max-width: 639px) {
  .auth-page .authorization-section .wrapper form {
    align-items: center;
    margin: 0 50px;
  }
}
@media (max-width: 500px) {
  .auth-page .authorization-section .wrapper form {
    margin: 0;
  }
}
.auth-page .authorization-section .wrapper form .form-heading {
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .auth-page .authorization-section .wrapper form .form-heading {
    font-size: 14px;
    align-self: flex-start;
  }
}
.auth-page .authorization-section .wrapper form .form-btn {
  margin-top: 40px;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 639px) {
  .auth-page .authorization-section .wrapper form .form-btn {
    width: 100%;
  }
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper {
  width: 100%;
  max-width: 100%;
  max-height: 100vh;
  min-height: 0;
  min-width: 0;
}
@media (max-width: 1023px) {
  .product-page .product-section .container-1292 > .wrapper .gallery .swiper {
    max-height: none;
  }
}
@media (min-width: 1024px) {
  .product-page .product-section .container-1292 > .wrapper .gallery .swiper .wishlist-btn {
    display: none;
  }
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper .swiper-wrapper .swiper-slide {
  max-height: 450px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .product-page .product-section .container-1292 > .wrapper .gallery .swiper .swiper-pagination {
    display: none;
  }
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  opacity: 1;
  background-color: transparent;
  border: 1px solid transparent;
  position: relative;
  margin: 0;
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper .swiper-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background-color: var(--secondary);
  border-radius: 100%;
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: all 0.5s;
  transform: scale(0);
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  transform: scale(1);
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper-thumbs {
  width: 100%;
  max-width: 100%;
  max-height: 100vh;
  min-height: 0;
  min-width: 0;
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper-thumbs .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2px;
  min-height: 60px;
  max-height: 60px;
  min-width: 60px;
  max-width: 60px;
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper-thumbs .swiper-wrapper .swiper-slide:hover, .product-page .product-section .container-1292 > .wrapper .gallery .swiper-thumbs .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  box-shadow: inset 0px 0px 0px 2px rgba(0, 0, 0, 0.15);
}
.product-page .product-section .container-1292 > .wrapper .gallery .swiper-thumbs .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.product-page .product-section .container-1292 > .wrapper .info .info-purchase .btn {
  min-width: 160px;
  border-radius: 4px;
}
.product-page .product-section .container-1292 > .wrapper .info .chars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-page .product-section .container-1292 > .wrapper .info .chars li {
  font-size: 14px;
  font-weight: 300;
  line-height: 120%;
}
.product-page .product-section .container-1292 > .wrapper .info .extra .extra-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-page .product-section .container-1292 > .wrapper .info .extra .extra-list li {
  padding: 10px 14px 10px 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
}
.product-page .product-section .container-1292 > .wrapper .info .socials {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-page .product-section .container-1292 > .wrapper .info .socials .link {
  display: block;
  padding: 10px;
}
.product-page .product-section .container-1292 > .wrapper .info .socials .link:hover svg {
  opacity: 1;
}
.product-page .product-section .container-1292 > .wrapper .info .socials .link svg {
  fill: var(--black);
  opacity: 0.3;
  width: 24px;
  height: 24px;
}
.product-page .product-section .container-1292 > .wrapper .gallery-header,
.product-page .product-section .container-1292 > .wrapper .info-header {
  margin-bottom: 25px;
}
@media (max-width: 1023px) {
  .product-page .product-section .container-1292 > .wrapper .gallery-header,
  .product-page .product-section .container-1292 > .wrapper .info-header {
    text-align: center;
  }
}
.product-page .product-section .container-1292 > .wrapper .gallery-header .categories,
.product-page .product-section .container-1292 > .wrapper .info-header .categories {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 1023px) {
  .product-page .product-section .container-1292 > .wrapper .gallery-header .categories,
  .product-page .product-section .container-1292 > .wrapper .info-header .categories {
    justify-content: center;
  }
}
.product-page .product-section .container-1292 > .wrapper .gallery-header .categories .link,
.product-page .product-section .container-1292 > .wrapper .info-header .categories .link {
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 160%;
}
.product-page .product-section .container-1292 > .wrapper .gallery-header .title,
.product-page .product-section .container-1292 > .wrapper .info-header .title {
  line-height: 150%;
  margin-bottom: 10px;
  margin-top: 5px;
  font-size: 36px;
}
@media (max-width: 1279px) {
  .product-page .product-section .container-1292 > .wrapper .gallery-header .title,
  .product-page .product-section .container-1292 > .wrapper .info-header .title {
    font-size: 28px;
  }
}
@media (max-width: 639px) {
  .product-page .product-section .container-1292 > .wrapper .gallery-header .title,
  .product-page .product-section .container-1292 > .wrapper .info-header .title {
    font-size: 24px;
  }
}
.product-page .product-section .container-1292 > .wrapper .gallery-header .sku,
.product-page .product-section .container-1292 > .wrapper .info-header .sku {
  font-size: 14px;
  line-height: 160%;
}
@media (max-width: 639px) {
  .product-page .product-section .container-1292 > .wrapper .gallery-header .sku,
  .product-page .product-section .container-1292 > .wrapper .info-header .sku {
    font-size: 12px;
  }
}
.product-page .product-section .container-1292 > .wrapper .wishlist-btn {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
}
.product-page .product-section .container-1292 > .wrapper .wishlist-btn.active svg {
  fill: var(--red);
}
@media (min-width: 1024px) {
  .product-page .product-section .container-1292 > .wrapper .wishlist-btn:hover svg {
    fill: var(--red);
  }
}
.product-page .product-section .container-1292 > .wrapper .wishlist-btn svg {
  transition: all 0.3s;
  fill: var(--secondary4);
  width: 28px;
  height: 28px;
}
@media (max-width: 1023px) {
  .product-page .products-swiper .swiper-wrapper {
    padding-top: 5px;
  }
}
.product-page .products-swiper .accordion .accordion-btn {
  display: flex;
  align-items: center;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .product-page .products-swiper .accordion .accordion-btn {
    pointer-events: auto;
    justify-content: space-between;
    text-align: start;
  }
}
.product-page .products-swiper .accordion .accordion-btn svg {
  rotate: 180deg;
  width: 12px;
  height: 12px;
  stroke: var(--primary);
}
@media (max-width: 1023px) {
  .product-page .products-swiper .accordion .content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
  }
}
.product-page .products-swiper .accordion.open .accordion-btn svg {
  rotate: 0deg;
}
.product-page .products-swiper .accordion.open .content {
  padding: var(--accordion-padding) 0 0;
  max-height: none;
  overflow: visible;
  opacity: 1;
}
@media (max-width: 400px) {
  .product-page .product-purchase .buttons {
    grid-template-columns: 1fr auto;
  }
}
.product-page .product-purchase .buttons .btn {
  min-width: 160px;
  border-radius: 4px;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .product-page .product-purchase .buttons .btn {
    min-width: 140px;
  }
}
@media (max-width: 360px) {
  .product-page .product-purchase .buttons .btn {
    min-width: 120px;
  }
}
@media (max-width: 767px) {
  .product-page .product-purchase .buttons .btn {
    padding: 15px;
  }
}
.product-page .product-purchase .buttons .btn:hover {
  border-color: var(--white);
}
.catalog-page .catalog-section .products-grid .product-card {
  background-color: transparent;
  box-shadow: none;
}
.home-page .home-banner .container-1192 {
  display: block !important;
}
.home-page .home-banner .swiper {
  padding: 8px 0;
  overflow: visible;
}
.home-page .home-banner .swiper .swiper-wrapper .swiper-slide {
  box-shadow: 0 0 8px 0 rgba(62, 62, 68, 0.15);
  border-radius: 5px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  color: var(--primary);
  z-index: 1;
}
.home-page .home-banner .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  min-width: 100%;
}
.home-page .offers-swiper .swiper {
  padding: 8px;
}
.home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 1023px) {
  .home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide {
    align-items: flex-end;
    padding: 0;
  }
}
.home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper {
  max-width: 460px;
  position: absolute;
  opacity: 0;
  transition: all 1s;
  left: 100px;
}
@media (max-width: 1023px) {
  .home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper {
    left: 0;
  }
}
@media (min-width: 1024px) {
  .home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper {
    transform: scale(0);
  }
}
@media (max-width: 1023px) {
  .home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper {
    max-width: none;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
  }
}
@media (max-width: 639px) {
  .home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper {
    padding: 8px;
  }
}
.home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper h4 {
  margin-bottom: 20px;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 160%;
}
@media (max-width: 1023px) {
  .home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper h4 {
    margin-bottom: 4px;
    font-size: 12px;
  }
}
@media (max-width: 639px) {
  .home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper h4 {
    line-height: 110%;
  }
}
.home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper h3 {
  margin-bottom: 16px;
  text-transform: capitalize;
  font-size: 48px;
  line-height: 110%;
}
@media (max-width: 1023px) {
  .home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper h3 {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media (max-width: 639px) {
  .home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper h3 {
    font-size: 14px;
  }
}
.home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper p {
  font-size: 14px;
  line-height: 170%;
}
@media (max-width: 1023px) {
  .home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide .wrapper p {
    display: none;
  }
}
.home-page .offers-swiper .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .wrapper {
  opacity: 1;
  transform: scale(1);
}
.search-page .search-section .search-products,
.search-page .search-section .search-brands {
  border-bottom: 1px solid var(--secondary);
}
.search-page .search-section .search-products {
  padding-bottom: 20px;
}
.search-page .search-section .search-brands {
  padding-bottom: 40px;
}
.search-page .search-section .search-products,
.search-page .search-section .search-brands,
.search-page .search-section .search-other {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}
@media (max-width: 1023px) {
  .search-page .search-section .search-products,
  .search-page .search-section .search-brands,
  .search-page .search-section .search-other {
    margin-top: 20px;
  }
}
.search-page .search-section .search-products .product-card {
  box-shadow: none;
}
.search-page .search-section .search-brands .products-grid .brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-page .search-section .search-brands .products-grid .brand-card img,
.search-page .search-section .search-brands .products-grid .brand-card svg {
  width: 60%;
  height: 100%;
  fill: var(--primary);
}
@media (max-width: 639px) {
  .search-page .search-section .search-brands .products-grid .brand-card img,
  .search-page .search-section .search-brands .products-grid .brand-card svg {
    width: 80%;
  }
}
.search-page .search-section .search-other .links {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.search-page .search-section .search-other .links .link {
  display: block;
  border-bottom: 1px solid var(--black-20);
  line-height: 170%;
}
@media (max-width: 639px) {
  .search-page .search-section .search-other .links .link {
    font-size: 14px;
  }
}
.search-page .search-section .search-other .links .link:hover {
  border-color: var(--primary);
}
.search-page .search-section .search-header {
  margin-bottom: 40px;
}
.search-page .search-section .search-header .search-header-name {
  font-size: 24px;
  line-height: 120%;
  text-align: center;
}
@media (max-width: 639px) {
  .search-page .search-section .search-header .search-header-name {
    font-size: 18px;
  }
}
.search-page .search-section .search-header .search-find {
  opacity: 0.6;
  font-size: 11px;
  color: var(--primary);
  line-height: 170%;
  text-align: center;
  text-transform: uppercase;
}
.news-page .news-list .news-card {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1023px) {
  .news-page .news-list .news-card {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .news-page .news-list .news-card {
    flex-direction: column;
    gap: 30px;
  }
}
.news-page .news-list .news-card .img-wrapper {
  display: block;
}
@media (max-width: 767px) {
  .news-page .news-list .news-card .img-wrapper {
    width: 100%;
  }
}
@media (max-width: 639px) {
  .news-page .news-list .news-card .img-wrapper {
    margin: 0 -16px;
    width: auto;
  }
}
.news-page .news-list .news-card .img-wrapper:hover {
  opacity: 0.8;
}
.news-page .news-list .news-card .img-wrapper img {
  display: block;
  min-height: 440px;
  min-width: 440px;
  width: 100%;
  height: 100%;
  max-width: 440px;
  max-height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1279px) {
  .news-page .news-list .news-card .img-wrapper img {
    min-height: 350px;
    min-width: 350px;
    max-width: 350px;
    max-height: 350px;
  }
}
@media (max-width: 1023px) {
  .news-page .news-list .news-card .img-wrapper img {
    min-height: 250px;
    min-width: 250px;
    max-width: 250px;
    max-height: 250px;
  }
}
@media (max-width: 767px) {
  .news-page .news-list .news-card .img-wrapper img {
    max-width: none;
    max-height: 450px;
  }
}
@media (max-width: 639px) {
  .news-page .news-list .news-card .img-wrapper img {
    max-width: none;
    max-height: none;
  }
}
.news-page .news-list .news-card .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.news-page .news-list .news-card .text-wrapper .brand {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2.5px;
  line-height: 160%;
  text-transform: uppercase;
}
.news-page .news-list .news-card .text-wrapper .title {
  display: inline-block;
  font-size: 36px;
  line-height: 110%;
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  .news-page .news-list .news-card .text-wrapper .title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .news-page .news-list .news-card .text-wrapper .title {
    font-size: 22px;
  }
}
.news-page .news-list .news-card .text-wrapper .description {
  line-height: 170%;
}
.news-page .news-list .news-card .text-wrapper .title,
.news-page .news-list .news-card .text-wrapper .description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 1023px) {
  .news-page .news-list .news-card .text-wrapper .title,
  .news-page .news-list .news-card .text-wrapper .description {
    -webkit-line-clamp: 2;
  }
}
.news-page .news-list .news-card .text-wrapper .link {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  line-height: 170%;
  border-bottom: 1px solid var(--black-20);
}
.news-page .news-list .news-card .text-wrapper .link:hover {
  border-color: var(--black);
}
.news-page .news-small-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .news-page .news-small-list {
    grid-template-columns: 1fr;
  }
}
.news-page .news-small-list .news-small-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.news-page .news-small-list .news-small-card:hover img {
  filter: brightness(90%);
}
.news-page .news-small-list .news-small-card:hover .title {
  color: var(--primary-60);
}
.news-page .news-small-list .news-small-card img {
  width: 100%;
  height: 300px;
  transition: all 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1023px) {
  .news-page .news-small-list .news-small-card img {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .news-page .news-small-list .news-small-card img {
    height: 400px;
  }
}
@media (max-width: 500px) {
  .news-page .news-small-list .news-small-card img {
    height: 350px;
  }
}
@media (max-width: 400px) {
  .news-page .news-small-list .news-small-card img {
    height: 300px;
  }
}
.news-page .news-small-list .news-small-card .title {
  line-height: 150%;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .news-page .news-small-list .news-small-card .title {
    font-size: 14px;
  }
}
.brand-page .text-blocks-wrapper .text-block {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1279px) {
  .brand-page .text-blocks-wrapper .text-block {
    flex-direction: column-reverse;
  }
}
@media (max-width: 639px) {
  .brand-page .text-blocks-wrapper .text-block {
    margin: 0 -16px;
  }
}
.brand-page .text-blocks-wrapper .text-block .img-wrapper {
  width: 100%;
}
.brand-page .text-blocks-wrapper .text-block .img-wrapper img {
  max-width: 440px;
  min-width: 440px;
  max-height: 440px;
  min-height: 440px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1279px) {
  .brand-page .text-blocks-wrapper .text-block .img-wrapper img {
    max-width: none;
  }
}
@media (max-width: 639px) {
  .brand-page .text-blocks-wrapper .text-block .img-wrapper img {
    min-width: 0;
    min-height: 300px;
  }
}
.brand-page .text-blocks-wrapper .text-block .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 639px) {
  .brand-page .text-blocks-wrapper .text-block .text-wrapper {
    padding: 0 16px;
  }
}
.brand-page .text-blocks-wrapper .text-block .text-wrapper .subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 160%;
}
.brand-page .text-blocks-wrapper .text-block .text-wrapper .title {
  font-size: 36px;
  line-height: 110%;
  margin-bottom: 10px;
}
@media (max-width: 1023px) {
  .brand-page .text-blocks-wrapper .text-block .text-wrapper .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .brand-page .text-blocks-wrapper .text-block .text-wrapper .title {
    font-size: 22px;
  }
}
.brand-page .text-blocks-wrapper .text-block .text-wrapper .text {
  line-height: 180%;
}
@media (max-width: 767px) {
  .brand-page .text-blocks-wrapper .text-block .text-wrapper .text {
    font-size: 14px;
  }
}
.brand-page .socials a {
  display: block;
  padding: 10px;
}
.brand-page .socials a:hover svg {
  opacity: 1;
}
.brand-page .socials a svg {
  fill: var(--black);
  opacity: 0.3;
  width: 24px;
  height: 24px;
}
.brand-page .products-swiper .wrapper .product-card {
  box-shadow: none;
}
.brand-page .products-swiper .nav-wrapper {
  right: 0;
  left: 0;
}
.brands-page .brands-header .filters-bodies .filter-body > fieldset:not(:has(label.radio)) {
  display: flex;
  justify-content: center;
}
.brands-page .brands-header .filters-bodies .filter-body > fieldset.letters {
  max-width: none;
  gap: 4px;
  border-bottom: 1px solid var(--primary-10);
  padding-bottom: 0;
  flex-wrap: wrap;
}
.brands-page .brands-header .filters-bodies .filter-body > fieldset.letters label.radio {
  font-size: 16px;
  line-height: 140%;
  min-width: 30px;
  text-align: center;
  padding-bottom: 14px;
  white-space: nowrap;
  padding-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.brands-page .brands-header .filters-bodies .filter-body > fieldset.letters label.radio:has(input[type=radio]:checked)::after {
  transform: scaleX(1);
}
.brands-page .brands-header .filters-bodies .filter-body > fieldset.letters label.radio:after {
  transition: all 0.3s;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
}
.brands-page .brands-header .filters-bodies .filter-body > fieldset.letters label.radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.brands-page .brands-header .filters-bodies .filter-body > fieldset.letters label.radio input[type=radio]::before, .brands-page .brands-header .filters-bodies .filter-body > fieldset.letters label.radio input[type=radio]::after {
  display: none;
}
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 16px;
}
@media (max-width: 767px) {
  .brand-card {
    padding: 25px 16px;
  }
}
.brand-card img,
.brand-card svg {
  max-height: 100px;
  max-width: 250px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.brand-card:hover {
  background-color: var(--primary-10);
}
.home-brands .brand-card {
  background-color: var(--white);
  padding: 50px 32px;
  position: relative;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;
}
.home-brands .brand-card img,
.home-brands .brand-card svg {
  width: 100%;
  height: 100px;
}
@media (max-width: 1023px) {
  .home-brands .brand-card img,
  .home-brands .brand-card svg {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .home-brands .brand-card {
    padding: 25px 32px;
  }
}
.home-brands .brand-card::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s;
}
.home-brands .brand-card:hover {
  background-color: var(--white);
}
.home-brands .brand-card:hover::before {
  background-color: var(--primary-5);
}
.viewed-page .products-grid .product-card,
.wishlist-page .products-grid .product-card {
  box-shadow: none;
  overflow: visible;
}
.viewed-page .products-grid .product-card .text-wrapper .price,
.wishlist-page .products-grid .product-card .text-wrapper .price {
  margin-top: 0;
}
.profile-page .profile-btns-wrapper:hover .profile-btn {
  opacity: 0.5;
}
@media (max-width: 639px) {
  .profile-page .profile-btns-wrapper {
    width: 100%;
  }
}
.profile-page .profile-btns-wrapper .profile-btn {
  border: 1px solid var(--placeholder);
  padding: 40px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  transition: all 0.5s;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 1279px) {
  .profile-page .profile-btns-wrapper .profile-btn {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .profile-page .profile-btns-wrapper .profile-btn {
    padding: 30px 20px;
  }
}
@media (max-width: 1023px) and (min-width: 640px) {
  .profile-page .profile-btns-wrapper .profile-btn:last-child {
    grid-column: span 2;
  }
}
.profile-page .profile-btns-wrapper .profile-btn:hover {
  opacity: 1;
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.15);
}
@media (min-width: 1024px) {
  .profile-page .profile-btns-wrapper .profile-btn:not(:first-child) {
    border-left: 0;
  }
}
.profile-page .profile-btns-wrapper .profile-btn .img-wrapper {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-page .profile-btns-wrapper .profile-btn .img-wrapper img {
  width: 100%;
  height: 100%;
}
.profile-page .profile-btns-wrapper .profile-btn .text-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  line-height: 150%;
}
.profile-page .profile-btns-wrapper .profile-btn .text-wrapper .title {
  font-weight: 500;
}
.profile-page .profile-btns-wrapper .profile-btn .text-wrapper .subtitle {
  font-size: 14px;
}
@media (max-width: 1023px) {
  .profile-tabs-page .section-wrapper {
    padding-top: 36px;
  }
}
@media (max-width: 639px) {
  .profile-tabs-page .section-wrapper {
    padding-top: 66px;
  }
}
.profile-tabs-page .profile-edit fieldset {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media (max-width: 639px) {
  .profile-tabs-page .profile-edit fieldset {
    width: 100%;
  }
}
.profile-header .profile-header-list .profile-header-link {
  display: block;
  padding: 10px 0;
  opacity: 0.6;
}
.profile-header .profile-header-list .profile-header-link.active, .profile-header .profile-header-list .profile-header-link:hover {
  opacity: 1;
}
.profile-header .accordion-wrapper.open .accordion-body {
  opacity: 1;
  visibility: visible;
  height: auto;
  padding: 20px 0;
}
.profile-header .accordion-wrapper.open .accordion-button svg {
  rotate: 0deg;
}
.profile-header .accordion-wrapper .accordion-button svg {
  rotate: 180deg;
}
.profile-header .accordion-wrapper .accordion-body {
  padding: 0;
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: padding 0.3s, height 0.3s, visibility 0.3s;
}
.profile-header .accordion-wrapper .accordion-body .profile-header-list .profile-header-link {
  font-size: 10px;
  text-transform: uppercase;
}
.profile-header .accordion-wrapper .accordion-body .profile-header-list .profile-header-link.active {
  opacity: 1;
}
.text-page .wrapper h1,
.text-page .wrapper h2,
.text-page .wrapper h3,
.text-page .wrapper h4,
.text-page .wrapper h5,
.text-page .wrapper h6 {
  text-align: center;
  line-height: 120%;
  text-transform: uppercase;
}
.text-page .wrapper h1 {
  margin-bottom: 40px;
  font-size: 36px;
}
@media (max-width: 1023px) {
  .text-page .wrapper h1 {
    font-size: 28px;
  }
}
@media (max-width: 639px) {
  .text-page .wrapper h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.text-page .wrapper h2 {
  font-size: 28px;
  margin-bottom: 25px;
}
@media (max-width: 1023px) {
  .text-page .wrapper h2 {
    font-size: 24px;
  }
}
@media (max-width: 639px) {
  .text-page .wrapper h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.text-page .wrapper h3 {
  font-size: 24px;
}
@media (max-width: 1023px) {
  .text-page .wrapper h3 {
    font-size: 22px;
  }
}
@media (max-width: 639px) {
  .text-page .wrapper h3 {
    font-size: 20px;
  }
}
.text-page .wrapper h3,
.text-page .wrapper h4,
.text-page .wrapper h5,
.text-page .wrapper h6 {
  margin-bottom: 20px;
}
.text-page .wrapper h4 {
  font-size: 22px;
}
@media (max-width: 1023px) {
  .text-page .wrapper h4 {
    font-size: 20px;
  }
}
@media (max-width: 639px) {
  .text-page .wrapper h4 {
    font-size: 18px;
  }
}
.text-page .wrapper h5 {
  font-size: 20px;
}
@media (max-width: 1023px) {
  .text-page .wrapper h5 {
    font-size: 18px;
  }
}
@media (max-width: 639px) {
  .text-page .wrapper h5 {
    font-size: 16px;
  }
}
.text-page .wrapper h6 {
  font-size: 18px;
}
@media (max-width: 1023px) {
  .text-page .wrapper h6 {
    font-size: 16px;
  }
}
.text-page .wrapper p,
.text-page .wrapper li,
.text-page .wrapper a {
  line-height: 160%;
  margin-bottom: 16px;
}
.text-page .wrapper ul {
  list-style-type: "—";
}
.text-page .wrapper ol {
  list-style-type: decimal;
}
.text-page .wrapper ul,
.text-page .wrapper ol {
  display: flex;
  flex-direction: column;
  list-style-position: inside;
}
.text-page .wrapper a {
  white-space: nowrap;
  border-bottom: 1px solid var(--black-20);
  padding-bottom: 2px;
}
.text-page .wrapper a:hover {
  border-color: var(--black);
}
.cart-table thead {
  border-bottom: 1px solid var(--primary2);
}
.cart-table thead th {
  padding: 0 10px 14px;
  text-align: center;
  font-size: 12px;
  color: var(--primary2);
  font-weight: 300;
}
.cart-table tbody .cart-product td {
  padding: 20px 10px;
}
.cart-product-mobile .img-wrapper img {
  min-width: 160px;
  max-width: 160px;
  min-height: 160px;
  max-height: 160px;
}
@media (max-width: 420px) {
  .cart-product-mobile .img-wrapper img {
    min-width: 140px;
    max-width: 140px;
    min-height: 140px;
    max-height: 140px;
  }
}
@media (max-width: 360px) {
  .cart-product-mobile .img-wrapper img {
    min-width: 120px;
    max-width: 120px;
    min-height: 120px;
    max-height: 120px;
  }
}
/* ! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.container-1192{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px){
  .container-1192{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container-1192{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container-1192{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container-1192{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container-1192{
    max-width: 1536px;
  }
}
@media (min-width: 1280px){
  .container-1192{
    max-width: 1192px;
  }
}
.container-1292{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 640px){
  .container-1292{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container-1292{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container-1292{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container-1292{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container-1292{
    max-width: 1536px;
  }
}
@media (min-width: 1280px){
  .container-1292{
    max-width: 1292px;
  }
}
.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.transition-300{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.transition-500{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
}
.sm-full-width{
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 640px){
  .sm-full-width{
    margin-left: 0px;
    margin-right: 0px;
  }
}
.h1-heading{
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 32px;
}
@media (min-width: 640px){
  .h1-heading{
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    line-height: 2rem;
    line-height: 40px;
  }
}
@media (min-width: 1024px){
  .h1-heading{
    margin-bottom: 2.5rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.section-wrapper{
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 640px){
  .section-wrapper{
    margin-left: 0px;
    margin-right: 0px;
  }
}
.section-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 640px){
  .section-wrapper{
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1024px){
  .section-wrapper{
    padding: 50px;
  }
}
@media (min-width: 640px){
  .main-margin{
    margin-top: 20px;
  }
}
@media (min-width: 1024px){
  .main-margin{
    margin-top: 30px;
  }
}
.pointer-events-none{
  pointer-events: none;
}
.invisible{
  visibility: hidden;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.bottom-0{
  bottom: 0px;
}
.bottom-\[27px\]{
  bottom: 27px;
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-5{
  left: 1.25rem;
}
.right-0{
  right: 0px;
}
.right-\[15px\]{
  right: 15px;
}
.top-0{
  top: 0px;
}
.top-1\/2{
  top: 50%;
}
.top-5{
  top: 1.25rem;
}
.z-\[1\]{
  z-index: 1;
}
.z-\[2\]{
  z-index: 2;
}
.z-\[90\]{
  z-index: 90;
}
.z-\[97\]{
  z-index: 97;
}
.z-\[98\]{
  z-index: 98;
}
.z-\[99\]{
  z-index: 99;
}
.order-1{
  order: 1;
}
.order-2{
  order: 2;
}
.order-3{
  order: 3;
}
.order-4{
  order: 4;
}
.m-0{
  margin: 0px;
}
.m-5{
  margin: 1.25rem;
}
.-mx-4{
  margin-left: -1rem;
  margin-right: -1rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-\[30px\]{
  margin-top: 30px;
  margin-bottom: 30px;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-20{
  margin-bottom: 5rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mb-\[10px\]{
  margin-bottom: 10px;
}
.mb-\[26px\]{
  margin-bottom: 26px;
}
.mb-\[30px\]{
  margin-bottom: 30px;
}
.mb-\[50px\]{
  margin-bottom: 50px;
}
.mb-\[60px\]{
  margin-bottom: 60px;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-20{
  margin-top: 5rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-9{
  margin-top: 2.25rem;
}
.mt-\[10px\]{
  margin-top: 10px;
}
.mt-\[15px\]{
  margin-top: 15px;
}
.mt-\[18px\]{
  margin-top: 18px;
}
.mt-\[30px\]{
  margin-top: 30px;
}
.mt-\[60px\]{
  margin-top: 60px;
}
.mt-\[6px\]{
  margin-top: 6px;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.\!grid{
  display: grid !important;
}
.grid{
  display: grid;
}
.list-item{
  display: list-item;
}
.\!hidden{
  display: none !important;
}
.hidden{
  display: none;
}
.size-\[90px\]{
  width: 90px;
  height: 90px;
}
.size-full{
  width: 100%;
  height: 100%;
}
.\!h-auto{
  height: auto !important;
}
.h-3{
  height: 0.75rem;
}
.h-4{
  height: 1rem;
}
.h-5{
  height: 1.25rem;
}
.h-\[250px\]{
  height: 250px;
}
.h-\[270px\]{
  height: 270px;
}
.h-\[300px\]{
  height: 300px;
}
.h-\[340px\]{
  height: 340px;
}
.h-\[350px\]{
  height: 350px;
}
.h-\[420px\]{
  height: 420px;
}
.h-\[55px\]{
  height: 55px;
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.max-h-\[31px\]{
  max-height: 31px;
}
.max-h-\[440px\]{
  max-height: 440px;
}
.max-h-\[54px\]{
  max-height: 54px;
}
.min-h-\[24px\]{
  min-height: 24px;
}
.min-h-\[300px\]{
  min-height: 300px;
}
.w-3{
  width: 0.75rem;
}
.w-4{
  width: 1rem;
}
.w-5{
  width: 1.25rem;
}
.w-\[calc\(100\%-72px\)\]{
  width: calc(100% - 72px);
}
.w-full{
  width: 100%;
}
.w-max{
  width: -moz-max-content;
  width: max-content;
}
.min-w-\[120px\]{
  min-width: 120px;
}
.max-w-\[112px\]{
  max-width: 112px;
}
.max-w-\[130px\]{
  max-width: 130px;
}
.max-w-\[217px\]{
  max-width: 217px;
}
.max-w-\[460px\]{
  max-width: 460px;
}
.max-w-\[750px\]{
  max-width: 750px;
}
.max-w-\[780px\]{
  max-width: 780px;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer{
  cursor: pointer;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-\[1fr\2c 0\.78fr\]{
  grid-template-columns: 1fr 0.78fr;
}
.grid-cols-\[60px_1fr\]{
  grid-template-columns: 60px 1fr;
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.\!gap-5{
  gap: 1.25rem !important;
}
.\!gap-\[23px\]{
  gap: 23px !important;
}
.gap-0{
  gap: 0px;
}
.gap-1{
  gap: 0.25rem;
}
.gap-10{
  gap: 2.5rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-\[10px\]{
  gap: 10px;
}
.gap-\[5px\]{
  gap: 5px;
}
.self-start{
  align-self: flex-start;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.overflow-y-hidden{
  overflow-y: hidden;
}
.rounded-\[10px\]{
  border-radius: 10px;
}
.rounded-\[5px\]{
  border-radius: 5px;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-sm{
  border-radius: 0.125rem;
}
.border{
  border-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.\!border-primary{
  border-color: var(--primary) !important;
}
.border-green-500{
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity));
}
.border-placeholder{
  border-color: var(--placeholder);
}
.border-secondary{
  border-color: var(--secondary);
}
.border-secondary3{
  border-color: var(--secondary3);
}
.border-transparent{
  border-color: transparent;
}
.border-b-primary{
  border-bottom-color: var(--primary);
}
.\!bg-primary{
  background-color: var(--primary) !important;
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.7\)\]{
  background-color: rgba(0,0,0,0.7);
}
.bg-beige{
  background-color: var(--beige);
}
.bg-black{
  background-color: var(--black);
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  background-color: var(--white);
}
.bg-\[url\(\/images\/boutiques-bg\.webp\)\]{
  background-image: url(/images/boutiques-bg.webp);
}
.bg-cover{
  background-size: cover;
}
.bg-center{
  background-position: center;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.fill-primary{
  fill: var(--primary);
}
.fill-primary-60{
  fill: var(--primary-60);
}
.stroke-primary{
  stroke: var(--primary);
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center{
  -o-object-position: center;
     object-position: center;
}
.p-2{
  padding: 0.5rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-\[10px\]{
  padding: 10px;
}
.p-\[5px\]{
  padding: 5px;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-\[10px\]{
  padding-left: 10px;
  padding-right: 10px;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-\[10px\]{
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-\[15px\]{
  padding-top: 15px;
  padding-bottom: 15px;
}
.py-\[30px\]{
  padding-top: 30px;
  padding-bottom: 30px;
}
.py-\[6px\]{
  padding-top: 6px;
  padding-bottom: 6px;
}
.py-\[7px\]{
  padding-top: 7px;
  padding-bottom: 7px;
}
.\!pb-10{
  padding-bottom: 2.5rem !important;
}
.\!pt-7{
  padding-top: 1.75rem !important;
}
.pb-0{
  padding-bottom: 0px;
}
.pb-10{
  padding-bottom: 2.5rem;
}
.pb-\[30px\]{
  padding-bottom: 30px;
}
.pl-0{
  padding-left: 0px;
}
.pl-\[20px\]{
  padding-left: 20px;
}
.pr-\[30px\]{
  padding-right: 30px;
}
.pr-\[35px\]{
  padding-right: 35px;
}
.pt-10{
  padding-top: 2.5rem;
}
.pt-\[10px\]{
  padding-top: 10px;
}
.pt-\[27px\]{
  padding-top: 27px;
}
.pt-\[45px\]{
  padding-top: 45px;
}
.pt-\[50px\]{
  padding-top: 50px;
}
.pt-\[60px\]{
  padding-top: 60px;
}
.pt-\[80px\]{
  padding-top: 80px;
}
.text-center{
  text-align: center;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-\[11px\]{
  font-size: 11px;
}
.text-\[12px\]{
  font-size: 12px;
}
.text-\[18px\]{
  font-size: 18px;
}
.text-\[22px\]{
  font-size: 22px;
}
.text-\[24px\]{
  font-size: 24px;
}
.text-\[30px\]{
  font-size: 30px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.font-bold{
  font-weight: 700;
}
.font-light{
  font-weight: 300;
}
.font-medium{
  font-weight: 500;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.leading-6{
  line-height: 1.5rem;
}
.leading-\[100\%\]{
  line-height: 100%;
}
.leading-\[11px\]{
  line-height: 11px;
}
.leading-\[120\%\]{
  line-height: 120%;
}
.leading-\[130\%\]{
  line-height: 130%;
}
.leading-\[140\%\]{
  line-height: 140%;
}
.leading-\[150\%\]{
  line-height: 150%;
}
.leading-\[180\%\]{
  line-height: 180%;
}
.leading-\[1\]{
  line-height: 1;
}
.leading-\[26px\]{
  line-height: 26px;
}
.leading-\[30px\]{
  line-height: 30px;
}
.leading-\[40px\]{
  line-height: 40px;
}
.leading-\[50px\]{
  line-height: 50px;
}
.leading-tight{
  line-height: 1.25;
}
.tracking-\[2px\]{
  letter-spacing: 2px;
}
.tracking-\[3\.3px\]{
  letter-spacing: 3.3px;
}
.\!text-white{
  color: var(--white) !important;
}
.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity));
}
.text-primary{
  color: var(--primary);
}
.text-primary-60{
  color: var(--primary-60);
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
.text-white{
  color: var(--white);
}
.placeholder-placeholder::-moz-placeholder{
  color: var(--placeholder);
}
.placeholder-placeholder::placeholder{
  color: var(--placeholder);
}
.opacity-0{
  opacity: 0;
}
.opacity-50{
  opacity: 0.5;
}
.shadow-\[0_2px_4px_0_rgba\(0\2c 0\2c 0\2c 0\.1\)\]{
  --tw-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
  --tw-shadow-colored: 0 2px 4px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0px_2px_4px_rgba\(0\2c 0\2c 0\2c 0\.25\)\]{
  --tw-shadow: 0px 2px 4px rgba(0,0,0,0.25);
  --tw-shadow-colored: 0px 2px 4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0px_2px_5px_rgba\(0\2c 0\2c 0\2c 0\.15\)\]{
  --tw-shadow: 0px 2px 5px rgba(0,0,0,0.15);
  --tw-shadow-colored: 0px 2px 5px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0px_2px_8px_rgba\(0\2c 0\2c 0\2c 0\.15\)\]{
  --tw-shadow: 0px 2px 8px rgba(0,0,0,0.15);
  --tw-shadow-colored: 0px 2px 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
body {
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
  background-color: var(--beige);
  font-family: "Montserrat", sans-serif;
  height: 100%;
  line-height: 1;
}
html,
body {
  scroll-behavior: smooth;
}
/* Rewrite variables from libraries */
.fancybox__container {
  --fancybox-color: #231f20 !important;
  --fancybox-hover-color: #fff !important;
  --fancybox-bg: #fff !important;
}
.fancybox__container.is-compact .fancybox__footer {
  background-color: transparent !important;
}
.fancybox__container .f-button {
  color: var(--primary) !important;
  background-color: transparent !important;
}
.fancybox__container .f-thumbs__slide .f-thumbs__slide__button:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}
.fancybox__container .f-thumbs__slide .f-thumbs__slide__button .f-thumbs__slide__img {
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 92% !important;
  height: auto !important;
}
.fancybox__container .fancybox__toolbar {
  --f-button-bg: rgba(0, 0, 0, 0) !important;
}
.flatpickr-day.selected {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
/* Rewrite variables from libraries end */
#app {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  height: 100%;
}
main {
  flex-grow: 1;
}
button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
button,
button svg,
button span,
button div,
a,
a svg,
a span,
a div {
  transition: all 0.3s !important;
}
body,
html {
  overflow-x: clip;
}
.empty a {
  white-space: nowrap;
  border-bottom: 1px solid var(--black-20);
  padding-bottom: 2px;
}
.empty a:hover {
  border-color: var(--black);
}
section .container-1292 > .wrapper,
section .container-1192 > .wrapper {
  background-color: var(--white);
}
.btn {
  min-width: 160px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  font-size: 14px;
  line-height: 140%;
  border: 1px solid;
  border-radius: 2px;
}
.btn.dark {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn.dark:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--secondary4);
}
.btn.light {
  background-color: var(--white);
  border-color: var(--secondary4);
  color: var(--primary);
}
.btn.light:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
@media (max-width: 639px) {
  .btn {
    width: 100%;
  }
}
.btn.show-more {
  margin: 40px auto;
}
@media (max-width: 639px) {
  .btn.show-more {
    width: 100%;
  }
}
#scroll-top-static {
  margin-top: 20px;
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  #scroll-top-static {
    display: none;
  }
}
#scroll-top-static svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}
#scroll-top {
  position: fixed;
  right: 18px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 15px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  background: var(--white);
  border: 1px solid var(--secondary3);
  z-index: 97;
  opacity: 0;
  transform: scale(0.4);
  visibility: hidden;
}
@media (max-width: 1023px) {
  #scroll-top {
    bottom: 90px;
  }
}
@media (max-width: 767px) {
  #scroll-top {
    display: none;
  }
}
#scroll-top.show {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
@media (max-width: 1023px) {
  #scroll-top .text {
    display: none;
  }
}
#scroll-top svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}
@media (max-width: 1023px) {
  #scroll-top svg {
    width: 20px;
    height: 20px;
  }
}
.heading {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .heading {
    margin-bottom: 16px;
  }
}
.heading .title {
  text-align: left;
  font-size: 36px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .heading .title {
    font-size: 24px;
  }
}
@media (min-width: 1280px) {
  .products-swiper > .container-1192, .products-swiper > .container-1292 {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .products-swiper > .container-1192, .products-swiper > .container-1292 {
    width: calc(100% - 72px);
  }
}
.products-swiper .swiper {
  position: relative;
  padding: 4px;
}
.products-swiper .swiper .swiper-wrapper {
  z-index: 1;
}
.products-swiper .nav-wrapper {
  position: absolute;
  left: -36px;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: -1;
}
@media (max-width: 1023px) {
  .products-swiper .nav-wrapper {
    display: none;
  }
}
.products-swiper .nav-wrapper .swiper-button-prev,
.products-swiper .nav-wrapper .swiper-button-next {
  padding: 8px;
}
.products-swiper .nav-wrapper .swiper-button-prev.swiper-button-disabled,
.products-swiper .nav-wrapper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.products-swiper .nav-wrapper .swiper-button-prev svg,
.products-swiper .nav-wrapper .swiper-button-next svg {
  stroke: var(--primary);
  width: 16px;
  height: 16px;
}
.products-swiper .nav-wrapper .swiper-button-prev {
  rotate: -90deg;
}
.products-swiper .nav-wrapper .swiper-button-next {
  rotate: 90deg;
}
.product-card {
  display: block;
  width: 100%;
  border-radius: 6px;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;
  position: relative;
  transition: all 0.5s;
  overflow: hidden;
  max-width: 270px;
  container-type: inline-size;
  container-name: product-card;
}
.product-card.without-hover .text-wrapper {
  margin-bottom: 0 !important;
  transform: translateY(0) !important;
}
.product-card.without-hover .text-wrapper .info {
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}
@media (min-width: 1024px) {
  .product-card:hover .img-wrapper .wishlist-btn {
    opacity: 1;
  }
  .product-card:hover .img-wrapper .share-btn {
    opacity: 0.4;
  }
  .product-card:hover .text-wrapper {
    transform: translateY(-88px);
  }
  .product-card:hover .text-wrapper .info {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
}
.product-card .img-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 12.5px 0;
  border-radius: 10px;
  position: relative;
}
.product-card .img-wrapper .wishlist-btn,
.product-card .img-wrapper .share-btn {
  opacity: 0;
}
@media (max-width: 1023px) {
  .product-card .img-wrapper .wishlist-btn,
  .product-card .img-wrapper .share-btn {
    display: none;
  }
}
.product-card .img-wrapper .wishlist-btn,
.product-card .img-wrapper .share-btn,
.product-card .img-wrapper .close-btn {
  position: absolute;
  top: 10px;
  transition: all 0.3s;
}
.product-card .img-wrapper .wishlist-btn svg,
.product-card .img-wrapper .share-btn svg,
.product-card .img-wrapper .close-btn svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s;
}
.product-card .img-wrapper .close-btn {
  right: 12px;
  opacity: 0.2;
}
.product-card .img-wrapper .close-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}
.product-card .img-wrapper .close-btn:hover {
  opacity: 1;
}
.product-card .img-wrapper .wishlist-btn {
  right: 12px;
}
.product-card .img-wrapper .wishlist-btn.active svg {
  fill: var(--red);
}
@media (min-width: 1024px) {
  .product-card .img-wrapper .wishlist-btn:hover svg {
    fill: var(--red);
  }
}
.product-card .img-wrapper .wishlist-btn svg {
  fill: var(--secondary);
}
.product-card .img-wrapper .share-btn {
  left: 12px;
}
.product-card .img-wrapper .share-btn:hover {
  opacity: 1;
}
.product-card .img-wrapper .share-btn svg {
  fill: var(--black);
}
.product-card .img-wrapper img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 150px;
}
@container product-card (width > 150px) {
  .product-card .img-wrapper img {
    height: 200px;
  }
}
@container product-card (width > 200px) {
  .product-card .img-wrapper img {
    height: 250px;
  }
}
@container product-card (width > 250px) {
  .product-card .img-wrapper img {
    height: 300px;
  }
}
.product-card .text-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 15px 20px;
  margin-bottom: -88px;
  transition: all 0.3s;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, white 25%, rgba(255, 255, 255, 0.98) 75%, white 100%);
}
@media (max-width: 1023px) {
  .product-card .text-wrapper {
    padding: 20px 15px 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 639px) {
  .product-card .text-wrapper {
    padding: 16px 8px;
  }
}
.product-card .text-wrapper .sku {
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 5px;
  opacity: 0.5;
  text-align: center;
}
@media (max-width: 639px) {
  .product-card .text-wrapper .sku {
    font-size: 12px;
  }
}
.product-card .text-wrapper .brand {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
}
@container product-card (width > 200px) {
  .product-card .text-wrapper .brand {
    font-size: 18px;
  }
}
.product-card .text-wrapper .name {
  font-size: 14px;
  line-height: 140%;
  text-transform: capitalize;
  margin: 10px 0 0;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-card .text-wrapper .info {
  gap: 12px;
  font-size: 16px;
  line-height: 150%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  margin-top: 10px;
  transition: margin 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
}
@media (max-width: 1279px) {
  .product-card .text-wrapper .info {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .product-card .text-wrapper .info {
    display: none;
  }
}
.product-card .text-wrapper .info .desciption {
  text-align: center;
}
.product-card .text-wrapper .info .price {
  display: block;
  font-weight: bold;
  text-align: center;
}
.product-card .text-wrapper .info .btn {
  min-width: 0;
}
@media (max-width: 1279px) {
  .product-card .text-wrapper .info .btn {
    max-width: 200px;
    width: 100%;
    padding: 15px 4px;
  }
}
@media (max-width: 767px) {
  .product-card .text-wrapper .info .btn {
    padding: 15px 0px;
  }
}
.products-swiper-header {
  border-bottom: 1px solid var(--primary-10);
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .products-swiper-header {
    border: none;
    padding: 20px 0;
    margin: 0;
  }
}
.products-swiper-header .title {
  display: block;
  width: -moz-max-content;
  width: max-content;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--black);
  margin-bottom: -1.5px;
}
@media (max-width: 1023px) {
  .products-swiper-header .title {
    border: none;
    padding: 0;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .products-swiper-header svg {
    display: none;
  }
}
.breadcrumbs {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  text-align: center;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-top: 30px;
  }
}
.breadcrumbs .link,
.breadcrumbs .current {
  font-size: 14px;
  line-height: 110%;
  color: #231f20;
}
.accordion-wrapper {
  display: flex;
  flex-direction: column;
}
.accordion-wrapper.open .accordion-button svg {
  rotate: 0deg;
}
.accordion-wrapper .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.accordion-wrapper .accordion-button svg {
  rotate: 180deg;
  width: 12px;
  height: 12px;
  stroke: var(--primary);
}
.accordion-wrapper .accordion-body {
  transition: all 0.5s;
}
label.radio input[type=radio]:checked::before {
  border-color: var(--primary);
}
label.radio input[type=radio]:checked::after {
  transform: translateY(-50%) scale(1);
  opacity: 1;
  visibility: visible;
}
label.radio input[type=radio]::before {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  left: 1px;
  border: 1px solid var(--secondary);
  transition: all 0.3s;
  border-radius: 50%;
}
label.radio input[type=radio]::after {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  border-radius: 50%;
  left: 6px;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) scale(2);
  background: var(--primary);
  transition: all 0.3s;
}
label.checkbox,
label.radio {
  cursor: pointer;
  position: relative;
  padding-left: 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 14px;
  line-height: 140%;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
label.checkbox:hover input[type=radio]::before,
label.checkbox:hover input[type=checkbox]::before,
label.radio:hover input[type=radio]::before,
label.radio:hover input[type=checkbox]::before {
  border-color: var(--primary);
}
label.checkbox input[type=radio],
label.checkbox input[type=checkbox],
label.radio input[type=radio],
label.radio input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
label.checkbox input[type=radio]:checked::before,
label.checkbox input[type=checkbox]:checked::before,
label.radio input[type=radio]:checked::before,
label.radio input[type=checkbox]:checked::before {
  border-color: var(--primary);
}
label.checkbox input[type=radio]:checked::after,
label.checkbox input[type=checkbox]:checked::after,
label.radio input[type=radio]:checked::after,
label.radio input[type=checkbox]:checked::after {
  opacity: 1;
  visibility: visible;
}
label.checkbox input[type=radio]::before, label.checkbox input[type=radio]::after,
label.checkbox input[type=checkbox]::before,
label.checkbox input[type=checkbox]::after,
label.radio input[type=radio]::before,
label.radio input[type=radio]::after,
label.radio input[type=checkbox]::before,
label.radio input[type=checkbox]::after {
  position: absolute;
  content: "";
  transition: all 0.3s;
  cursor: pointer;
}
label.checkbox input[type=radio]::before,
label.checkbox input[type=checkbox]::before,
label.radio input[type=radio]::before,
label.radio input[type=checkbox]::before {
  display: block;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  left: 1px;
  border: 1px solid var(--secondary);
}
@media (max-width: 1023px) {
  label.checkbox input[type=radio]::before,
  label.checkbox input[type=checkbox]::before,
  label.radio input[type=radio]::before,
  label.radio input[type=checkbox]::before {
    width: 18px;
    height: 18px;
  }
}
label.checkbox input[type=radio]::after,
label.checkbox input[type=checkbox]::after,
label.radio input[type=radio]::after,
label.radio input[type=checkbox]::after {
  opacity: 0;
  visibility: hidden;
}
label.checkbox input[type=checkbox]:checked::after {
  transform: translateY(0px);
}
label.checkbox input[type=checkbox]::after {
  width: 8px;
  height: 6px;
  left: 4px;
  top: 8px;
  background-image: url("/build/assets/check-10742d52.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: translateY(-6px);
}
@media (max-width: 1023px) {
  label.checkbox input[type=checkbox]::after {
    width: 12px;
    height: 9px;
    top: 7px;
  }
}
label.radio input[type=radio]:checked::after {
  transform: translateY(-50%) scale(1);
}
label.radio input[type=radio]::before {
  border-radius: 50%;
}
label.radio input[type=radio]::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) scale(2);
  background: var(--primary);
}
@media (max-width: 1023px) {
  label.radio input[type=radio]::after {
    width: 6px;
    height: 6px;
    left: 7px;
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a,
.pagination span,
.pagination button {
  display: inline-block;
  padding: 25px;
  font-size: 16px;
  line-height: 100%;
  color: var(--primary2);
  opacity: 0.5;
}
@media (max-width: 767px) {
  .pagination a,
  .pagination span,
  .pagination button {
    padding: 25px 10px;
  }
}
.pagination a:hover, .pagination a.active,
.pagination span:hover,
.pagination span.active,
.pagination button:hover,
.pagination button.active {
  opacity: 1;
}
.pagination a.active, .pagination a.disabled,
.pagination span.active,
.pagination span.disabled,
.pagination button.active,
.pagination button.disabled {
  cursor: default;
  pointer-events: none;
}
.pagination a.disabled,
.pagination span.disabled,
.pagination button.disabled {
  opacity: 0.2;
}
.pagination .prev svg,
.pagination .next svg {
  width: 16px;
  height: 23px;
  stroke: var(--primary2);
}
.pagination .prev svg {
  rotate: -90deg;
}
.pagination .next svg {
  rotate: 90deg;
}
.pagination .numbers {
  display: flex;
  align-items: center;
}
.products-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .products-grid {
    gap: 10px;
  }
}
@media (max-width: 639px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.catalog-header,
.brands-header {
  width: 100%;
}
.catalog-header .accordion-wrapper,
.brands-header .accordion-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--secondary);
}
.catalog-header .accordion-wrapper.open,
.brands-header .accordion-wrapper.open {
  border-bottom: 1px solid transparent;
}
.catalog-header .accordion-wrapper.open .accordion-button .plus::before,
.brands-header .accordion-wrapper.open .accordion-button .plus::before {
  rotate: 90deg;
}
.catalog-header .accordion-wrapper.open .accordion-body,
.brands-header .accordion-wrapper.open .accordion-body {
  opacity: 1;
  visibility: visible;
  height: auto;
  transform: scaleY(1);
}
@media (max-width: 1023px) {
  .catalog-header .accordion-wrapper.open .accordion-body,
  .brands-header .accordion-wrapper.open .accordion-body {
    flex-direction: column;
  }
}
.catalog-header .accordion-wrapper .accordion-button,
.brands-header .accordion-wrapper .accordion-button {
  line-height: 120%;
  padding: 14px 24px;
  position: relative;
  padding-left: 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: -moz-max-content;
  width: max-content;
  justify-content: center;
}
@media (min-width: 1024px) {
  .catalog-header .accordion-wrapper .accordion-button,
  .brands-header .accordion-wrapper .accordion-button {
    display: none;
  }
}
.catalog-header .accordion-wrapper .accordion-button .plus,
.brands-header .accordion-wrapper .accordion-button .plus {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-header .accordion-wrapper .accordion-button .plus::before, .catalog-header .accordion-wrapper .accordion-button .plus::after,
.brands-header .accordion-wrapper .accordion-button .plus::before,
.brands-header .accordion-wrapper .accordion-button .plus::after {
  content: "";
  position: absolute;
  background: var(--primary);
  transition: all 0.3s;
}
.catalog-header .accordion-wrapper .accordion-button .plus::before,
.brands-header .accordion-wrapper .accordion-button .plus::before {
  height: 9px;
  width: 1px;
}
.catalog-header .accordion-wrapper .accordion-button .plus::after,
.brands-header .accordion-wrapper .accordion-button .plus::after {
  width: 9px;
  height: 1px;
}
@media (max-width: 1023px) {
  .catalog-header .accordion-wrapper .accordion-body,
  .brands-header .accordion-wrapper .accordion-body {
    opacity: 0;
    visibility: hidden;
    height: 0;
    flex-direction: row;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.3s;
  }
}
.catalog-header .filters-list,
.brands-header .filters-list {
  transition: all 0.3s, border 0.5s;
}
@media (min-width: 1024px) {
  .catalog-header .filters-list:has(.filter.open),
  .brands-header .filters-list:has(.filter.open) {
    padding-bottom: 0;
    border-color: transparent;
  }
  .catalog-header .filters-list:has(.filter.open) .filter,
  .brands-header .filters-list:has(.filter.open) .filter {
    opacity: 0.4;
  }
  .catalog-header .filters-list:has(.filter.open) .filter.open,
  .brands-header .filters-list:has(.filter.open) .filter.open {
    opacity: 1;
  }
  .catalog-header .filters-list:not(:has(.filter.open)) .filter,
  .brands-header .filters-list:not(:has(.filter.open)) .filter {
    opacity: 1;
  }
}
@media (max-width: 1023px) {
  .catalog-header .filters-list .filter,
  .brands-header .filters-list .filter {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .catalog-header .filters-list .filter .filter-body,
  .brands-header .filters-list .filter .filter-body {
    display: none;
  }
}
.catalog-header .filters-list .filter .filter-btn,
.brands-header .filters-list .filter .filter-btn {
  line-height: 120%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  transition: all 0.3s;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .catalog-header .filters-list .filter .filter-btn,
  .brands-header .filters-list .filter .filter-btn {
    margin-bottom: 0;
    padding: 14px 24px;
    width: 100%;
    border-bottom: 1px solid var(--secondary);
  }
}
.catalog-header .filters-list .filter .filter-btn.open .plus::before,
.brands-header .filters-list .filter .filter-btn.open .plus::before {
  rotate: 90deg;
}
.catalog-header .filters-list .filter .filter-btn .plus,
.brands-header .filters-list .filter .filter-btn .plus {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-header .filters-list .filter .filter-btn .plus::before, .catalog-header .filters-list .filter .filter-btn .plus::after,
.brands-header .filters-list .filter .filter-btn .plus::before,
.brands-header .filters-list .filter .filter-btn .plus::after {
  content: "";
  position: absolute;
  background: var(--primary);
  transition: all 0.3s;
}
.catalog-header .filters-list .filter .filter-btn .plus::before,
.brands-header .filters-list .filter .filter-btn .plus::before {
  height: 9px;
  width: 1px;
}
.catalog-header .filters-list .filter .filter-btn .plus::after,
.brands-header .filters-list .filter .filter-btn .plus::after {
  width: 9px;
  height: 1px;
}
.catalog-header .filter-body,
.brands-header .filter-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  transition: all 0.5s;
  transform-origin: top;
  height: 0;
  padding: 0;
  opacity: 0;
  visibility: collapse;
  transform: scaleY(0);
}
@media (max-width: 1279px) {
  .catalog-header .filter-body:has(.fieldsets-list),
  .brands-header .filter-body:has(.fieldsets-list) {
    transition: all 0.8s;
  }
}
@media (max-width: 1023px) {
  .catalog-header .filter-body,
  .brands-header .filter-body {
    align-items: flex-start;
  }
}
.catalog-header .filter-body.open,
.brands-header .filter-body.open {
  height: auto;
  padding: 30px 0 40px;
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.catalog-header .filter-body > fieldset,
.brands-header .filter-body > fieldset {
  max-width: 960px;
  width: 100%;
  gap: 30px;
  padding-bottom: 17px;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .catalog-header .filter-body > fieldset,
  .brands-header .filter-body > fieldset {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 15px;
  }
}
.catalog-header .filter-body > fieldset:has(label.radio),
.brands-header .filter-body > fieldset:has(label.radio) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-header .filter-body > fieldset:not(:has(label.radio)),
.brands-header .filter-body > fieldset:not(:has(label.radio)) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1023px) {
  .catalog-header .filter-body > fieldset:not(:has(label.radio)),
  .brands-header .filter-body > fieldset:not(:has(label.radio)) {
    display: flex;
  }
}
.catalog-header .filter-body > fieldset label,
.brands-header .filter-body > fieldset label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.catalog-header .filter-body .fieldsets-list,
.brands-header .filter-body .fieldsets-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 1023px) {
  .catalog-header .filter-body .fieldsets-list,
  .brands-header .filter-body .fieldsets-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
  }
}
.catalog-header .filter-body .fieldsets-list .fieldset-wrapper,
.brands-header .filter-body .fieldsets-list .fieldset-wrapper {
  min-width: 150px;
}
.catalog-header .filter-body .fieldsets-list .fieldset-wrapper .fieldset-heading,
.brands-header .filter-body .fieldsets-list .fieldset-wrapper .fieldset-heading {
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 120%;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .catalog-header .filter-body .fieldsets-list .fieldset-wrapper .fieldset-heading,
  .brands-header .filter-body .fieldsets-list .fieldset-wrapper .fieldset-heading {
    margin: 10px 0;
    font-size: 14px;
    font-weight: 500;
  }
}
.catalog-header .filter-body .fieldsets-list .fieldset-wrapper fieldset,
.brands-header .filter-body .fieldsets-list .fieldset-wrapper fieldset {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.catalog-header .filter-body.price,
.brands-header .filter-body.price {
  gap: 0;
}
@media (max-width: 1023px) {
  .catalog-header .filter-body.price,
  .brands-header .filter-body.price {
    align-items: center;
  }
}
.catalog-header .filter-body.price .price-wrapper .inputs-wrapper,
.brands-header .filter-body.price .price-wrapper .inputs-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.catalog-header .filter-body.price .price-wrapper .inputs-wrapper label input,
.brands-header .filter-body.price .price-wrapper .inputs-wrapper label input {
  line-height: 160%;
  border: none;
  text-align: center;
  width: 110px;
  box-shadow: inset 0px 0.5px 1px 0 lightgrey;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 0px;
  background-color: var(--secondary5);
  outline: none;
}
.catalog-header .filter-body.price .price-wrapper .inputs-wrapper label input::-webkit-outer-spin-button, .catalog-header .filter-body.price .price-wrapper .inputs-wrapper label input::-webkit-inner-spin-button,
.brands-header .filter-body.price .price-wrapper .inputs-wrapper label input::-webkit-outer-spin-button,
.brands-header .filter-body.price .price-wrapper .inputs-wrapper label input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.catalog-header .filter-body.price .price-wrapper .inputs-wrapper label input[type=number],
.brands-header .filter-body.price .price-wrapper .inputs-wrapper label input[type=number] {
  -moz-appearance: textfield;
}
.catalog-header .filter-body.price .price-wrapper .price-slider-wrapper,
.brands-header .filter-body.price .price-wrapper .price-slider-wrapper {
  margin-top: 25px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.catalog-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider,
.brands-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider {
  min-width: 320px;
  max-width: 320px;
  width: 100%;
  height: 6px;
  border-radius: 0;
}
.catalog-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider .noUi-base,
.brands-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider .noUi-base {
  cursor: pointer;
}
@media (max-width: 639px) {
  .catalog-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider,
  .brands-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider {
    min-width: 260px;
  }
}
@media (max-width: 370px) {
  .catalog-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider,
  .brands-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider {
    min-width: 240px;
  }
}
.catalog-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider .noUi-connect,
.brands-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider .noUi-connect {
  background-color: var(--black);
}
.catalog-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider .noUi-handle,
.brands-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider .noUi-handle {
  top: -4px;
  right: -8px;
  border-radius: 100%;
  border: 1px solid var(--black);
  background-color: var(--white);
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.catalog-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider .noUi-handle::before,
.brands-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider .noUi-handle::before {
  display: none;
}
.catalog-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider .noUi-handle::after,
.brands-header .filter-body.price .price-wrapper .price-slider-wrapper #price-slider .noUi-handle::after {
  content: "";
  border-radius: 100%;
  background-color: var(--black);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.catalog-header .filter-body.price > .checkbox input::before,
.brands-header .filter-body.price > .checkbox input::before {
  border: none;
  background-color: var(--secondary5);
  box-shadow: inset 0px 0.5px 1px 0 lightgrey;
}
.catalog-header .filter-body.price > fieldset,
.brands-header .filter-body.price > fieldset {
  margin-top: 50px;
}
@media (max-width: 1023px) {
  .catalog-header .filter-body.price > fieldset,
  .brands-header .filter-body.price > fieldset {
    margin-top: 20px;
    align-items: center !important;
  }
}
@media (max-width: 639px) {
  .catalog-header .filter-body .btn,
  .brands-header .filter-body .btn {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
}
form .form-row {
  display: flex;
  flex-direction: column;
  padding-bottom: 17px;
}
form .form-row label {
  font-size: 14px;
  line-height: 100%;
  color: var(--black-60);
}
form .form-row label span {
  font-size: 11px;
  opacity: 0.4;
  padding-left: 5px;
}
form .form-row input,
form .form-row textarea {
  padding: 7px 0 5px;
  outline: none;
  border-bottom: 1px solid var(--secondary);
  transition: all 0.3s;
  display: block;
  width: 100%;
  line-height: 160%;
  background: var(--white);
  min-width: 260px;
}
form .form-row input:not(:-moz-placeholder-shown), form .form-row textarea:not(:-moz-placeholder-shown) {
  border-color: var(--primary2);
}
form .form-row input:not(:placeholder-shown), form .form-row input:focus-visible,
form .form-row textarea:not(:placeholder-shown),
form .form-row textarea:focus-visible {
  border-color: var(--primary2);
}
form .form-row textarea {
  max-height: 300px;
  min-height: 39px;
  resize: vertical;
}
form .checkboxes {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
form .checkboxes label .link {
  text-decoration: underline;
}
form .checkboxes label .link:hover {
  opacity: 0.6;
}
.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  background-color: var(--white);
  padding: 40px;
  z-index: 99;
  translate: -50% -50%;
  transition: all 0.5s;
  max-width: 470px;
  width: 100%;
}
@media (max-width: 767px) {
  .modal {
    padding: 40px 20px;
  }
}
.modal.cart-add-modal {
  max-width: 780px;
  max-height: 700px;
  z-index: 9999;
}
.modal.close {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0.5);
}
.modal .modal-header {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.modal .modal-header .close-btn {
  padding: 8px;
}
.modal .modal-header .close-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}
.modal .modal-header .title {
  display: flex;
  font-size: 30px;
  line-height: 120%;
}
@media (max-width: 1023px) {
  .modal .modal-header .title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .modal .modal-header .title {
    font-size: 22px;
  }
}
.modal fieldset {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.modal fieldset .form-row input,
.modal fieldset .form-row textarea {
  min-width: 250px;
}
.modal fieldset .form-row textarea {
  transition: none;
  transition: border 0.3s;
  height: 39px;
}
.modal fieldset .form-row:not(:has(label)) input,
.modal fieldset .form-row:not(:has(label)) textarea {
  margin-top: 14px;
}
.modal .checkboxes {
  margin-top: 30px;
}
.contacts-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) {
  .contacts-card {
    max-width: 220px;
  }
}
.contacts-card .title {
  opacity: 0.5;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 130%;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--secondary);
  margin-bottom: 20px;
}
.contacts-card .text-wrapper {
  display: flex;
  flex-direction: column;
}
.contacts-card .text-wrapper .text,
.contacts-card .text-wrapper .link {
  font-size: 14px;
  line-height: 160%;
}
.contacts-card .text-wrapper .text {
  opacity: 0.5;
}
.authorization-section form fieldset,
.recover-section form fieldset,
.contacts-section form fieldset {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
}
@media (min-width: 768px) {
  .authorization-section form fieldset,
  .recover-section form fieldset,
  .contacts-section form fieldset {
    max-width: 300px;
  }
}
.contacts-form-wrapper .title {
  margin-bottom: 28px;
  font-size: 24px;
  line-height: 130%;
}
@media (max-width: 1023px) {
  .contacts-form-wrapper .title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .contacts-form-wrapper .title {
    font-size: 18px;
  }
}
.contacts-form-wrapper form {
  width: 100%;
}
.contacts-form-wrapper form fieldset {
  max-width: none;
}
.cart-modal-img {
  min-height: 300px;
  max-height: 300px;
  min-width: 300px;
  max-width: 300px;
}
@media (max-width: 767px) {
  .cart-modal-img {
    min-height: 250px;
    max-height: 250px;
    min-width: 250px;
    max-width: 250px;
  }
}
@media (max-width: 639px) {
  .cart-modal-img {
    min-height: 200px;
    max-height: 200px;
    min-width: 200px;
    max-width: 200px;
  }
}
@media (max-width: 500px) {
  .cart-modal-img {
    min-height: 170px;
    max-height: 170px;
    min-width: 170px;
    max-width: 170px;
  }
}
@media (max-width: 400px) {
  .cart-modal-img {
    min-height: 200px;
    max-height: 200px;
    min-width: 200px;
    max-width: 200px;
  }
}
.accordion {
  --accordion-padding: 16px;
}
.accordion.open .content {
  padding: var(--accordion-padding) 0 0;
  max-height: none;
  overflow: visible;
  opacity: 1;
}
.section-header .svg-wrapper {
  max-width: 300px;
  max-height: 300px;
}
.section-header .svg-wrapper img,
.section-header .svg-wrapper svg {
  width: 100%;
  height: auto;
}
.after\:absolute::after{
  content: var(--tw-content);
  position: absolute;
}
.after\:left-0::after{
  content: var(--tw-content);
  left: 0px;
}
.after\:top-0::after{
  content: var(--tw-content);
  top: 0px;
}
.after\:top-1\/2::after{
  content: var(--tw-content);
  top: 50%;
}
.after\:z-\[1\]::after{
  content: var(--tw-content);
  z-index: 1;
}
.after\:block::after{
  content: var(--tw-content);
  display: block;
}
.after\:h-\[1px\]::after{
  content: var(--tw-content);
  height: 1px;
}
.after\:h-full::after{
  content: var(--tw-content);
  height: 100%;
}
.after\:w-full::after{
  content: var(--tw-content);
  width: 100%;
}
.after\:translate-y-1\/2::after{
  content: var(--tw-content);
  --tw-translate-y: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.after\:bg-secondary::after{
  content: var(--tw-content);
  background-color: var(--secondary);
}
.after\:bg-cover::after{
  content: var(--tw-content);
  background-size: cover;
}
.after\:bg-center::after{
  content: var(--tw-content);
  background-position: center;
}
.after\:bg-no-repeat::after{
  content: var(--tw-content);
  background-repeat: no-repeat;
}
.after\:brightness-50::after{
  content: var(--tw-content);
  --tw-brightness: brightness(.5);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.placeholder-shown\:border-b-secondary:-moz-placeholder-shown{
  border-bottom-color: var(--secondary);
}
.placeholder-shown\:border-b-secondary:placeholder-shown{
  border-bottom-color: var(--secondary);
}
.hover\:border-primary:hover{
  border-color: var(--primary);
}
.hover\:text-primary:hover{
  color: var(--primary);
}
.focus-visible\:border-primary:focus-visible{
  border-color: var(--primary);
}
.focus-visible\:border-b-primary:focus-visible{
  border-bottom-color: var(--primary);
}
.group:hover .group-hover\:visible{
  visibility: visible;
}
.group:hover .group-hover\:\!translate-y-0{
  --tw-translate-y: 0px !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.group:hover .group-hover\:translate-x-0{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:fill-primary-60{
  fill: var(--primary-60);
}
.group:hover .group-hover\:opacity-100{
  opacity: 1;
}
@media (max-width: 639px){
  .max-\[639px\]\:\!rounded-b-none{
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .max-\[639px\]\:\!rounded-t-none{
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
  }
  .max-\[639px\]\:\!border-b-transparent{
    border-bottom-color: transparent !important;
  }
}
@media (max-width: 500px){
  .max-\[500px\]\:flex-col{
    flex-direction: column;
  }
}
@media (max-width: 420px){
  .max-\[420px\]\:gap-3{
    gap: 0.75rem;
  }
}
@media (min-width: 400px){
  .min-\[400px\]\:flex-row{
    flex-direction: row;
  }
}
@media (min-width: 450px){
  .min-\[450px\]\:flex-row{
    flex-direction: row;
  }
  .min-\[450px\]\:items-center{
    align-items: center;
  }
}
@media (min-width: 500px){
  .min-\[500px\]\:flex-row{
    flex-direction: row;
  }
  .min-\[500px\]\:items-center{
    align-items: center;
  }
}
@media (min-width: 640px){
  .sm\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }
  .sm\:inline{
    display: inline;
  }
  .sm\:grid{
    display: grid;
  }
  .sm\:h-6{
    height: 1.5rem;
  }
  .sm\:h-\[300px\]{
    height: 300px;
  }
  .sm\:h-\[350px\]{
    height: 350px;
  }
  .sm\:h-\[400px\]{
    height: 400px;
  }
  .sm\:min-h-\[350px\]{
    min-height: 350px;
  }
  .sm\:min-h-\[440px\]{
    min-height: 440px;
  }
  .sm\:w-6{
    width: 1.5rem;
  }
  .sm\:w-auto{
    width: auto;
  }
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:flex-nowrap{
    flex-wrap: nowrap;
  }
  .sm\:gap-10{
    gap: 2.5rem;
  }
  .sm\:gap-20{
    gap: 5rem;
  }
  .sm\:gap-5{
    gap: 1.25rem;
  }
  .sm\:rounded-\[10px\]{
    border-radius: 10px;
  }
  .sm\:\!rounded-e-none{
    border-start-end-radius: 0px !important;
    border-end-end-radius: 0px !important;
  }
  .sm\:\!rounded-s-none{
    border-start-start-radius: 0px !important;
    border-end-start-radius: 0px !important;
  }
  .sm\:\!border-r-transparent{
    border-right-color: transparent !important;
  }
  .sm\:p-\[30px\]{
    padding: 30px;
  }
  .sm\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .sm\:px-\[30px\]{
    padding-left: 30px;
    padding-right: 30px;
  }
  .sm\:text-\[22px\]{
    font-size: 22px;
  }
  .sm\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px){
  .md\:mb-10{
    margin-bottom: 2.5rem;
  }
  .md\:mt-5{
    margin-top: 1.25rem;
  }
  .md\:mt-\[15px\]{
    margin-top: 15px;
  }
  .md\:block{
    display: block;
  }
  .md\:flex{
    display: flex;
  }
  .md\:hidden{
    display: none;
  }
  .md\:h-\[400px\]{
    height: 400px;
  }
  .md\:h-\[450px\]{
    height: 450px;
  }
  .md\:h-\[70px\]{
    height: 70px;
  }
  .md\:min-h-\[400px\]{
    min-height: 400px;
  }
  .md\:w-auto{
    width: auto;
  }
  .md\:max-w-\[160px\]{
    max-width: 160px;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:\!gap-16{
    gap: 4rem !important;
  }
  .md\:gap-10{
    gap: 2.5rem;
  }
  .md\:gap-5{
    gap: 1.25rem;
  }
  .md\:gap-7{
    gap: 1.75rem;
  }
  .md\:gap-\[35px\]{
    gap: 35px;
  }
  .md\:border-b{
    border-bottom-width: 1px;
  }
  .md\:border-t{
    border-top-width: 1px;
  }
  .md\:fill-primary{
    fill: var(--primary);
  }
  .md\:px-\[30px\]{
    padding-left: 30px;
    padding-right: 30px;
  }
  .md\:px-\[50px\]{
    padding-left: 50px;
    padding-right: 50px;
  }
  .md\:px-\[65px\]{
    padding-left: 65px;
    padding-right: 65px;
  }
  .md\:py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .md\:pb-10{
    padding-bottom: 2.5rem;
  }
  .md\:pt-\[50px\]{
    padding-top: 50px;
  }
  .md\:pt-\[60px\]{
    padding-top: 60px;
  }
  .md\:pt-\[75px\]{
    padding-top: 75px;
  }
  .md\:text-\[24px\]{
    font-size: 24px;
  }
  .md\:text-\[28px\]{
    font-size: 28px;
  }
  .md\:text-\[30px\]{
    font-size: 30px;
  }
  .md\:text-\[34px\]{
    font-size: 34px;
  }
  .md\:text-\[36px\]{
    font-size: 36px;
  }
  .md\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px){
  .lg\:order-2{
    order: 2;
  }
  .lg\:order-3{
    order: 3;
  }
  .lg\:order-4{
    order: 4;
  }
  .lg\:mb-0{
    margin-bottom: 0px;
  }
  .lg\:mb-\[50px\]{
    margin-bottom: 50px;
  }
  .lg\:mt-\[-120px\]{
    margin-top: -120px;
  }
  .lg\:mt-\[60px\]{
    margin-top: 60px;
  }
  .lg\:block{
    display: block;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:grid{
    display: grid;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:size-\[120px\]{
    width: 120px;
    height: 120px;
  }
  .lg\:h-\[450px\]{
    height: 450px;
  }
  .lg\:h-\[530px\]{
    height: 530px;
  }
  .lg\:h-\[564px\]{
    height: 564px;
  }
  .lg\:h-full{
    height: 100%;
  }
  .lg\:\!max-h-\[450px\]{
    max-height: 450px !important;
  }
  .lg\:max-h-\[450px\]{
    max-height: 450px;
  }
  .lg\:max-w-\[217px\]{
    max-width: 217px;
  }
  .lg\:max-w-\[780px\]{
    max-width: 780px;
  }
  .lg\:max-w-\[800px\]{
    max-width: 800px;
  }
  .lg\:max-w-\[928px\]{
    max-width: 928px;
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:items-center{
    align-items: center;
  }
  .lg\:\!gap-\[140px\]{
    gap: 140px !important;
  }
  .lg\:gap-0{
    gap: 0px;
  }
  .lg\:gap-10{
    gap: 2.5rem;
  }
  .lg\:gap-14{
    gap: 3.5rem;
  }
  .lg\:gap-20{
    gap: 5rem;
  }
  .lg\:gap-\[60px\]{
    gap: 60px;
  }
  .lg\:border-b{
    border-bottom-width: 1px;
  }
  .lg\:border-t-0{
    border-top-width: 0px;
  }
  .lg\:\!p-0{
    padding: 0px !important;
  }
  .lg\:p-20{
    padding: 5rem;
  }
  .lg\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }
  .lg\:px-\[30px\]{
    padding-left: 30px;
    padding-right: 30px;
  }
  .lg\:py-0{
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .lg\:pb-5{
    padding-bottom: 1.25rem;
  }
  .lg\:pb-6{
    padding-bottom: 1.5rem;
  }
  .lg\:pb-\[30px\]{
    padding-bottom: 30px;
  }
  .lg\:pl-5{
    padding-left: 1.25rem;
  }
  .lg\:pr-\[30px\]{
    padding-right: 30px;
  }
  .lg\:pt-10{
    padding-top: 2.5rem;
  }
  .lg\:pt-\[60px\]{
    padding-top: 60px;
  }
  .lg\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:text-\[32px\]{
    font-size: 32px;
  }
  .lg\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1280px){
  .xl\:invisible{
    visibility: hidden;
  }
  .xl\:static{
    position: static;
  }
  .xl\:absolute{
    position: absolute;
  }
  .xl\:block{
    display: block;
  }
  .xl\:\!hidden{
    display: none !important;
  }
  .xl\:hidden{
    display: none;
  }
  .xl\:size-\[160px\]{
    width: 160px;
    height: 160px;
  }
  .xl\:h-0{
    height: 0px;
  }
  .xl\:h-\[500px\]{
    height: 500px;
  }
  .xl\:h-\[70px\]{
    height: 70px;
  }
  .xl\:max-w-\[540px\]{
    max-width: 540px;
  }
  .xl\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xl\:gap-20{
    gap: 5rem;
  }
  .xl\:gap-\[100px\]{
    gap: 100px;
  }
  .xl\:gap-\[50px\]{
    gap: 50px;
  }
  .xl\:px-\[50px\]{
    padding-left: 50px;
    padding-right: 50px;
  }
  .xl\:py-\[30px\]{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .xl\:py-\[90px\]{
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .xl\:pb-10{
    padding-bottom: 2.5rem;
  }
  .xl\:pl-10{
    padding-left: 2.5rem;
  }
  .xl\:pr-20{
    padding-right: 5rem;
  }
  .xl\:pr-\[90px\]{
    padding-right: 90px;
  }
  .xl\:pt-\[60px\]{
    padding-top: 60px;
  }
  .xl\:shadow-\[0_2px_4px_0_rgba\(0\2c 0\2c 0\2c 0\.1\)\]{
    --tw-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
    --tw-shadow-colored: 0 2px 4px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
}