/* gate:ok */
.product-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 5.8px 20px;
  font-family: inherit;
  color: #111;
  background: rgb(255, 255, 255);
}

/* Mobile */
@media (max-width: 768px) {
  .product-wrapper {
    padding: 5.8px 6px;
  }
}

/* Layout Switching */
.product-desktop { display: none; }
.product-mobile { display: block; }

@media (min-width: 900px) {
  .product-desktop {
    display: flex;
    gap: 5.8px;
    align-items: flex-start;
  }
  .product-mobile { display: none; }
}

/* ================================
   DESKTOP GRID
================================ */

.col-left {
    width: 33.33%;
    position: sticky;
    top: 80px;
    border-radius: 5px;
    height: 87vh;
    overflow: hidden;
}

.col-middle {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  gap: 5.8px;
}

.col-right {
  width: 33.33%;
  position: sticky;
  bottom: 5px;
  align-self: flex-end;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  scrollbar-width: none;
}
.col-right::-webkit-scrollbar { display: none; }

/* ================================
   IMAGE STYLING
================================ */

.img-wrapper {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  display: block;
}

.col-left .img-wrapper { height: 100%; }

/* ================================
   PRODUCT & DETAILS BOX
================================ */

.product-box {
    background: #f7f7f7;
    border-radius: 5px;
    border: 1px solid;
    padding: 14px 16px;
}

.details-box {
  background: #FFF;
  border-radius: 5px;
  border: 1px solid;
  padding: 14px 16px;
}

.details-box { margin-top: 14px; }

/* ================================
   HEADER / TITLE
================================ */

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
  gap: 8px;
}

.product-header-left {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.product-title {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.product-price {
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
  font-weight: 500;
}

/* ================================
   SIZE GUIDE
================================ */

.size-guide-btn {
  background: #EAEAEA;
  border: none;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  color: #333;
  flex-shrink: 0;
  white-space: nowrap;
  align-self: flex-start;
}

/* ================================
   VARIANTS
================================ */

.variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.variant-btn {
  padding: 9px 14px;
  border: 1px solid #EAEAEA;
  background: #FFFFFF;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #111;
  flex: 1 1 calc(25% - 8px);
  text-align: center;
}

.variant-btn:hover { border-color: #111; }

.variant-btn.active {
  background: #111;
  color: #FFF;
  border-color: #111;
}

.variant-btn.sold-out {
  opacity: 0.5;
  text-decoration: line-through;
  cursor: not-allowed;
}

/* ================================
   BUTTONS (INLINE)
================================ */

.actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.btn {
  flex: 1;
  padding: 14px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-secondary {
  background: #FFF;
  color: #111;
  border: 1px solid #EAEAEA;
}

.btn-secondary:hover { border-color: #111; }

.btn-primary {
  background: #111;
  color: #FFF;
  flex: 1.2;
}

.btn-primary:hover { background: #333; }

/* ================================
   TABS
================================ */

.tab-headers {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #EAEAEA;
  margin-bottom: 12px;
}

.tab-header {
  padding: 12px 0;
  font-size: 10px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  position: relative;
}

.tab-header.active { color: #111; }

.tab-header.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #111;
}

.tab-content {
  display: none;
  font-size: 10px;
  line-height: 1.6;
  color: #666;
}

.tab-content.active { display: block; }

.tab-content h4 {
  color: #111;
  margin: 0 0 6px 0;
  font-size: 10px;
}

.tab-content ul {
  margin: 0 0 14px 0;
  padding-left: 18px;
}

/* ================================
   MOBILE IMAGES
================================ */

.mobile-images {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  margin-bottom: 16px;
  scrollbar-width: none;
}
.mobile-images::-webkit-scrollbar { display: none; }

.mobile-img {
  flex: 0 0 85%;
  scroll-snap-align: center;
  overflow: hidden;
}

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

/* ================================
   BOOKMARK
================================ */

.bookmark {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.bookmark svg {
  width: 100%;
  height: 100%;
  color: #111;
  transition: transform 0.2s ease;
}

.bookmark:hover {
  transform: scale(1.15);
}

.bookmark.active path,
.bookmark.is-wishlisted path {
  fill: #111;
  stroke: #111;
}
.bookmark:hover path {
  stroke: #111;
  fill: #111;
}

/* ================================
   SIZE GUIDE MODAL
================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-content {
  background: #FFF;
  border-radius: 16px;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #111;
  line-height: 1;
}

.modal-content img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
}

  /* ═══════════════════════════════════════════════════
     HEADER WRAP
  ═══════════════════════════════════════════════════ */
  .kyx-header-wrap {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 115; /* Above overlay (110) so header always visible over dim */
    pointer-events: none;
  }

  /* Hide header on mobile when story is opened from sticky nav */
  @media (max-width: 767px) {
    .kyx-header-wrap.sa-story-open {
      opacity: 0 !important;
      pointer-events: none !important;
      transition: opacity 0.25s ease;
    }
  }

NEW 
.image-with-text__button--custom:hover { opacity: 0.85; }

/* Mobile */
  @media screen and (max-width: 749px) {
    .image-with-text__layout,
    .image-with-text__layout--left,
    .image-with-text__layout--right {
      flex-direction: column;
    }

    .image-with-text__image-col {
      width: 100% !important;
    }
  }

/* From immersive-scroll.liquid */
/* ================================================================
   IMMERSIVE SCROLL
   ================================================================ */
.is-section-wrapper {
  position: relative;
  background: #000;
}

/* ── Each slide: 100vh panel ── */
.is-section-wrapper .is-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ── Media (image / video) fills entire slide ── */
.is-section-wrapper .is-slide__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.is-section-wrapper .is-slide__media img,
.is-section-wrapper .is-slide__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Per-slide overlay ── */
.is-section-wrapper .is-slide__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 1;
}

/* ── Sticky CTA button ── */
.is-section-wrapper .is-sticky-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  white-space: nowrap;
}

.is-section-wrapper .is-sticky-cta-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  transition: gap 0.2s ease;
}

.is-section-wrapper .is-sticky-cta-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: #fff;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.is-section-wrapper .is-sticky-cta-inner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  opacity: 0.45;
}

.is-section-wrapper .is-sticky-cta:hover .is-sticky-cta-inner { gap: 14px; }

.is-section-wrapper .is-sticky-cta:hover .is-sticky-cta-inner::after  { transform: scaleX(0); transform-origin: right; }

.is-section-wrapper .is-sticky-cta:hover .is-sticky-cta-inner::before { transform: scaleX(1); transform-origin: left; }

.is-section-wrapper .is-sticky-cta:hover svg { transform: translateX(5px); }

.is-section-wrapper .is-sticky-cta svg { transition: transform 0.25s ease; flex-shrink: 0; }

/* ================================================================
   STICKY TEXT BAR — centered, overlays all slides
   ================================================================ */
.is-section-wrapper .is-slides-wrap {
  position: relative;
}

/* is-sticky-wrap: fixed via JS — fades in/out smoothly */
.is-section-wrapper .is-sticky-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.is-section-wrapper .is-sticky-wrap.is-visible {
  opacity: 1;
  visibility: visible;
}

.is-section-wrapper .is-sticky-wrap.is-visible .is-sticky-cta-wrap {
  pointer-events: all;
}

.is-section-wrapper .is-text-bar {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
}

/* Eyebrow above the list */
.is-section-wrapper .is-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-bottom: 14px;
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

/* CTA fade */
.is-section-wrapper .is-sticky-cta-wrap {
  margin-top: 32px;
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}

/* Each label in the stack */
.is-section-wrapper .is-label {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: center;
  color: rgba(255,255,255,0.18);
  transition: color 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s ease;
  will-change: color;
}

.is-section-wrapper .is-label.is-active {
  color: #fff;
}

@media (max-width: 768px) {
  .is-section-wrapper .is-slide__cta { bottom: 32px; }
  .is-section-wrapper .is-label { font-size: clamp(24px, 8vw, 48px); }
}

/* From product.liquid */
{
  --kyx-p-font: inherit;
  --kyx-p-text: #111;
  --kyx-p-bg: rgb(255, 255, 255);
}


/* From related-product.liquid */
/* ================================================================
   RELATED PRODUCTS
   ================================================================ */
.rp-section {
  padding: var(--rp-pt) 0 var(--rp-pb);
  background: var(--rp-bg);
  overflow: hidden;
}

.rp-section .rp-desktop-only { display: none; }

.rp-section .rp-mobile-only  { display: block; }

@media (min-width: 768px) {
  .rp-section .rp-desktop-only { display: block; }
  .rp-section .rp-mobile-only  { display: none; }
}

/* ── DESKTOP GRID ── */
.rp-section .kfc-grid {
  display: grid;
  grid-template-columns: repeat(var(--rp-dcols), 1fr);
  gap: 2.5vw .4vw;
  padding: 0 var(--rp-gutter);
}

/* ── DESKTOP SLIDER ── */
.rp-section .kfc-slider-wrap { overflow: hidden; }

.rp-section .kfc-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(
    (100% - calc(var(--rp-gutter) * 2) - .4vw * calc(var(--rp-dcols) - 1)) / var(--rp-dcols)
  );
  gap: 2.5vw .4vw;
  padding: 0 var(--rp-gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rp-section .kfc-slider::-webkit-scrollbar { display: none; }

.rp-section .kfc-slider .kfc-card { scroll-snap-align: start; }

/* ── MOBILE GRID ── */
.rp-section .kfc-mob-grid {
  display: grid;
  grid-template-columns: repeat(var(--rp-mobcols), 1fr);
  gap: 2.5vw .4vw;
  padding: 0 var(--rp-gutter);
}

/* ── MOBILE SLIDER ── */
.rp-section .kfc-mob-slider-wrap { overflow: hidden; }

.rp-section .kfc-mob-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(
    (100% - calc(var(--rp-gutter) * 2) - .4vw) / var(--rp-mobslider)
  );
  gap: 2.5vw .4vw;
  padding: 0 var(--rp-gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rp-section .kfc-mob-slider::-webkit-scrollbar { display: none; }

.rp-section .kfc-mob-slider .kfc-card { scroll-snap-align: start; }

/* ================================================================
   CARD
   ================================================================ */
.rp-section .kfc-card {
  position: relative;
  display: block;
  overflow: hidden;
}

.rp-section .kfc-card__img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: var(--rp-ratio);
  overflow: hidden;
  /* CHANGED: border-radius 5px */
  border-radius: 5px;
  background: var(--rp-imgbg);
}

/* Card link overlay */
.rp-section .kfc-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

/* Badge */
.rp-section .kfc-badge {
  position: absolute; top: 10px; left: 10px; z-index: 4;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 7px; border-radius: 2px;
  pointer-events: none; background: #111; color: #fff;
}

.rp-section .kfc-badge--sale { background: #c0392b; }

/* Wishlist */
.rp-section .kfc-card__wish {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 4px; transition: transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.rp-section .kfc-card__wish:hover { transform: scale(1.12); }

.rp-section .kfc-card__wish svg { display: block; }

/* CHANGED: default = white filled */
.rp-section .kfc-card__wish svg path {
  fill: #ffffff;
  stroke: rgba(255,255,255,0.5);
  stroke-width: 1.4;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

/* CHANGED: wishlisted = blue filled */
.rp-section .kfc-card__wish.is-wishlisted svg path {
  fill: #2563eb;
  stroke: #2563eb;
}

/* ================================================================
   IMAGE GALLERY — track, arrows, dots
   ================================================================ */
.rp-section .kfc-card__img-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.rp-section .kfc-card__img-track img,
.rp-section .kfc-card__img-track .kfc-img-ph {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  inset: auto;
  display: block;
  /* REMOVED: hover zoom — no transform on hover */
}

/* img_hover_zoom checkbox is kept in schema for backwards compat but zoom is disabled */

@keyframes rp-arr-prev-in {
  from { opacity: 0; transform: translateY(-50%) translateX(-10px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@keyframes rp-arr-next-in {
  from { opacity: 0; transform: translateY(-50%) translateX(10px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.rp-section .kfc-card__arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 31px; height: 31px; border: none; border-radius: 50%;
  background: rgba(220,220,225,0.82);
  backdrop-filter: blur(8px) saturate(1.2); -webkit-backdrop-filter: blur(8px) saturate(1.2);
  box-shadow: 0 1px 6px rgba(0,0,0,0.10); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0; opacity: 0; pointer-events: none;
  transition: background 0.18s; -webkit-tap-highlight-color: transparent;
}

.rp-section .kfc-card__arr svg { display: block; flex-shrink: 0; color: #111; }

.rp-section .kfc-card__arr--prev { left: 10px; }

.rp-section .kfc-card__arr--next { right: 10px; }

.rp-section .kfc-card__arr:hover { background: rgba(200,200,205,0.95); }

@media (min-width: 768px) {
  .rp-section .kfc-card:hover .kfc-card__arr--prev {
    opacity: 1; pointer-events: auto;
    animation: rp-arr-prev-in 0.28s cubic-bezier(0.25,0.46,0.45,0.94) both;
  }
  .rp-section .kfc-card:hover .kfc-card__arr--next {
    opacity: 1; pointer-events: auto;
    animation: rp-arr-next-in 0.28s cubic-bezier(0.25,0.46,0.45,0.94) both;
  }
}

@media (max-width: 767px) {
  .rp-section .kfc-card__arr { display: none !important; }
}

.rp-section .kfc-card__dots {
  position: absolute; bottom: 10px; left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  gap: 5px; pointer-events: none;
}

.rp-section .kfc-card__dot {
  width: 2.4px; height: 2.4px; border-radius: 50%; background: #fff;
  flex-shrink: 0; transition: width 0.25s ease, height 0.25s ease;
}

.rp-section .kfc-card__dot.is-active { width: 4.8px; height: 4.8px; }

.rp-section .kfc-card__dot.is-near1  { width: 3.6px; height: 3.6px; }

.rp-section .kfc-card__dot.is-near2  { width: 3px;   height: 3px; }

/* ================================================================
   CARD INFO
   ================================================================ */
.rp-section .kfc-card__info {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 10px 8px 4px;
}

.rp-section .kfc-card__text {
  flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px;
}

.rp-section .kfc-card__name {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--rp-txt); margin: 0; line-height: 1.25;
  letter-spacing: 0.01em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-decoration: none; transition: opacity 0.18s;
}

.rp-section .kfc-card__name:hover { opacity: 0.6; }

.rp-section .kfc-card__price {
  font-size: 12px; font-weight: 400; color: var(--rp-txt);
  opacity: 0.65; line-height: 1.2; white-space: nowrap;
}

.rp-section .kfc-card__price s { opacity: 0.4; margin-right: 3px; font-size: 10px; }

.rp-section .kfc-card__qa {
  flex-shrink: 0; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; padding: 4px;
  color: var(--rp-txt);
  transition: opacity 0.18s, transform 0.15s;
  -webkit-tap-highlight-color: transparent; position: relative; z-index: 4;
}

.rp-section .kfc-card__qa:hover { opacity: 0.5; transform: scale(1.15); }

.rp-section .kfc-card__qa svg { display: block; }

/* ── Skeleton ── */
.rp-section .kfc-skeleton .kfc-card__img-wrap {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: rp-shimmer 1.4s infinite linear;
}

.rp-section .kfc-skeleton .kfc-card__name,
.rp-section .kfc-skeleton .kfc-card__price {
  background: #f0f0f0; border-radius: 3px; color: transparent;
  background-size: 200% 100%; animation: rp-shimmer 1.4s infinite linear;
}

@keyframes rp-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Wrapper ── */
.rp-section .rp-inner-wrap {
  max-width: 1600px; margin: 0 auto; padding: 0 20px;
}

@media (max-width: 768px) {
  .rp-section .rp-inner-wrap { padding: 0 6px; }
}

.rp-section .rp-heading {
  font-size: 13px; font-weight: 700; letter-spacing: 0.01em;
  color: var(--rp-txt); margin: 0 0 16px 0; text-transform: uppercase;
}

/* From rich-text.liquid */
.rich-text-section {
    width: 100%;
    padding-top: var(--rt-padding-top);
    padding-bottom: var(--rt-padding-bottom);
    background-color: var(--rt-bg);
  }

.rich-text-section__inner {
    max-width: var(--rt-content-width);
    margin: 0 auto;
    padding: 0 20px;
  }

.rich-text-section__content {
    display: flex;
    flex-direction: column;
  }

.rich-text-section__content--left   { align-items: flex-start; text-align: left; }

.rich-text-section__content--center { align-items: center;     text-align: center; }

.rich-text-section__content--right  { align-items: flex-end;   text-align: right; }

.rich-text-section__heading {
    font-size: var(--rt-h-sz);
    color: var(--rt-h-col);
    font-weight: var(--rt-h-wt);
    margin-top: var(--rt-h-mt);
    margin-bottom: var(--rt-h-mb);
    line-height: 1.2;
  }

.rich-text-section__text {
    font-size: var(--rt-t-sz);
    color: var(--rt-t-col);
    line-height: 1.7;
    max-width: var(--rt-t-mw);
    margin-top: var(--rt-t-mt);
    margin-bottom: var(--rt-t-mb);
    margin-left: var(--rt-t-ml, 0);
    margin-right: var(--rt-t-mr, 0);
  }

.rich-text-section__button-wrapper {
    margin-top: var(--rt-b-mt);
    margin-bottom: var(--rt-b-mb);
  }

.rich-text-section__button {
    display: inline-block;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    font-size: var(--rt-b-sz);
    padding: var(--rt-b-pv) var(--rt-b-ph);
    border-radius: var(--rt-b-rad);
  }

.rich-text-section__button--primary       { background: #000; color: #fff; border-color: #000; }

.rich-text-section__button--primary:hover { background: #333; border-color: #333; }

.rich-text-section__button--secondary       { background: transparent; color: #000; border-color: #000; }

.rich-text-section__button--secondary:hover { background: #000; color: #fff; }

.rich-text-section__button--outline-white       { background: transparent; color: #fff; border-color: #fff; }

.rich-text-section__button--outline-white:hover { background: #fff; color: #000; }

.rich-text-section__button--link { background: transparent; color: inherit; border-color: transparent; padding-left: 0 !important; padding-right: 0 !important; text-decoration: underline; }

.rich-text-section__button--link:hover { opacity: 0.7; }

.rich-text-section__button--custom {
    background-color: var(--rt-b-bg);
    color: var(--rt-b-color);
    border-color: var(--rt-b-border);
  }

.rich-text-section__button--custom:hover { opacity: 0.85; }

/* From slideshow.liquid */
.slideshow-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: var(--slide-h-desk);
  touch-action: pan-y;
}

@media (max-width: 767px) {
  .slideshow-section { 
    height: var(--slide-h-mob);
  }
}

/* ── Transparent header: pull section up behind the fixed header ─────────
   The header sets  body { padding-top: var(--kyx-header-height) }

We cancel that padding with an equal negative margin-top, and add the
   same amount to the height so the slide still fills the intended vh.    */
.slideshow-section.kyx-has-transparent-header {
  margin-top: calc(-1 * var(--kyx-header-height, 72px));
  height: calc(var(--slide-h-desk) + var(--kyx-header-height, 72px));
}

@media (max-width: 767px) {
  .slideshow-section.kyx-has-transparent-header {
    margin-top: calc(-1 * var(--kyx-header-height, 72px));
    height: calc(var(--slide-h-mob) + var(--kyx-header-height, 72px));
  }
}

.slideshow-slide,
.slideshow-slide-inner {
  touch-action: pan-y;
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.slideshow-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slideshow-slide a,
.slideshow-slide-inner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.slideshow-slide img,
.slideshow-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-slide .mobile-media { display: none; }

@media (max-width: 767px) {
  .slideshow-slide .desktop-media { display: none; }
  .slideshow-slide .mobile-media { display: block; }
}

.slideshow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.14) 50%,
    rgba(0,0,0,0) 100%
  );
}

.slideshow-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 60px;
  text-align: center;
  z-index: 2;
}

.slideshow-heading {
  color: white;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  margin: 0 0 6px;
}

@media (min-width: 768px) {
  .slideshow-heading { font-size: 18px; }
}

.slideshow-subheading {
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  margin: 0;
}

@media (min-width: 768px) {
  .slideshow-subheading { font-size: 13px; }
}

/* Dots */
.slideshow-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slideshow-dot {
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  width: 8px;
  height: 8px;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.slideshow-dot.is-active {
  background: white;
  width: 24px;
}

/* From stack-cards.liquid */
.kyx-stack-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--stack-bg);
    padding-top: var(--stack-pt);
    padding-bottom: var(--stack-pb);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

/* Swiper Container styling */
  .swiper.kyx-stack-swiper {
    width: 100%;
    max-width: 1300px;
    height: var(--stack-h-desk);
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: visible;
  }

/* Slide styling */
  .swiper-slide.kyx-stack-slide {
    width: var(--stack-w-desk);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #e5e7eb;
    box-shadow: 0px 14px 40px rgba(0, 0, 0, 0.15);
  }

.kyx-stack-card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
  }

.kyx-stack-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

.swiper-slide-active .kyx-stack-card-image {
    transform: scale(1.02);
  }

.kyx-stack-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 40%);
    pointer-events: none;
    opacity: 0.8;
  }

.kyx-stack-card-content {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 1rem;
  }

.kyx-stack-card-title {
    color: #fff;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

@media (max-width: 768px) {
    .swiper.kyx-stack-swiper {
      height: var(--stack-h-mob);
    }
    .swiper-slide.kyx-stack-slide {
      width: clamp(260px, 70vw, 360px);
    }
  }

/* From sticky-app-navigation.liquid */
{
  --sa-bg: rgba(255, 255, 255, 0.7);
  --sa-border: rgba(255, 255, 255, 0.2);
  --sa-shadow: 0 8px 30px rgba(0,0,0,0.12);
  --sa-story-shadow: 0 8px 30px rgba(0,0,0,0.2);
  font-family: inherit;
}

/* Nav Bar */
.sa-bottom-nav {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  z-index: 50;
  padding: 0 16px;
  pointer-events: none;
}

@media (min-width: 768px) {
  .sa-bottom-nav {
    display: none;
  }
}

.sa-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sa-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--sa-border);
  box-shadow: var(--sa-shadow);
  border-radius: 9999px;
  padding: 10px 20px;
  width: 100%;
  max-width: 220px;
  pointer-events: auto;
  transition: transform 0.2s;
}

.sa-pill:hover {
  transform: scale(1.02);
}

.sa-icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: rgba(0,0,0,0.8);
  transition: all 0.2s;
  display: flex;
}

.sa-icon-btn:hover {
  color: #000;
  transform: scale(1.1);
}

.sa-icon-btn:active {
  transform: scale(0.95);
}

/* Story Button */
.sa-story-btn {
  position: relative;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 3px;
  pointer-events: auto;
  box-shadow: var(--sa-story-shadow);
  border: none;
  cursor: pointer;
  overflow: hidden;
}

.sa-story-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    #1d4ed8 0%,
    #2563eb 25%,
    #3b82f6 45%,
    #93c5fd 60%,
    #2563eb 80%,
    #1d4ed8 100%
  );
  animation: sa-ring-spin 3s linear infinite;
}

/* Inner white circle mask */
.sa-story-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

/* Smooth rotation */
@keyframes sa-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hover micro interaction */
.sa-story-btn:hover {
  transform: scale(1.08);
}

.sa-story-btn:active {
  transform: scale(0.95);
}

.sa-story-btn:hover {
  transform: scale(1.05);
}

.sa-story-btn:active {
  transform: scale(0.95);
}

.sa-story-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2.5px solid #fff;
  position: relative;
}

.sa-story-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.6);
}

/* Overlays shared */
.sa-overlay {
  position: fixed;
  inset: 0;
  z-index: 170; /* Above header (115) and all drawers */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sa-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Story Viewer */
.sa-story-overlay {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-story-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: #18181b;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(50px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.sa-overlay.is-active .sa-story-container {
  transform: scale(1) translateY(0);
}

@media (min-width: 768px) {
  .sa-story-container {
    height: 85vh;
    max-width: 420px;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  }
}

.sa-story-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: none;
}

.sa-story-media.is-active {
  display: block;
}

.sa-story-media img, .sa-story-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  animation: sa-zoom-in 6s linear forwards;
}

.sa-story-media video {
  animation: none;
}

@keyframes sa-zoom-in {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.sa-story-grad-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 128px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
  z-index: 1;
}

.sa-story-grad-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 192px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  pointer-events: none;
  z-index: 1;
}

.sa-story-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  pointer-events: none;
  z-index: 2;
}

.sa-story-progress-container {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  padding-top: 8px;
}

.sa-story-progress-bar {
  height: 3px;
  flex: 1;
  background: rgba(255,255,255,0.3);
  border-radius: 9999px;
  overflow: hidden;
}

.sa-story-progress-fill {
  height: 100%;
  background: #fff;
  width: 0%;
  transform-origin: left;
}

.sa-story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 0 8px;
}

.sa-story-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.025em;
}

.sa-story-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: auto;
}

.sa-story-btn-icon {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  display: flex;
  transition: opacity 0.2s;
}

.sa-story-btn-icon:hover { opacity: 0.7; }

.sa-story-explore {
  margin-top: auto;
  padding-bottom: 32px;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.sa-story-explore-btn {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.sa-story-explore-btn:hover { opacity: 0.8; }

.sa-story-explore-icon {
  transform: rotate(90deg);
  margin-bottom: -8px;
  animation: sa-bounce 1.5s infinite;
}

@keyframes sa-bounce {
  0%, 100% { transform: rotate(90deg) translateX(0); }
  50% { transform: rotate(90deg) translateX(-5px); }
}

/* Desktop Navigation Arrows */
.sa-nav-arrow {
  display: none;
  position: absolute;
  z-index: 60;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  border: none;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.sa-nav-arrow:hover { background: rgba(255,255,255,0.4); }

.sa-nav-left { left: 32px; }

.sa-nav-right { right: 32px; }

@media (min-width: 768px) {
  .sa-nav-arrow { display: flex; }
}

/* Hide body scroll when overlay active */
body.sa-no-scroll {
  overflow: hidden;
}

/* From wishlist.liquid */
{
    --wl-bg: #f9fafb;
    --wl-text-primary: #111827;
    --wl-text-sec: #6b7280;
    --wl-btn-hover: #374151;
  }

.wishlist-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
    min-height: 70vh;
    font-family: sans-serif;
  }

.wishlist-header {
    text-align: center;
    margin-bottom: 3rem;
  }

.wishlist-title {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: -0.025em;
    color: var(--wl-text-primary);
    margin: 0 0 0.5rem 0;
  }

.wishlist-subtitle {
    color: var(--wl-text-sec);
    font-size: 1rem;
    margin: 0;
  }

.wishlist-empty {
    text-align: center;
    padding: 4rem 1rem;
    background: var(--wl-bg);
    border-radius: 1rem;
    display: none;
  }

.wishlist-empty.show {
    display: block;
  }

.wishlist-empty h3 {
    font-size: 1.25rem;
    color: var(--wl-text-primary);
    margin: 0 0 1rem 0;
  }

.wishlist-empty a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--wl-text-primary);
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: background 0.2s;
  }

.wishlist-empty a:hover {
    background: var(--wl-btn-hover);
  }

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

.wl-product-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

.wl-product-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background-color: #e5e7eb;
  }

.wl-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease-out;
  }

.wl-product-card:hover .wl-product-image {
    transform: scale(1.05);
  }

.wl-remove-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--wl-text-primary);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
  }

.wl-remove-btn:hover {
    transform: scale(1.1);
  }

.wl-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 0.25rem;
  }

.wl-product-title {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.25;
    color: var(--wl-text-primary);
    margin: 0;
  }

.wl-product-price {
    color: var(--wl-text-sec);
    font-size: 0.75rem;
    margin: 0;
  }

.wl-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
  }

.wl-loader svg {
    animation: wl-spin 1s linear infinite;
    color: var(--wl-text-primary);
  }

@keyframes wl-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
