/*!****************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./src/scss/index.scss ***!
  \****************************************************************************************************************/
@charset "UTF-8";
.sliding-videos {
  background: white !important;
}
.sliding-videos__section {
  overflow: hidden;
}
.sliding-videos__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(24px, 6vw, 100px);
  position: relative;
}
@media (max-width: 767px) {
  .sliding-videos__inner {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}
.sliding-videos__content {
  grid-column: 1;
  position: relative;
  z-index: 2;
}
@media (min-width: 1270px) {
  .sliding-videos__content {
    max-width: 500px;
  }
}
.sliding-videos__content__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: var(--card-border-radius);
  border-width: var(--card-border-width);
  border-color: black;
}
.sliding-videos__content__inner__button {
  z-index: 10;
  width: fit-content;
}
.sliding-videos__content__inner__button span {
  background: #FEA0FF;
}
.sliding-videos__content__inner__button:hover span {
  background: #FEA0FF !important;
}
.sliding-videos__medias-desktop {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  grid-column: 2;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: clamp(260px, 34vw, 520px);
  justify-self: end;
  justify-content: flex-end;
  transform: translateX(clamp(0px, 6vw, 140px));
  overflow: visible;
  padding-left: clamp(20px, 3vw, 44px);
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .sliding-videos__medias-desktop {
    display: none;
    transform: none;
  }
}
.sliding-videos__medias-desktop > img,
.sliding-videos__medias-desktop > video {
  width: clamp(180px, 19vw, 320px);
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  transform-origin: center;
  opacity: 0;
  transform: translateX(120%) rotate(var(--sv-rot, 0deg));
  will-change: transform, opacity;
  display: block;
  z-index: 1;
}
.sliding-videos__medias-desktop > img:nth-child(1),
.sliding-videos__medias-desktop > video:nth-child(1) {
  --sv-rot: -8deg;
}
.sliding-videos__medias-desktop > img:nth-child(2),
.sliding-videos__medias-desktop > video:nth-child(2) {
  --sv-rot: 4deg;
  margin-left: clamp(-40px, -6vw, -16px);
}
.sliding-videos__medias-desktop > img:nth-child(3),
.sliding-videos__medias-desktop > video:nth-child(3) {
  --sv-rot: 10deg;
  margin-left: clamp(-48px, -7vw, -18px);
}
.sliding-videos__medias-mobile {
  display: none;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 40px;
  padding: 0 clamp(16px, 6vw, 32px);
  overflow: visible;
}
@media (max-width: 767px) {
  .sliding-videos__medias-mobile {
    display: block;
  }
}
.sliding-videos__medias-mobile .swiper-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.sliding-videos__medias-mobile .swiper-slide {
  flex-shrink: 0;
  width: clamp(220px, 72vw, 300px);
  aspect-ratio: 4/5;
  opacity: 1;
  transform: none;
  transition: transform 220ms ease, opacity 220ms ease;
  transform-origin: center;
}
.sliding-videos__medias-mobile .swiper-slide-active {
  opacity: 1;
  transform: scaleY(1.06);
}
.sliding-videos__medias-mobile .swiper-slide-prev,
.sliding-videos__medias-mobile .swiper-slide-next {
  opacity: 1;
}
.sliding-videos__medias-mobile__video {
  width: 100%;
  height: 100%;
  display: block;
}
.sliding-videos__medias-mobile__image {
  width: 100%;
  height: 100%;
  display: block;
}
.sliding-videos__medias-mobile__video video, .sliding-videos__medias-mobile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .sliding-videos--inview .sliding-videos__medias-desktop > img,
  .sliding-videos--inview .sliding-videos__medias-desktop > video {
    animation: sliding-videos-enter 1.2s cubic-bezier(0.19, 0.8, 0.22, 1) forwards;
  }
  .sliding-videos--inview .sliding-videos__medias-desktop > img:nth-child(2),
  .sliding-videos--inview .sliding-videos__medias-desktop > video:nth-child(2) {
    animation-delay: 0.12s;
  }
  .sliding-videos--inview .sliding-videos__medias-desktop > img:nth-child(3),
  .sliding-videos--inview .sliding-videos__medias-desktop > video:nth-child(3) {
    animation-delay: 0.22s;
  }
}
@keyframes sliding-videos-enter {
  0% {
    opacity: 0;
    transform: translateX(120%) rotate(var(--sv-rot, 0deg));
  }
  60% {
    opacity: 1;
    transform: translateX(-12px) rotate(var(--sv-rot, 0deg));
  }
  80% {
    transform: translateX(6px) rotate(var(--sv-rot, 0deg));
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(var(--sv-rot, 0deg));
  }
}
.slides-one-text {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .slides-one-text {
    flex-direction: column;
    gap: 28px;
  }
}
.slides-one-text__slider {
  width: 100%;
  max-width: 50%;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--card-border-radius) !important;
}
@media (max-width: 767px) {
  .slides-one-text__slider {
    max-width: 100%;
  }
}
.slides-one-text__slider .swiper-wrapper {
  display: flex;
  border-radius: var(--card-border-radius);
}
.slides-one-text__slider .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  border-radius: var(--card-border-radius);
}
.slides-one-text__slider__slide {
  height: clamp(260px, 36vw, 520px);
  overflow: hidden;
  min-width: 0;
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  border-radius: var(--card-border-radius);
  box-sizing: border-box;
  background-color: rgb(var(--color-scheme-background));
}
.slides-one-text__slider__slide img,
.slides-one-text__slider__slide video {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slides-one-text__slider__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}
.slides-one-text__slider__navigation .swiper-button-prev,
.slides-one-text__slider__navigation .swiper-button-next {
  width: 30px;
  height: auto;
}
.slides-one-text__slider__navigation .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  position: static;
}
.slides-one-text__slider__navigation .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid currentColor;
  background: transparent;
  opacity: 1;
  margin: 0;
}
.slides-one-text__slider__navigation .swiper-pagination-bullet-active {
  background: currentColor;
}
.slides-one-text__content {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 20px;
}
.slides-one-text__content__title {
  text-align: left !important;
}
.slides-one-text__content__button {
  z-index: 10;
  width: fit-content;
}
.slides-one-text__content__button span {
  background: #fea0ff;
}
.slides-one-text__content__button:hover span {
  background: #fea0ff !important;
}

.testimony-v2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}
.testimony-v2__slider {
  width: 100%;
  overflow: visible;
}
.testimony-v2__slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.testimony-v2__slider .swiper-slide {
  flex-shrink: 0;
}
.testimony-v2__slide {
  width: clamp(240px, 85vw, 360px);
  height: auto;
  transition: transform 0.25s ease;
}
.testimony-v2__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 20px 16px;
  background: rgba(var(--color-scheme-text), 0.04);
  border: 1px solid rgba(var(--color-scheme-text), 0.25);
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.swiper-slide-active .testimony-v2__card {
  transform: translateY(-4px);
  border-color: rgba(var(--color-scheme-text), 0.6);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  background: var(--testimony-v2-active-bg, rgba(var(--color-scheme-text), 0.06));
}
.testimony-v2__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1;
}
.testimony-v2__score {
  font-weight: 600;
}
.testimony-v2__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}
.testimony-v2__card-description {
  font-size: 0.9rem;
  line-height: 1.5;
}
.testimony-v2__card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(var(--color-scheme-text), 0.2);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.testimony-v2__card-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.testimony-v2__card-verified-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimony-v2__card-verified-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.testimony-v2__slider__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}
.testimony-v2__slider__navigation .swiper-button-prev,
.testimony-v2__slider__navigation .swiper-button-next {
  width: 30px;
  height: auto;
  position: static;
}
.testimony-v2__slider__navigation .swiper-pagination {
  display: none;
}
.testimony-v2__slider__navigation .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid currentColor;
  background: transparent;
  opacity: 1;
  margin: 0;
}
.testimony-v2__slider__navigation .swiper-pagination-bullet-active {
  background: currentColor;
}
@media (min-width: 768px) {
  .testimony-v2__header {
    margin-bottom: 40px;
  }
  .testimony-v2__slide {
    width: clamp(260px, 30vw, 360px);
  }
  .testimony-v2__card {
    padding: 24px 24px 18px;
  }
}

.product-caroussel__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}
.product-caroussel__button {
  margin-top: 8px;
}
.product-caroussel__slider {
  width: 100%;
  overflow: visible;
}
.product-caroussel__slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.product-caroussel__slider .swiper-slide {
  flex-shrink: 0;
  height: auto;
}
.product-caroussel__slide {
  width: clamp(220px, 78vw, 300px);
}
.product-caroussel__card {
  height: 100%;
  background: var(--product-caroussel-card-bg, #d7eef7);
  padding: 10px;
  border-radius: 18px;
}
.product-caroussel__card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  background: rgb(var(--color-scheme-card));
  color: rgb(var(--color-scheme-card-text));
  border: 1px solid rgba(var(--color-scheme-text), 0.12);
}
.product-caroussel__image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
}
.product-caroussel__image-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-caroussel__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  justify-content: flex-start;
}
.product-caroussel__product-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}
.product-caroussel__price {
  font-size: 0.9rem;
}
.product-caroussel__card-button {
  margin-top: auto;
  width: 100%;
  text-align: center;
}
.product-caroussel__card-button .push-btn__surface {
  width: 100%;
  display: block;
  color: white;
  background: black;
}
.product-caroussel__slider__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}
.product-caroussel__slider__navigation .swiper-button-prev,
.product-caroussel__slider__navigation .swiper-button-next {
  width: 30px;
  height: auto;
  position: static;
}
.product-caroussel__slider__navigation .swiper-pagination {
  display: none;
}
.product-caroussel__slider__navigation .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid currentColor;
  background: transparent;
  opacity: 1;
  margin: 0;
}
.product-caroussel__slider__navigation .swiper-pagination-bullet-active {
  background: currentColor;
}
@media (min-width: 768px) {
  .product-caroussel__header {
    margin-bottom: 40px;
  }
  .product-caroussel__slide {
    width: clamp(240px, 26vw, 320px);
  }
  .product-caroussel__card {
    padding: 12px;
  }
  .product-caroussel__card-inner {
    padding: 18px;
  }
}

.newsletter__highlight {
  color: var(--newsletter-highlight-color, currentColor);
  font-weight: 700;
}
.newsletter__panel {
  background: var(--newsletter-panel-bg, rgba(var(--color-scheme-text), 0.05));
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  border-radius: 18px;
  padding: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.newsletter__panel-title {
  font-size: 1.1rem;
}
.newsletter__panel-text {
  font-size: 0.9rem;
  line-height: 1.5;
}
.newsletter__panel-form {
  margin-top: 16px;
}
.newsletter__input {
  background: #fff;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .newsletter__panel {
    padding: 24px 28px;
  }
}

.product-icon-list {
  background: var(--product-icon-list-bg, rgba(var(--color-scheme-text), 0.05));
  border: 2px solid rgba(var(--color-scheme-text), 0.25);
  border-radius: 16px;
  padding: 16px;
}
.product-icon-list__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  align-items: start;
  text-align: center;
}
.product-icon-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.product-icon-list__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-icon-list__icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-icon-list__text {
  font-size: 0.95rem;
  line-height: 1.4;
}

.template-product .product-media-grid__media,
.template-product .product-media-single {
  position: relative;
}

.template-product .product-media-grid__badge {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  width: 64px;
  height: 64px;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--card-border-radius);
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  background: rgb(var(--color-scheme-background));
}

.template-product .product-media-grid__badge-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 990px) {
  .template-product #MainContent {
    overflow: visible;
  }
  .template-product .product-content {
    position: sticky;
    top: var(--section-y-padding, 2rem);
    align-self: start;
    height: fit-content;
  }
  .template-product .product-content--static {
    position: static;
    top: auto;
  }
  .template-product .product-media--sticky {
    position: sticky;
    top: var(--section-y-padding, 2rem);
    align-self: start;
    height: fit-content;
  }
  .template-product .product-media-desktop {
    padding: 0;
  }
  .template-product .product-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
  }
  .template-product .product-media-grid__item--featured {
    grid-column: 1/-1;
  }
  .template-product .product-media-grid__badge {
    top: 12px;
    left: 12px;
    width: 84px;
    height: 84px;
  }
  .template-product .thumbnails-container {
    max-height: var(--thumbnails-height);
    overflow: hidden;
  }
  .template-product .thumbnails-container .splide__track,
  .template-product .thumbnails-container .splide__list {
    height: 100%;
  }
}
.template-product .product-thumbnail-list-item--active .media__styled-element {
  border-width: 2px;
  border-color: rgba(var(--color-scheme-text), 0.5);
}

.template-product .product-thumbnail-list-item--active .media__shape-container > .media__svg use {
  stroke: rgba(var(--color-scheme-text), 0.5);
}

.template-product .variant-input--image-card {
  width: 100%;
}

.template-product .variant-image-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  cursor: pointer;
}

.template-product .variant-image-card__media {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid rgba(var(--color-scheme-text), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}

.template-product .variant-image-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.template-product .variant-image-card__label {
  font-size: 0.85rem;
  font-weight: 600;
}

.template-product .variant-image-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.template-product .variant-image-card__check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.template-product .variant-image-card__check svg {
  width: 16px;
  height: 16px;
}

.template-product .variant-image-card__input:checked + .variant-image-card .variant-image-card__overlay {
  opacity: 1;
}

.template-product .variant-image-card__input:checked + .variant-image-card .variant-image-card__check {
  opacity: 1;
}

.template-product .variant-image-card__input:checked + .variant-image-card .variant-image-card__media {
  border-color: rgb(var(--color-scheme-text));
  box-shadow: 0 0 0 2px rgba(var(--color-scheme-text), 0.15);
}

.template-product .variant-image-card--disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.template-product .variant-image-cards {
  border: 1px dashed rgba(var(--color-scheme-text), 0.45);
  border-radius: 16px;
  padding: 16px;
}

.template-product .variant-image-cards__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.template-product .variant-image-cards__summary::-webkit-details-marker {
  display: none;
}

.template-product .variant-image-cards__title {
  font-size: 1.1rem;
  font-weight: 700;
}

.template-product .variant-image-cards__chevron {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.template-product .variant-image-cards[open] .variant-image-cards__chevron {
  transform: rotate(180deg);
}

.template-product .variant-image-cards__body {
  margin-top: 12px;
}

.product-performance__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}
.product-performance__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}
.product-performance__media {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  padding: clamp(10px, 2vw, 16px);
  height: 100%;
  align-self: stretch;
  box-sizing: border-box;
  min-width: 0;
}
.product-performance__image {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 12px;
  border: none;
  background: transparent;
  display: block;
  max-width: 100%;
}
.product-performance__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  padding: clamp(16px, 3vw, 24px);
  height: 100%;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  text-align: left;
  box-sizing: border-box;
  min-width: 0;
}
.product-performance__performance-title {
  font-size: 1.25rem;
  font-weight: 700;
  width: 100%;
  max-width: 550px;
}
.product-performance__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 550px;
}
.product-performance__item {
  width: 100%;
}
.product-performance__item-title {
  font-size: 0.95rem;
  font-weight: 600;
}
.product-performance__ticks {
  display: flex;
  gap: 0;
  margin: 8px 0 10px;
  width: 100%;
  position: relative;
  overflow: visible;
}
.product-performance__tick {
  flex: 1 1 0;
  height: 8px;
  border-radius: 0;
  background: var(--product-performance-tick-before, var(--product-performance-tick, #6dc5ea));
}
.product-performance__tick.is-before {
  background: var(--product-performance-tick, #6dc5ea);
}
.product-performance__tick.is-active {
  background: var(--product-performance-tick, #6dc5ea);
  position: relative;
}
.product-performance__tick.is-active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  background: var(--product-performance-tick, #6dc5ea);
  border-radius: 50%;
  transform: translate(50%, -50%);
  box-shadow: 0 0 0 2px var(--product-performance-ball-border, rgba(0, 0, 0, 0.5));
}
.product-performance__tick:first-child {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}
.product-performance__tick:last-child {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}
.product-performance__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.product-performance__option {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(var(--color-scheme-text), 0.75);
  white-space: nowrap;
  flex: 1 1 30%;
}
.product-performance__option:nth-child(1) {
  text-align: left;
}
.product-performance__option:nth-child(3) {
  text-align: right;
}
@media (min-width: 990px) {
  .product-performance__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 40px;
  }
  .product-performance__header {
    margin-bottom: 40px;
  }
  .product-performance__image {
    max-width: 620px;
  }
}
@media (max-width: 767px) {
  .product-performance__performance-title {
    max-width: 100%;
  }
  .product-performance__options {
    flex-wrap: wrap;
    gap: 0;
  }
  .product-performance__option {
    white-space: wrap;
    min-width: 0;
    max-width: 30%;
    font-size: 0.8rem;
  }
}

.product-advantages__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}
.product-advantages__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.product-advantages__image {
  display: none;
}
.product-advantages__image-media {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  display: block;
  object-fit: cover;
}
.product-advantages__table {
  border-radius: 18px;
  padding: 5px;
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  align-self: stretch;
  height: 100%;
}
.product-advantages__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
  align-items: stretch;
}
.product-advantages__column {
  border-radius: 16px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  height: 100%;
  align-self: stretch;
}
.product-advantages__column-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 110px;
}
.product-advantages__column-image-media {
  width: 100%;
  max-width: 110px;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-advantages__column-title {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: "Intervogue", sans-serif;
  text-align: center;
}
.product-advantages__options {
  display: flex;
  flex-direction: column;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .product-advantages__options {
    gap: 15px;
  }
}
@media (min-width: 1300px) {
  .product-advantages__options {
    margin-left: 10%;
  }
}
@media (min-width: 1600px) {
  .product-advantages__options {
    margin-left: 20%;
  }
}
.product-advantages__option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.product-advantages__option-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.product-advantages__option-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.product-advantages__option-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-advantages__option-title {
  font-weight: 600;
}
.product-advantages__column:nth-child(odd) .product-advantages__option-title {
  font-family: "Uncut Semibold", sans-serif;
}
.product-advantages__column:nth-child(even) .product-advantages__option-title {
  font-family: "Uncut Regular", sans-serif;
  font-weight: 400;
}
.product-advantages__option-subtext {
  font-size: 0.8rem;
  color: rgba(var(--color-scheme-text), 0.65);
}
@media (min-width: 990px) {
  .product-advantages__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: stretch;
  }
  .product-advantages__image {
    display: block;
  }
  .product-advantages__table {
    padding: 5px;
  }
  .product-advantages__columns {
    gap: 22px;
  }
  .product-advantages__column {
    padding: 20px 18px;
  }
  .product-advantages__column-image-media {
    max-width: 130px;
  }
  .product-advantages__column-image {
    height: 130px;
  }
}
@media (max-width: 767px) {
  .product-advantages__option {
    gap: 10px;
  }
  .product-advantages__option-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    flex-basis: 16px;
  }
}

.product-variants__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}
.product-variants__slider {
  width: 100%;
  overflow: visible;
}
.product-variants__slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.product-variants__slider .swiper-slide {
  flex-shrink: 0;
  height: auto;
}
.product-variants__slide {
  width: clamp(170px, 70vw, 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.product-variants__card {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px;
  border: 1px solid rgba(var(--color-scheme-text), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.product-variants__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-variants__name {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}
.product-variants__slider__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 16px;
}
.product-variants__slider__navigation .swiper-button-prev,
.product-variants__slider__navigation .swiper-button-next {
  width: 30px;
  height: auto;
  position: static;
}
.product-variants__slider__navigation .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  position: static;
}
.product-variants__slider__navigation .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid currentColor;
  background: transparent;
  opacity: 1;
  margin: 0;
}
.product-variants__slider__navigation .swiper-pagination-bullet-active {
  background: currentColor;
}
.product-variants__cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .product-variants__slide {
    width: clamp(190px, 24vw, 240px);
  }
}
@media (min-width: 990px) {
  .product-variants__header {
    margin-bottom: 34px;
  }
  .product-variants__slider__navigation {
    margin-top: 20px;
  }
}

.pv2 {
  overflow: hidden;
}
.pv2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}
.pv2__slider {
  width: 100%;
  overflow: visible;
}
.pv2__slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.pv2__slider .swiper-slide {
  flex-shrink: 0;
  height: auto;
}
.pv2__slider--static .swiper-wrapper {
  justify-content: center;
  gap: 10px;
}
.pv2__slider--static .pv2__nav {
  display: none;
}
.pv2__slide {
  width: clamp(170px, 70vw, 220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pv2__card {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 14px;
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.pv2__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  display: block;
  border-radius: 9px;
}
.pv2__name {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}
.pv2__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 16px;
}
.pv2__nav .swiper-button-prev,
.pv2__nav .swiper-button-next {
  width: 30px;
  height: auto;
  position: static;
}
.pv2__nav .swiper-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  position: static;
}
.pv2__nav .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid currentColor;
  background: transparent;
  opacity: 1;
  margin: 0;
}
.pv2__nav .swiper-pagination-bullet-active {
  background: currentColor;
}
.pv2__cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .pv2__slide {
    width: clamp(190px, 24vw, 240px);
  }
}
@media (min-width: 990px) {
  .pv2__header {
    margin-bottom: 34px;
  }
  .pv2__nav {
    margin-top: 20px;
  }
}

.product-steps__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}
.product-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.product-steps__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-steps__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  background: rgba(var(--color-scheme-text), 0.05);
  aspect-ratio: 16/9;
}
.product-steps__media video, .product-steps__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-steps__index {
  position: absolute;
  font-family: "Intervogue";
  top: 10px;
  left: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 34px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.product-steps__card-title {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .product-steps__card-title {
    font-size: 22px;
  }
}
.product-steps__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.9019607843);
}
@media (min-width: 768px) {
  .product-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}
@media (min-width: 990px) {
  .product-steps__header {
    margin-bottom: 40px;
  }
  .product-steps__grid {
    gap: 32px;
  }
}

.main-collection-product-grid .product-tile {
  text-align: left !important;
}
.main-collection-product-grid .product-tile__title {
  text-transform: none;
  font-family: "Uncut Semibold", sans-serif !important;
}
.main-collection-product-grid .product-tile .price,
.main-collection-product-grid .product-tile .price__sale,
.main-collection-product-grid .product-tile .price__regular,
.main-collection-product-grid .product-tile [data-product-price] {
  text-align: left;
  font-family: "Uncut Regular italic", sans-serif;
  font-style: italic;
}
.main-collection-product-grid .product-tile__rating {
  margin-bottom: 6px;
}
.main-collection-product-grid .product-tile__promo {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ff5fd6;
  color: #ffffff;
  font-size: 0.75rem;
  font-family: "Uncut Semibold", sans-serif;
  line-height: 1;
  letter-spacing: 0.01em;
}

.main-collection-product-grid .product-card-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.75rem;
}
.main-collection-product-grid .product-card-swatches__swatch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.main-collection-product-grid .product-card-swatches__swatch:hover {
  transform: translateY(-1px);
}
.main-collection-product-grid .product-card-swatches__swatch:focus-visible {
  outline: none;
}
.main-collection-product-grid .product-card-swatches__swatch-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-size: cover;
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  transition: border-color 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}
.main-collection-product-grid .product-card-swatches__swatch.is-active .product-card-swatches__swatch-inner,
.main-collection-product-grid .product-card-swatches__swatch:focus-visible .product-card-swatches__swatch-inner {
  border-color: rgba(var(--color-scheme-text), 1);
}
.main-collection-product-grid .product-card-swatches__swatch.is-sold-out .product-card-swatches__swatch-inner {
  overflow: hidden;
}
.main-collection-product-grid .product-card-swatches__swatch.is-sold-out .product-card-swatches__swatch-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.3);
}
.main-collection-product-grid .product-tile__price-link {
  text-decoration: none;
}

.customer-advantages {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.customer-advantages__title {
  margin-bottom: 24px;
}
.customer-advantages__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.customer-advantages__inner__card {
  box-sizing: border-box;
  border-radius: var(--card-border-radius);
  border-style: solid;
  border-width: var(--card-border-width);
  border-color: black;
  contain: layout paint;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: clamp(14px, 2vw, 20px);
  min-width: 0;
  width: 100%;
  min-height: 100%;
  justify-content: space-between;
}
.customer-advantages__inner__card__icon {
  width: clamp(90px, 12vw, 130px);
  height: clamp(90px, 12vw, 130px);
  max-width: 100%;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  color: #71C6EC;
  backface-visibility: hidden;
}
.customer-advantages__inner__card__icon--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.customer-advantages__inner__card__icon--fallback svg {
  width: 100%;
  height: 100%;
  display: block;
}
.customer-advantages__inner__card__text {
  width: 100%;
  line-height: 1.25;
}
.customer-advantages__inner__card__text p {
  margin: 0;
}
.customer-advantages__inner__card__text strong {
  font-weight: 700;
}

@media (max-width: 767px) {
  .customer-advantages__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .customer-advantages__inner__card {
    padding: 14px 12px;
  }
  .customer-advantages__inner__card__icon {
    width: clamp(70px, 22vw, 110px);
    height: clamp(70px, 22vw, 110px);
  }
  .customer-advantages__inner__card__text {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .customer-advantages__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
.double-image-overflow__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}
.double-image-overflow__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 64px);
  align-items: center;
}
.double-image-overflow__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(220px, 30vw, 360px);
}
.double-image-overflow__media--left {
  justify-content: flex-start;
  transform: translateX(calc(-1 * var(--section-x-padding)));
}
.double-image-overflow__media--main {
  border-radius: var(--media-border-radius);
  border-width: 2px;
  border-style: solid;
  border-color: rgba(var(--color-scheme-text), 0.2);
  padding: 0;
  background: transparent;
  overflow: hidden;
}
.double-image-overflow__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.double-image-overflow__media--left .double-image-overflow__image {
  width: auto;
  height: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .double-image-overflow__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .double-image-overflow__media {
    min-height: clamp(200px, 60vw, 320px);
  }
  .double-image-overflow__media--main {
    padding: 0;
  }
}

.faq-v2 {
  width: 100%;
}
.faq-v2__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 28px;
}
.faq-v2__content__title {
  text-transform: uppercase;
}
.faq-v2__content__description {
  max-width: 560px;
}
.faq-v2__tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
}
.faq-v2__tabs__tab {
  border: 0;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  color: currentColor;
}
.faq-v2__tabs__tab.is-active {
  background: var(--faq-tab-color);
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.faq-v2__list {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-v2__list__item {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 12px 16px 14px;
  background: #fff;
  text-align: left;
}
.faq-v2__list__item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--faq-tab-color);
  color: #111;
  font-size: 13px;
  font-weight: 700;
}
.faq-v2__list__item__question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.faq-v2__list__item__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}
.faq-v2__list__item__answer {
  display: none;
  margin-top: 12px;
  font-size: 14px;
}
.faq-v2__list__item.is-open .faq-v2__list__item__answer {
  display: block;
}
.faq-v2__list__item.is-open .faq-v2__list__item__icon {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .faq-v2__content {
    margin-bottom: 20px;
  }
  .faq-v2__tabs {
    width: 100%;
  }
  .faq-v2__tabs__tab {
    padding: 6px 10px;
    font-size: 13px;
  }
  .faq-v2__list {
    gap: 10px;
  }
  .faq-v2__list__item {
    padding: 12px 14px;
  }
}
.hover-image-links {
  width: 100%;
}
.hover-image-links__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.hover-image-links__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 6vw, 96px);
}
.hover-image-links__list {
  display: flex;
  flex-direction: column;
  justify-self: center;
}
.hover-image-links__item {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 54px;
  color: rgba(0, 0, 0, 0.35);
  transition: color 160ms ease;
}
.hover-image-links__item__icon {
  width: clamp(28px, 3vw, 40px);
  height: auto;
  opacity: 0;
  transform: translateX(-6px) scale(0.92);
  transition: opacity 200ms ease, transform 260ms cubic-bezier(0.2, 0.75, 0.2, 1);
  pointer-events: none;
}
.hover-image-links__item.is-active, .hover-image-links__item:hover, .hover-image-links__item:focus-visible {
  color: #111;
}
.hover-image-links__item:hover .hover-image-links__item__icon, .hover-image-links__item:focus-visible .hover-image-links__item__icon {
  opacity: 1;
  transform: translateX(0) scale(2);
}
.hover-image-links__preview {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 28px;
  background: var(--hover-preview-bg, rgba(0, 0, 0, 0.04));
  padding: clamp(20px, 4vw, 44px);
  transition: background-color 200ms ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hover-image-links__image {
  position: absolute;
  inset: clamp(20px, 4vw, 44px);
  opacity: 0;
  transition: opacity 180ms ease;
}
.hover-image-links__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.hover-image-links__image.is-active {
  opacity: 1;
}

@media (max-width: 767px) {
  .hover-image-links {
    display: none;
  }
}
.button-eye {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-left: 8px;
  vertical-align: middle;
}

.button-eye__eye {
  width: 12px;
  height: 22px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-eye__pupil {
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 999px;
  position: absolute;
  transition: transform 0.1s ease;
}

@media (hover: none), (pointer: coarse) {
  .button-eye__pupil {
    width: 10px;
    height: 10px;
  }
}
.dynamic-text-and-image__inner {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Intervogue";
  font-size: 45px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .dynamic-text-and-image__inner {
    font-size: 25px;
  }
}

.dynamic-text-and-image__sentence {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35em;
}

.dynamic-text-and-image__prefix,
.dynamic-text-and-image__suffix {
  display: flex;
  align-items: center;
}

.dynamic-text-and-image__prefix-part {
  display: inline;
}

.dynamic-text-and-image__static-image {
  display: inline-flex;
  align-items: center;
  margin: 0 0.5em;
}

.dynamic-text-and-image__static-image img {
  display: block;
  height: 2.2em;
  width: auto;
}

.dynamic-text-and-image__prefix p,
.dynamic-text-and-image__suffix p {
  display: inline;
  margin: 0;
}

.dynamic-text-and-image__dynamic {
  display: inline-flex;
  align-items: center;
  min-height: 1em;
}

.dynamic-text-and-image__text {
  white-space: pre-wrap;
}

.dynamic-text-and-image__image {
  height: 2.2em;
  width: auto;
  display: inline-block;
  opacity: 0;
  transition: opacity 0.2s ease;
}

@media (max-width: 500px) {
  .dynamic-text-and-image__image {
    max-width: 45px;
  }
}
.dynamic-text-and-image__image.is-visible {
  opacity: 1;
}

.cart-drawer__layout {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-drawer__main {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  max-height: 100%;
  background: white;
}

.cart-drawer__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  justify-content: space-between;
}

.cart-drawer__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: scroll;
}

.cart-drawer__footer .push-btn__surface, .cart-drawer__footer .push-btn:hover .push-btn__surface {
  background: black !important;
  color: white !important;
}

.cart-line-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 0 !important;
}

.cart-line-item .media__styled-element {
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-width: 0;
}

.cart-drawer__footer, .cart-loox-review {
  background: black !important;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.cart-line-item__media {
  width: 80px;
}

.cart-line-item__image {
  display: block;
  overflow: hidden;
  height: 100%;
}

.cart-line-item__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 5px;
  justify-content: space-between;
}

.cart-line-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-line-item__row--top {
  align-items: flex-start;
}

.cart-line-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
}

.cart-line-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.cart-line-item__remove-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.cart-line-item__remove-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cart-line-item__row--variant {
  font-size: 0.75rem;
  opacity: 0.7;
}

.cart-line-item__row--bottom {
  align-items: center;
}

.cart-line-item__price {
  font-size: 0.8rem;
  display: flex;
  gap: 6px;
  align-items: center;
  white-space: nowrap;
}

.cart-line-item__price-compare {
  text-decoration: line-through;
  opacity: 0.6;
}

.cart-line-item__price-final {
  font-weight: 600;
}

.cart-line-item__quantity .input {
  height: 32px;
}

.cart__contents ul {
  gap: 20px;
}

.cart-upsell {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-upsell__title {
  font-size: 0.95rem;
  font-weight: 600;
}

.cart-upsell__pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.cart-upsell__pills::-webkit-scrollbar {
  display: none;
}

.cart-upsell__pill {
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 3px;
  padding: 6px 12px;
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  background: transparent;
}

.cart-upsell__pill.is-active {
  background: #1f2937;
  border-color: #1f2937;
  color: #fff;
}

.cart-upsell__products {
  display: grid;
  gap: 12px;
  align-items: stretch;
}

.cart-upsell-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 5px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  height: 100%;
}

.cart-upsell-card__media {
  width: 80px;
  height: 100%;
}

.cart-upsell-card__image {
  display: block;
  overflow: hidden;
  height: 100%;
}

.cart-upsell-card__image .media__styled-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-width: 0;
}

.cart-upsell-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 5px;
  justify-content: space-between;
}

.cart-upsell-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cart-upsell-card__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-upsell-card__variant {
  font-size: 0.75rem;
}

.cart-upsell-card__variant-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-upsell-card__variant-select {
  font-size: 10px;
  line-height: 1.2;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background-color: #fff;
  width: auto;
  min-width: 0;
  max-width: 100%;
  appearance: auto;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  background-image: initial;
  box-shadow: none;
}

.cart-upsell-card__variant-measure {
  position: absolute;
  visibility: hidden;
  white-space: nowrap;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  padding: 0;
}

.cart-upsell-card__price {
  font-size: 0.8rem;
  display: flex;
  gap: 6px;
  align-items: center;
  white-space: nowrap;
}

.cart-upsell-card__price-compare {
  text-decoration: line-through;
  opacity: 0.6;
}

.cart-upsell-card__price-final {
  font-weight: 600;
}

.cart-upsell-card__add-btn .push-btn__surface {
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  background: #000;
  color: #fff;
  box-shadow: inset 0 0 0 var(--button-border-width) #000;
}

.cart-upsell-card__add-btn.push-btn:hover .push-btn__surface,
.cart-upsell-card__add-btn.push-btn:focus .push-btn__surface,
.cart-upsell-card__add-btn.push-btn:active .push-btn__surface {
  background: #000 !important;
  color: #fff !important;
  box-shadow: inset 0 0 0 var(--button-border-width) #000 !important;
}

.cart-upsell-btn__text--short {
  display: none;
}

.cart-upsell--mobile {
  padding-top: 12px;
  background: #fff;
  display: flex;
  height: fit-content;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
}

.cart-upsell--mobile .cart-upsell__products {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.cart-upsell--mobile .cart-upsell__products::-webkit-scrollbar {
  display: none;
}

.cart-upsell--mobile .cart-upsell-card {
  flex: 0 0 80%;
  scroll-snap-align: start;
}

@media (max-width: 1023px) {
  .cart-drawer__scroll {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
  }
  .cart-drawer__scroll [data-cart-items] {
    overflow: visible;
  }
  .cart-drawer__footer {
    flex: 1;
    background: inherit;
    position: sticky;
    bottom: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .cart-upsell--mobile .cart-upsell__products {
    gap: 10px;
    padding-bottom: 10px;
  }
  .cart-upsell--mobile .cart-upsell-card {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    min-width: 260px;
    max-width: 320px;
  }
  .cart-upsell--mobile .cart-upsell-card__image img {
    width: 72px;
    height: 100%;
    object-fit: cover;
  }
  .cart-upsell--mobile .cart-upsell-card__content {
    gap: 4px;
    height: 100%;
  }
  .cart-upsell--mobile .cart-upsell-card__title {
    font-size: 0.85rem;
  }
  .cart-upsell--mobile .cart-upsell-card__add-btn .push-btn__surface {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }
  .cart-upsell--mobile .cart-upsell-btn__text--full {
    display: none;
  }
  .cart-upsell--mobile .cart-upsell-btn__text--short {
    display: inline;
  }
}
.cart-upsell--desktop {
  display: none;
}

.cart-drawer__title {
  font-family: "Uncut Semibold", sans-serif !important;
  font-weight: 600 !important;
  text-transform: none !important;
  font-size: 20px !important;
}

.free-shipping-progress__track {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 40px;
}

.free-shipping-progress__bar {
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  border: 0;
}

.free-shipping-progress__fill {
  height: 100%;
  border-radius: 999px;
  position: relative;
}

.free-shipping-progress__thumb {
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 25px;
  border-radius: 4px;
  transform: translate(50%, -50%);
  background: inherit;
}

.free-shipping-progress__gift {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.free-shipping-progress__gift-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-loox-review__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 16px;
  background: #111517;
  color: #fff;
}

.cart-loox-review__stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.cart-loox-review__star {
  font-size: 14px;
  line-height: 1;
  color: #f5b301;
}

.cart-loox-review__star--half {
  color: transparent;
  background: linear-gradient(90deg, #f5b301 50%, rgba(255, 255, 255, 0.25) 50%);
  -webkit-background-clip: text;
  background-clip: text;
}

.cart-loox-review__text {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.85rem;
  line-height: 1;
}

.cart-loox-review__score {
  font-weight: 700;
}

.cart-loox-review__label {
  opacity: 0.9;
}

.cart-loox-review__count {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .cart-drawer-open #right-drawer-slot {
    width: 70vw;
    max-width: 1280px;
  }
  .cart-drawer__layout {
    flex-direction: row;
  }
  .cart-upsell--desktop {
    display: flex;
    width: 45%;
    min-width: 350px;
    max-width: 350px;
    padding: 20px;
    background: aliceblue;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    overflow-y: auto;
  }
  .cart-upsell--mobile {
    display: none;
  }
  .cart-upsell-btn__text--full::after {
    content: "→";
    display: inline-block;
    margin-left: 0.35em;
    color: #fff;
  }
}
.cart-rewards {
  --cart-rewards-blue: #71c6ec;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-rewards__message {
  line-height: 1.4;
  font-weight: 600;
}

.cart-rewards__bar-shell {
  position: relative;
}

.cart-rewards__bar-shell--with-midpoint-icon {
  padding-top: 1.25rem;
}

.cart-rewards__bar-row {
  display: flex;
  align-items: center;
  gap: calc(0.75rem + 2px);
}

.cart-rewards__bar-track {
  flex: 1 1 auto;
  position: relative;
  height: 14px;
  overflow: visible;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.cart-rewards__bar-product {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  border-radius: var(--card-border-radius);
  background: rgba(255, 255, 255, 0.92);
}

.cart-rewards__bar-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-rewards__bar-fill {
  position: relative;
  height: 100%;
  max-width: 100%;
  border-radius: 999px;
}

.cart-rewards__bar-thumb {
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(50%, -50%);
  background: inherit;
  box-shadow: 0 0 0 2px #000;
}

.cart-rewards__bar-divider-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 28px;
  transform: translateX(-50%);
  overflow: visible;
}

.cart-rewards__bar-divider-icon {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  display: block;
  width: 28px;
  height: auto;
  z-index: 3;
  transform: translateX(-50%);
}

.cart-rewards__bar-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(17, 24, 39, 0.9);
}

.cart-rewards__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  padding: 0 1rem;
}

.cart-rewards-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: stretch;
  width: min(100%, 320px);
  padding: 0.65rem 0.75rem;
  border: 1px dashed rgba(17, 24, 39, 0.35);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.18);
  text-align: left;
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.cart-rewards-card.is-locked {
  opacity: 1;
}

.cart-rewards-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-height: 60px;
  overflow: hidden;
  border: 2px solid rgba(var(--color-scheme-text), 0.2);
  border-radius: var(--card-border-radius);
  background: rgba(255, 255, 255, 0.92);
}

.cart-rewards-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-rewards-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 0;
  min-width: 0;
}

.cart-rewards-card__title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}

.cart-rewards-card__variant {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(17, 24, 39, 0.58);
}

.cart-rewards-card__price-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.cart-rewards-card__price-compare {
  font-size: 0.82rem;
  color: rgba(17, 24, 39, 0.6);
  text-decoration: line-through;
}

.cart-rewards-card__price-free {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cart-rewards-blue);
}

.cart-line-item__price-final--free {
  color: #71c6ec !important;
}

.cart-line-item__free-label {
  color: #71c6ec !important;
}

.cart-line-item__price-free {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

.cart-rewards-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 90;
  max-width: min(100vw - 2rem, 420px);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #111517;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cart-rewards-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 767px) {
  .cart-rewards__message {
    white-space: normal;
  }
  .cart-rewards-card {
    width: 100%;
    max-width: 100%;
  }
  .cart-rewards-toast {
    bottom: 1rem;
    font-size: 0.82rem;
  }
}
.section-site-header .site-header {
  background: transparent;
  border: none;
  --header-hide-offset: 2rem;
  transition: transform 0.25s ease, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  will-change: transform;
}

.section-site-header .site-header.header-is-hidden {
  transform: translateY(calc(-100% - var(--header-hide-offset)));
}

.section-site-header #headerBorderWrap {
  width: calc(100% - var(--section-x-padding) * 2);
  max-width: var(--max-site-width);
  margin: 2rem auto;
  border: 1px solid black;
  border-bottom-color: black;
  border-radius: 18px;
  background: rgb(var(--color-scheme-background));
  overflow: hidden;
  transition: margin-bottom 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), border-radius 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), border-bottom-color 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s;
}
@media (max-width: 1024px) {
  .section-site-header #headerBorderWrap {
    margin: 1rem auto;
  }
}

@media (max-width: 1024px) {
  .section-site-header .site-header {
    --header-hide-offset: 1rem;
  }
}
@keyframes header-dropdown-content-settle {
  0% {
    transform: translateY(calc(var(--header-dropdown-settle-distance, 4px) * -1));
  }
  62% {
    transform: translateY(var(--header-dropdown-settle-distance, 4px));
  }
  100% {
    transform: translateY(0);
  }
}
.section-site-header #headerContainer {
  border-radius: inherit;
}

.section-site-header .header-mega {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

.section-site-header .header-mega__left,
.section-site-header .header-mega__right {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
}

.section-site-header .header-mega__left {
  background: var(--mega-left-bg);
  padding: 12px;
}

.section-site-header .header-mega__right {
  background: var(--mega-right-bg);
  padding: 16px;
}

.section-site-header .header-mega__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-site-header .header-mega__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  text-align: left;
  transition: background-color 0.2s ease;
}

.section-site-header .header-mega__link.is-active {
  background: var(--mega-active-color);
}

.section-site-header .header-mega__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.section-site-header .header-mega__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  background: #fff;
}

.section-site-header .header-mega__card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.section-site-header .header-mega__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-site-header .header-mega__card-title {
  font-weight: 600;
}

.section-site-header .header-mega__banner,
.section-site-header .header-mega__empty-state {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
}

.section-site-header .header-mega__banner-media {
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.section-site-header .header-mega__banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section-site-header .header-mega__banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}

.section-site-header .header-mega__banner-title,
.section-site-header .header-mega__empty-title {
  font-weight: 600;
}

.section-site-header .header-mega__banner-cta,
.section-site-header .header-mega__empty-cta {
  font-weight: 600;
  white-space: nowrap;
}

.section-site-header .header-mega__empty-state {
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 18px;
}

.sidebar-nav .header-mega__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 10px;
  text-align: center;
  background: #fff;
}

.sidebar-nav .header-mega__card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.sidebar-nav .header-mega__card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sidebar-nav .header-mega__card-title {
  font-weight: 600;
}

.sidebar-nav__mega {
  margin-top: 1rem;
}

.sidebar-nav__main-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  background: var(--mega-left-bg);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
}

.sidebar-nav__main-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  text-align: left;
}

.sidebar-nav__main-link.is-active {
  background: var(--mega-active-color);
}

.sidebar-nav__sub {
  margin-top: 16px;
}

.sidebar-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 12px;
}

.sidebar-nav__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  background: var(--mega-right-bg);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
}

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

.sidebar-nav__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-bottom: 20px;
}

.sidebar-nav__close {
  justify-self: start;
}

.sidebar-nav__logo {
  justify-self: center;
  max-width: 140px;
}

.sidebar-nav__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.sidebar-nav__top-spacer {
  justify-self: end;
  width: 24px;
  height: 24px;
}

.sidebar-nav__bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
}

.sidebar-nav__bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-nav__help-btn .push-btn__surface {
  background: #fea0ff;
  color: #000;
  z-index: 1;
}

.sidebar-nav__help-btn::after {
  z-index: 0 !important;
}

.sidebar-nav__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-search-drawer {
  pointer-events: none;
}

.header-search-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}

.header-search-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(520px, 100%);
  background: #fff;
  color: #000;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  padding: 20px;
  overflow-y: auto;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}

.header-search-drawer__form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.header-search-drawer__content {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
}

.header-search-drawer__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.header-search-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.header-search-drawer__field {
  position: relative;
  border: 2px solid rgba(225, 235, 242, 0.4);
  border-radius: 19px;
}

.header-search-input {
  background: var(--search-input-bg, #f3fbff);
  border-radius: 19px;
  padding: 15px 44px 15px 16px;
  font-size: 0.95rem;
}

.header-search-drawer__submit {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.header-search-drawer__suggestions {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.header-search-drawer__suggestions-title {
  font-weight: 600;
  margin-bottom: 8px;
}

.header-search-drawer__suggestions-list {
  display: grid;
  gap: 8px;
}

.header-search-drawer__suggestion-link {
  display: inline-block;
  padding: 6px 0;
}

.header-search-drawer__image {
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  margin-top: auto;
  width: 100%;
}

.header-search-drawer__image-media {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(420px, 100dvh - 240px);
  height: auto;
  object-fit: contain;
}

.header-search-drawer #predictiveSearchResults {
  position: static;
  height: auto;
}

.header-search-drawer #predictiveSearchResults > div {
  position: static;
  height: auto;
}

.header-search-drawer #predictiveSearchResults .absolute {
  position: static !important;
  height: auto !important;
}

.header-search-drawer #predictiveSearchResults [x-ref=results] {
  max-height: none;
  overflow: visible;
  padding: 0;
}

.section-site-header .header-is-active #headerBorderWrap {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
  transition: margin-bottom 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), border-bottom-color 0.16s linear 0.06s, border-bottom-left-radius 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), border-bottom-right-radius 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.section-site-header .site-header .header-dropdown {
  border: 1px solid black;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  padding-top: 25px;
  padding-bottom: 15px;
  top: calc(100% - 1px);
  box-sizing: border-box;
  transition-duration: 0.45s;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.section-site-header .site-header .header-dropdown--mega {
  left: var(--section-x-padding);
  right: var(--section-x-padding);
  width: auto;
  max-width: calc(100% - var(--section-x-padding) * 2);
}

.section-site-header .site-header .header-dropdown__inner {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .section-site-header .header-is-active #headerBorderWrap {
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .section-site-header .site-header .header-dropdown.header-dropdown--is-open .header-dropdown__inner {
    animation: header-dropdown-content-settle var(--header-dropdown-settle-duration, 560ms) cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
    backface-visibility: hidden;
  }
}
.footer-tagline-card {
  position: relative;
  border: 1px solid currentColor;
  border-radius: 18px;
  padding: 18px;
  overflow: hidden;
}

.footer-tagline-card__content {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.footer-tagline-card--has-image .footer-tagline-card__content {
  padding-bottom: 30px;
}

.footer-tagline-card__image {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 110px;
  max-width: 35%;
  pointer-events: none;
  z-index: 0;
}

.footer-tagline-card__img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .footer-tagline-card {
    padding: 16px;
    border-radius: 16px;
  }
  .footer-tagline-card__image {
    width: 86px;
  }
}
