/** Shopify CDN: Minification failed

Line 834:5 Unexpected "{"
Line 834:14 Expected ":"
Line 834:63 Expected identifier but found whitespace

**/
/* ==========================================================================
   AISEN STUDIO — CONSOLIDATED CUSTOM CSS
   Load once in layout/theme.liquid via:
   {{ 'aisen-custom.css' | asset_url | stylesheet_tag }}

   /* ==========================================================================
   AISEN GLOBAL SECTION HEADERS
   ========================================================================== */

.as-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  padding: 0 20px;
}

.as-title {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a1714;
}

.as-sub {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: #7E5A7A;
}

@media (min-width: 768px) {

  .as-title {
    font-size: 36px;
  }

  .as-sub {
    font-size: 16px;
  }

}

/* ==========================================================================
   1. SLIDESHOW STORY PRO — STATIC CSS
   Dynamic properties (bg, heights, radius, shadows, arrow offset)
   are handled by the inline <style> block in the section file.
   ========================================================================== */

.ssp-wrapper {
  overflow-x: clip;
  max-width: 100vw;
  position: relative;
  z-index: 0;
}
.ssp-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  box-sizing: content-box;
}

.ssp-card {
  position: absolute;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  will-change: transform, opacity;
  transition:
    width      0.58s cubic-bezier(0.22, 1, 0.36, 1),
    height     0.58s cubic-bezier(0.22, 1, 0.36, 1),
    left       0.58s cubic-bezier(0.22, 1, 0.36, 1),
    top        0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform  0.58s cubic-bezier(0.22, 1, 0.36, 1),
    opacity    0.45s ease,
    box-shadow 0.45s ease;
}
.ssp-card.is-active { z-index: 5 !important; }

.ssp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.15s ease;
  pointer-events: none;
  z-index: 10;
}
.ssp-card.tap-effect::after { background: rgba(0,0,0,0.12); }

.ssp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.ssp-content {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 28px 24px;
  pointer-events: none;
  z-index: 3;
}
.ssp-card .ssp-content {
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.ssp-card:not(.is-active) .ssp-content { opacity: 0; }

.ssp-inner { pointer-events: auto; max-width: 480px; }
.ssp-inner h1,
.ssp-inner h2 { margin: 0 0 calc(var(--ssp-sp, 10px) * 0.5); }
.ssp-inner p  { margin: 0 0 calc(var(--ssp-sp, 10px) * 0.8); }

/* Content entrance transitions */
.ssp-card[data-trans-desktop="slide-left"]:not(.is-active)  .ssp-content { transform: translateX(32px);  opacity: 0; }
.ssp-card[data-trans-desktop="slide-left"].is-active         .ssp-content { transform: translateX(0);     opacity: 1; }
.ssp-card[data-trans-desktop="slide-right"]:not(.is-active) .ssp-content { transform: translateX(-32px); opacity: 0; }
.ssp-card[data-trans-desktop="slide-right"].is-active        .ssp-content { transform: translateX(0);     opacity: 1; }
.ssp-card[data-trans-desktop="slide-up"]:not(.is-active)    .ssp-content { transform: translateY(28px);  opacity: 0; }
.ssp-card[data-trans-desktop="slide-up"].is-active           .ssp-content { transform: translateY(0);     opacity: 1; }
.ssp-card[data-trans-desktop="zoom-in"]:not(.is-active)     .ssp-content { transform: scale(0.92);       opacity: 0; }
.ssp-card[data-trans-desktop="zoom-in"].is-active            .ssp-content { transform: scale(1);          opacity: 1; }
.ssp-card[data-trans-desktop="zoom-out"]:not(.is-active)    .ssp-content { transform: scale(1.08);       opacity: 0; }
.ssp-card[data-trans-desktop="zoom-out"].is-active           .ssp-content { transform: scale(1);          opacity: 1; }

/* CTA button */
.ssp-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  margin-top: calc(var(--ssp-sp, 10px) * 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ssp-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.ssp-btn.white { background: #fff; color: #000; }
.ssp-btn.black { background: #000; color: #fff; }

/* Arrows — transform stays inline due to dynamic offset setting */
.ssp-arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  font-size: 18px;
  user-select: none;
  transition: background 0.2s;
}
.ssp-arrow:hover { background: #fff; }
.ssp-arrow-left  { left: 16px; }
.ssp-arrow-right { right: 16px; }

/* Dots */
.ssp-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 16px;
}
.ssp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.ssp-dot.is-active {
  background: rgba(0,0,0,0.65);
  width: 22px;
  border-radius: 4px;
}

/* Mobile story progress bars */
.ssp-progress {
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  display: none;
  gap: 5px;
  z-index: 20;
  pointer-events: none;
}
.ssp-prog-bar {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  overflow: hidden;
}
.ssp-prog-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 2px;
  will-change: width;
}
.ssp-prog-bar.done .ssp-prog-fill { width: 100%; }

/* Mobile overrides */
@media (max-width: 599px) {
  .ssp-card {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    opacity: 0 !important;
    transform: none !important;
    transition: opacity 0.45s ease, transform 0.48s cubic-bezier(0.22,1,0.36,1) !important;
    pointer-events: none !important;
    box-shadow: none !important;
  }
  .ssp-card[data-trans-mobile="slide-left"]  { transform: translateX(-100%) !important; opacity: 1 !important; transition: opacity 0.1s ease, transform 0.48s cubic-bezier(0.22,1,0.36,1) !important; }
  .ssp-card[data-trans-mobile="slide-right"] { transform: translateX(100%)  !important; opacity: 1 !important; transition: opacity 0.1s ease, transform 0.48s cubic-bezier(0.22,1,0.36,1) !important; }
  .ssp-card[data-trans-mobile="slide-up"]    { transform: translateY(60px)  !important; }
  .ssp-card[data-trans-mobile="slide-down"]  { transform: translateY(-60px) !important; }
  .ssp-card[data-trans-mobile="zoom-in"]     { transform: scale(0.88)       !important; }
  .ssp-card[data-trans-mobile="slide-left"].is-active,
  .ssp-card[data-trans-mobile="slide-right"].is-active { transform: translateX(0)     !important; }
  .ssp-card[data-trans-mobile="slide-left"].ssp-exit   { transform: translateX(100%)  !important; }
  .ssp-card[data-trans-mobile="slide-right"].ssp-exit  { transform: translateX(-100%) !important; }
  .ssp-card[data-trans-mobile="slide-up"].is-active,
  .ssp-card[data-trans-mobile="slide-down"].is-active  { transform: translateY(0) !important; opacity: 1 !important; }
  .ssp-card[data-trans-mobile="zoom-in"].is-active     { transform: scale(1)      !important; opacity: 1 !important; }
  .ssp-card.is-active { opacity: 1 !important; pointer-events: auto !important; z-index: 4 !important; }
  .ssp-card .ssp-content { opacity: 1 !important; transform: none !important; }
  .ssp-content  { padding: 36px 16px 20px; }
  .ssp-arrow    { display: none; }
  .ssp-progress { display: flex; }
  .ssp-dots     { display: none; }
}

@media (prefers-reduced-motion: reduce) {

  .ssp-card,
  .ssp-content,
  .ssp-prog-fill {
    transition: none !important;
  }

}

/* ==========================================================================
   2. TRUST STRIP
   ========================================================================== */

.ts-section { background: var(--ts-bg); }
.ts-section.ts-bordered {
  border-top: 1px solid var(--ts-border);
  border-bottom: 1px solid var(--ts-border);
}
.ts-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: var(--ts-padding-v, 36px) 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Headline */
.ts-headline { font-family: var(--ts-font-headline, inherit); font-size: var(--ts-headline-size, 22px); color: var(--ts-text); line-height: 1.4; }
.ts-headline strong { color: var(--ts-accent); font-size: var(--ts-counter-size, 28px); font-weight: inherit; }
.ts-counter-wrap { display: inline; }
.ts-counter { display: inline; color: var(--ts-accent); font-size: var(--ts-counter-size, 28px); font-weight: inherit; font-variant-numeric: tabular-nums; }

/* Handles — always row on all screen sizes */
.ts-handles { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.ts-ig-divider { width: 1px; height: 32px; background: var(--ts-border); opacity: 0.5; flex-shrink: 0; }
.ts-ig { display: flex; align-items: center; gap: 10px; text-decoration: none; transition: opacity 0.2s ease; }
.ts-ig:hover { opacity: 0.75; }
.ts-ig-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--ts-icon-bg, #fff); border: 1px solid var(--ts-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.ts-ig-icon svg { width: 15px; height: 15px; color: var(--ts-accent); }
.ts-ig-handle { display: block; font-size: 13px; font-weight: 500; color: var(--ts-text); letter-spacing: 0.02em; }
.ts-ig-count { display: block; font-size: 12px; color: var(--ts-accent); margin-top: 1px; }

/* Option A — Inline row */
.ts-stat-row { display: flex; align-items: center; justify-content: center; }
.ts-stat-cell { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 28px; }
.ts-stat-vline { width: 1px; height: 32px; background: var(--ts-border); opacity: 0.5; flex-shrink: 0; }
.ts-stat-num { font-size: 18px; font-weight: 500; color: var(--ts-text); line-height: 1; }
.ts-stat-num em { font-size: 12px; color: var(--ts-accent); font-style: normal; }
.ts-stat-lbl { font-size: 11px; color: var(--ts-muted); }

/* Option C — Single sentence */
.ts-stat-sentence { font-size: 13px; color: var(--ts-muted); line-height: 1.8; margin: 0; }
.ts-stat-sentence strong { color: var(--ts-text); font-weight: 500; }
.ts-stat-phrase { white-space: nowrap; }
.ts-dot { color: var(--ts-accent); opacity: 0.5; margin: 0 6px; }

/* Mobile */
@media (max-width: 767px) {
  .ts-body { padding: var(--ts-padding-v, 36px) 20px; gap: 20px; }

  /* Handles stay row — only reduce gap slightly */
  .ts-handles { gap: 10px; }

  /* Hide both dividers on mobile */
  .ts-ig-divider { display: none; }

  /* Sentence: each phrase on its own line, dots hidden */
  .ts-stat-sentence { text-align: center; }
  .ts-stat-phrase { display: block; white-space: normal; line-height: 1.6; }
  .ts-dot { display: none; }

  /* Row: tighten padding */
  .ts-stat-cell { padding: 0 14px; }
  .ts-stat-num { font-size: 16px; }

  .ts-counter-wrap { display: block; }
  .ts-counter { font-size: var(--ts-counter-size, 28px); }
}

/* ==========================================================================
   3. FEATURED VIDEO — STATIC CSS
   Dynamic values are CSS custom properties set inline on #fv-{id}.
   ZIGZAG FLIPPED: content left on card 1, image left on card 2.
   Both product images now face each other in the centre.   Description clamped to 2 lines instead of 3.
   ========================================================================== */

[id^="fv-"] { -webkit-font-smoothing: antialiased; }

/* Grid */
.fv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fv-gap, 32px);
  padding: var(--fv-padding, 0 40px);
  max-width: 1160px;
  margin: 0 auto;
}

/* Card — default: content left, image right */
.fv-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--fv-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
/* Body goes first (left), vid-wrap goes second (right) */
.fv-card .fv-body    { order: 1; }
.fv-card .fv-vid-wrap { order: 2; }

/* Even card: image left, content right — images face each other in centre */
.fv-card:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}
.fv-card:nth-child(even) .fv-vid-wrap { order: 1; }
.fv-card:nth-child(even) .fv-body    { order: 2; }

/* Desktop inner border where the two content panels are now on the outside */
@media (min-width: 768px) {
  .fv-card:first-child       .fv-body { border-right: 1px solid #ede9e4; }
  .fv-card:nth-child(even)   .fv-body { border-left: 1px solid #ede9e4; }
}

/* Video wrapper */
.fv-vid-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #1a1a18;
  overflow: hidden;
}
.fv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fv-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.fv-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0,0,0,0.12);
  transition: opacity 0.3s ease;
}
.fv-play.is-hidden { opacity: 0; pointer-events: none; }
.fv-play-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.fv-play-circle svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin-left: 3px;
}

/* Card body */
.fv-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

/* Typography */
.fv-brand {
  font-family: var(--fv-font-body, inherit);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fv-accent);
}
.fv-name {
  font-family: var(--fv-font-head, inherit);
  font-size: var(--fv-name-size, 15px);
  color: var(--fv-text);
  line-height: 1.3;
  text-decoration: none;
  display: block;
}
.fv-name:hover { color: var(--fv-accent); }
.fv-price {
  font-family: var(--fv-font-body, inherit);
  font-size: 14px;
  font-weight: 400;
  color: var(--fv-text);
}
.fv-desc {
  font-family: var(--fv-font-body, inherit);
  font-size: 12px;
  font-weight: 300;
  color: var(--fv-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 2px;
}
.fv-btn {
  display: inline-block;
  font-family: var(--fv-font-body, inherit);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .04em;
  text-decoration: none;
  text-align: center;
  padding: 11px 28px;
  margin-top: 12px;
  align-self: flex-start;
  background: var(--fv-btn-bg);
  color: var(--fv-btn-color);
  border: 1px solid var(--fv-btn-bg);
  border-radius: 40px;
  transition: background 0.2s ease, color 0.2s ease;
}
.fv-btn:hover {
  background: transparent;
  color: var(--fv-btn-bg);
}

/* Mobile */
@media (max-width: 767px) {
  .fv-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 16px;
    max-width: 100%;
  }
  .fv-card             { grid-template-columns: 1fr 1.3fr; }
  .fv-card:nth-child(even) { grid-template-columns: 1.3fr 1fr; }
  .fv-vid-wrap         { min-height: 200px; }
  .fv-body             { padding: 16px 14px; gap: 5px; }
  .fv-desc             { display: none; }
  .fv-brand            { font-size: 8px; }
  .fv-name             { font-size: 13px; }
  .fv-price            { font-size: 13px; }
  .fv-btn              { font-size: 11px; padding: 9px 14px; margin-top: 6px; }
}

/* ==========================================================================
   4. REEL GRID — VIDEO GALLERY
   Dynamic values as CSS custom properties on #vg-{id}.
   ========================================================================== */

.vg-container {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 40px;
}
.vg-grid {
  display: grid;
  grid-template-columns: repeat(var(--vg-cols-desktop, 4), 1fr);
  gap: var(--vg-gap, 12px);
}
.vg-item {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--vg-radius, 8px);
  overflow: hidden;
  background: #f4f4f4;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.vg-item:hover { transform: scale(1.02); }
.vg-thumb,
.vg-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--vg-radius, 8px);
}
.vg-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.2s ease;
}
.vg-item:hover .vg-play-btn { background: rgba(0,0,0,0.85); }
.vg-play-btn svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }
.vg-empty { text-align: center; padding: 60px 20px; color: #888; font-size: 15px; }

/* Modal */
.vg-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.vg-modal.vg-modal--open { opacity: 1; visibility: visible; }
.vg-modal-inner {
  position: relative;
  width: 90%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vg-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  opacity: 0.8;
}
.vg-close:hover { opacity: 1; }
.vg-modal-video-wrap {
  width: 100%;
  aspect-ratio: 9/16;
}
.vg-modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.vg-modal-btn {
  margin-top: 16px;
  padding: 11px 24px;
  background: var(--vg-btn-bg, #1a1a18);
  color: var(--vg-btn-color, #fff);
  border-radius: var(--vg-btn-radius, 20px);
  font-size: var(--vg-btn-font-size, 13px);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.vg-modal-btn:hover {
  background: var(--vg-btn-hover-bg, #333);
  color: var(--vg-btn-hover-color, #fff);
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
  .vg-container { padding: 0 16px; margin: 20px 0; }
  .vg-grid { grid-template-columns: repeat(var(--vg-cols-mobile, 2), 1fr); gap: var(--vg-gap-mobile, 8px); }
  .vg-modal-inner { max-width: 320px; }
}

/* ==========================================================================
   5. FIND YOUR STYLE (Quick Shop)
   Only .aqs-title font sizes stay inline (heading_size_mobile/desktop settings).
   All other CSS is static and lives here.
   ========================================================================== */

.aqs *, .aqs *::before, .aqs *::after { box-sizing: border-box; }
.aqs {
  --w: #ffffff; --off: #f8f7f5; --ink: #111110; --mid: #9a9894; --faint: #e8e6e2;
  background: var(--w);
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index: 0;
}
.aqs-block { border-top: 1px solid var(--faint); padding-bottom: 40px; }
.aqs-block:last-child { border-bottom: 1px solid var(--faint); }
.aqs-block-top { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 28px 24px 22px; }
.aqs-num   { font-size: 9px; letter-spacing: 3px; color: var(--mid); }
.aqs-label { font-size: 18px; font-weight: 400; color: var(--ink); }

/* Ruler */
.aqs-ruler { display: flex; flex-direction: column; }
.aqs-ruler-numstrip {
  display: flex; align-items: flex-end; justify-content: space-around;
  height: 24px; background: #f0efed;
  border-top: 1px solid var(--faint); border-bottom: 1px solid var(--faint);
  padding: 0 8px 3px; position: relative; overflow: hidden;
}
.aqs-ruler-numstrip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 9px;
  background-image:
    repeating-linear-gradient(90deg, rgba(17,17,16,.18) 0, rgba(17,17,16,.18) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg, rgba(17,17,16,.07) 0, rgba(17,17,16,.07) 1px, transparent 1px, transparent 7px);
}
.aqs-ruler-numstrip span { font-size: 7px; color: #c0beba; font-variant-numeric: tabular-nums; position: relative; z-index: 1; }
.aqs-ruler-tape { position: relative; height: 84px; background: #ffffff; overflow: hidden; }
.aqs-sizes {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: space-around;
  padding: 0 max(16px, calc((100% - 640px) / 2 + 16px));
  z-index: 3;
}
.aqs-size {
  font-size: 14px; font-weight: 400; letter-spacing: -0.3px;
  color: rgba(17,17,16,.72); text-decoration: none;
  padding: 14px 8px; cursor: pointer; transition: color .18s;
  white-space: nowrap; -webkit-tap-highlight-color: transparent;
  position: relative; z-index: 3;
}
.aqs-size:hover { color: #111110; }
.aqs-bubble {
  position: absolute; top: 50%; left: -999px;
  transform: translate(-50%, -50%);
  transition: left 0s, opacity .2s ease;
  pointer-events: none; z-index: 10;
  width: 52px; height: 52px; opacity: 0;
}
.aqs-bubble-ring {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(17,17,16,.07);
  animation: aqs-ring 3s ease-in-out infinite;
}
@keyframes aqs-ring {
  0%,100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.1); opacity: 0; }
}
.aqs-bubble-face {
  position: absolute; inset: 0; border-radius: 50%;
  background: #fff; border: 1px solid rgba(17,17,16,.14);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.aqs-bubble-txt { font-size: 12px; letter-spacing: 2px; color: var(--ink); text-transform: uppercase; }
.aqs-ruler-foot {
  display: flex; align-items: flex-start; justify-content: space-around;
  height: 24px; background: #ebebea;
  border-top: 1px solid var(--faint);
  padding: 3px 8px 0; position: relative; overflow: hidden;
}
.aqs-ruler-foot::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 9px;
  background-image:
    repeating-linear-gradient(90deg, rgba(17,17,16,.18) 0, rgba(17,17,16,.18) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg, rgba(17,17,16,.07) 0, rgba(17,17,16,.07) 1px, transparent 1px, transparent 7px);
}
.aqs-ruler-foot span { font-size: 7px; color: #c0beba; font-variant-numeric: tabular-nums; position: relative; z-index: 1; }

/* Colour swatches */
.aqs-fab-wrap { max-width: 640px; margin: 0 auto; padding: 0 16px; display: flex; flex-direction: column; gap: 4px; }
.aqs-fab-row { display: flex; gap: 4px; overflow: hidden; }
.aqs-fab-row[data-row="neutral"]  { height: 62px; }
.aqs-fab-row[data-row="contrast"] { height: 72px; }
.aqs-fab-swatch {
  flex: 1 1 0; min-width: 0; height: 100%; border-radius: 8px; overflow: hidden;
  position: relative; cursor: pointer; text-decoration: none; display: block;
  transition: flex-grow .38s cubic-bezier(.16,1,.3,1), box-shadow .22s, border-radius .22s;
  -webkit-tap-highlight-color: transparent;
}
.aqs-fab-swatch.aqs-sw-on { flex-grow: 3.5; border-radius: 10px; box-shadow: 0 6px 24px rgba(0,0,0,.22), inset 0 2px 0 rgba(255,255,255,.22); outline: 1.5px solid rgba(255,255,255,.35); outline-offset: -1.5px; }
.aqs-fab-swatch{
  background: var(--swatch-color);
}

.aqs-fab-swatch::before{
  content:'';
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    120deg,
    rgba(255,255,255,.24) 0%,
    rgba(255,255,255,.06) 18%,
    transparent 40%,
    rgba(255,255,255,.10) 65%,
    transparent 100%
  );

  pointer-events:none;
}

.aqs-fab-swatch::after{
  content:'';
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(255,255,255,.08),
    transparent 40%,
    rgba(0,0,0,.06)
  );

  pointer-events:none;
}
.aqs-fab-swatch::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 50%); border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .3s; }
.aqs-fab-swatch.aqs-sw-on::after { opacity: 1; }
.aqs-sw-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 8px 10px; background: linear-gradient(to top, rgba(0,0,0,.6), transparent); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; text-align: center; color: rgba(255,255,255,0); pointer-events: none; transition: color .25s; }
.aqs-fab-swatch.aqs-sw-on .aqs-sw-label { color: rgba(255,255,255,.95); }
.aqs-fab-foot { display: none; }

/* Price tags */
.aqs-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 10px; padding: 4px 16px 0; max-width: 640px; margin: 0 auto; }
.aqs-tag { flex: 0 0 calc(33.333% - 8px); max-width: 110px; display: flex; flex-direction: column; align-items: center; text-decoration: none; transition: transform .26s cubic-bezier(.34,1.3,.64,1); }
.aqs-tag:hover { transform: translateY(-6px); }
.aqs-tag-thread-wrap { display: flex; flex-direction: column; align-items: center; }
.aqs-tag-eyelet { width: 7px; height: 7px; border-radius: 50%; border: 1px solid #ccc; background: var(--off); transition: border-color .2s; }
.aqs-tag-thread { width: 1px; height: 10px; background: repeating-linear-gradient(to bottom, #ccc 0, #ccc 3px, transparent 3px, transparent 6px); transition: opacity .2s; }
.aqs-tag-shape { width: 100%; clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%); background: linear-gradient(180deg, #ffffff 0%, #eeece8 100%); display: flex; flex-direction: column; align-items: center; padding: 10px 10px 26px; gap: 4px; position: relative; transition: background .2s, box-shadow .22s; box-shadow: 0 3px 12px rgba(0,0,0,.08); }
.aqs-tag-shape::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.9); }
.aqs-tag-punch { width: 9px; height: 9px; border-radius: 50%; background: rgba(0,0,0,.08); box-shadow: inset 0 1px 3px rgba(0,0,0,.15); flex-shrink: 0; transition: background .2s; margin-top: 2px; }
.aqs-tag-pre { font-size: 7px; letter-spacing: 2px; text-transform: uppercase; color: rgba(17,17,16,.55); transition: color .2s; }
.aqs-tag-line { width: 20px; height: 1px; background: var(--faint); transition: background .2s; }
.aqs-tag-price { font-size: 17px; font-weight: 400; color: var(--ink); line-height: 1; white-space: nowrap; letter-spacing: -0.3px; transition: color .2s; }
.aqs-tag:hover .aqs-tag-shape  { background: linear-gradient(180deg, #2e2e2c 0%, #111110 100%); box-shadow: 0 8px 28px rgba(17,17,16,.22); }
.aqs-tag:hover .aqs-tag-punch  { background: rgba(255,255,255,.12); }
.aqs-tag:hover .aqs-tag-pre    { color: rgba(255,255,255,.5); }
.aqs-tag:hover .aqs-tag-line   { background: rgba(255,255,255,.12); }
.aqs-tag:hover .aqs-tag-price  { color: #fff; }
.aqs-tag:hover .aqs-tag-eyelet { border-color: #888; }
.aqs-tag:hover .aqs-tag-thread { opacity: .4; }

@media (prefers-reduced-motion: reduce){

  .aqs-bubble-ring{
    animation:none !important;
  }

  .aqs-fab-swatch,
  .aqs-tag,
  .aqs-bubble{
    transition:none !important;
  }

}

/* ==========================================================================
   6. REVIEWS CAROUSEL — Option A minimal quote strip
   3-col desktop with dividers. Mobile: single card swipe + dots.
   ========================================================================== */

#rc-{{ section.id }} already handled via CSS custom properties.

[id^="rc-"] { -webkit-font-smoothing: antialiased; }

/* Strip — desktop grid */
.rc-strip {
  display: grid;
  grid-template-columns: repeat(var(--rc-cols, 3), 1fr);
  padding: var(--rc-padding, 0 40px);
  border-top: 1px solid var(--rc-border);
  border-bottom: 1px solid var(--rc-border);
}
.rc-item {
  padding: 28px 24px;
  border-right: 1px solid var(--rc-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rc-item:last-child { border-right: none; }

.rc-stars {
  font-size: 13px;
  color: var(--rc-accent);
  letter-spacing: 2px;
  line-height: 1;
}
.rc-quote {
  font-family: var(--rc-font-body, inherit);
  font-size: var(--rc-quote-size, 13px);
  font-weight: 300;
  font-style: italic;
  color: var(--rc-text);
  line-height: 1.8;
  margin: 0;
  flex: 1;
}
.rc-reviewer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--rc-border);
}
.rc-rname {
  font-family: var(--rc-font-body, inherit);
  font-size: 13px; font-weight: 500;
  color: var(--rc-text); letter-spacing: .02em;
}
.rc-rloc {
  font-family: var(--rc-font-body, inherit);
  font-size: 12px; color: var(--rc-muted);
}

/* Dots — hidden on desktop */
.rc-dots { display: none; gap: 7px; justify-content: center; margin-top: 20px; }
.rc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ddd; border: none; padding: 0; cursor: pointer;
  transition: all .35s cubic-bezier(0.22,1,0.36,1);
}
.rc-dot.rc-dot-on { background: var(--rc-accent); width: 20px; border-radius: 3px; }

/* Mobile */
@media (max-width: 767px) {
  .rc-strip {
    grid-template-columns: 1fr;
    padding: 0 20px;
    border-top: none;
    border-bottom: none;
  }
  .rc-item {
    display: none;
    border-right: none;
    border: 1px solid var(--rc-border);
    border-radius: 12px;
    padding: 20px;
  }
  .rc-item.rc-active { display: flex; }
  .rc-dots { display: flex; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rc-strip { grid-template-columns: repeat(2, 1fr); }
  .rc-item:nth-child(2n) { border-right: none; }
}

/* ==========================================================================
   7. MOBILE DRAWER
   ========================================================================== */

.aisen-drawer *, .aisen-drawer *::before, .aisen-drawer *::after { box-sizing: border-box; }

.aisen-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.38);
  z-index: 9998; opacity: 0; visibility: hidden;
  transition: opacity 0.38s cubic-bezier(0.22,1,0.36,1), visibility 0.38s cubic-bezier(0.22,1,0.36,1);
  -webkit-backdrop-filter: blur(1px); backdrop-filter: blur(1px);
}
.aisen-drawer-overlay.is-open { opacity: 1; visibility: visible; }

.aisen-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(84vw, 340px); background: #fff;
  z-index: 9999; display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden; will-change: transform;
}
.aisen-drawer.is-open { transform: translateX(0); }

.aisen-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid #f0f0f0; flex-shrink: 0;
}
.aisen-drawer__logo { text-decoration: none; display: block; }
.aisen-drawer__logo img { max-width: 110px; max-height: 34px; width: auto; height: auto; object-fit: contain; display: block; }
.aisen-drawer__logo-fallback { font-family: inherit; font-size: 16px; font-weight: 600; color: #111; }

.aisen-drawer__close {
  width: 32px; height: 32px; border: 1.5px solid #e8e8e8; border-radius: 50%;
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #111; flex-shrink: 0; padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.aisen-drawer__close:hover { border-color: #111; background: #111; color: #fff; transform: rotate(90deg); }
.aisen-drawer__close svg { width: 13px; height: 13px; display: block; pointer-events: none; }

.aisen-drawer__search {
  padding: 12px 20px; border-bottom: 1px solid #f0f0f0; flex-shrink: 0;
  opacity: 0; transition: opacity 0.3s ease 0.06s;
}
.aisen-drawer.is-open .aisen-drawer__search { opacity: 1; }
.aisen-drawer__search-inner {
  display: flex; align-items: center; gap: 10px;
  background: #f7f7f7; border-radius: 8px; padding: 9px 14px;
  border: none; width: 100%;
}
.aisen-drawer__search-inner:focus-within { background: #f0f0f0; }
.aisen-drawer__search-inner svg { width: 15px; height: 15px; color: #999; flex-shrink: 0; }
.aisen-drawer__search-btn { width: 100%; border: none; background: transparent; cursor: pointer; padding: 0; display: block; -webkit-appearance: none; appearance: none; outline: none; }
.aisen-drawer__search-btn:hover .aisen-drawer__search-inner { background: #f0f0f0; }
.aisen-drawer__search-input { border: none; background: transparent; outline: none; font-family: inherit; font-size: 13px; color: #111; width: 100%; line-height: 1; }
.aisen-drawer__search-input::placeholder { color: #aaa; }

/* ── Body — flex column so nav fills space, pushing util to bottom ── */
.aisen-drawer__body {
  flex: 1 1 0; overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  display: flex; flex-direction: column;
}
.aisen-drawer__body::-webkit-scrollbar { display: none; }

/* Nav fills available space — pushes Find Your Style + util down */
.aisen-drawer__nav { list-style: none; margin: 0; padding: 8px 0 6px; flex: 1; }
.aisen-drawer__nav li { margin: 0; }

.aisen-drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px; font-family: inherit;
  font-size: 16px; font-weight: 400; color: #111;
  text-decoration: none; letter-spacing: 0.01em;
  transition: color 0.18s ease;
  position: relative; width: 100%; border: none; background: transparent;
  cursor: pointer; text-align: left; -webkit-appearance: none; appearance: none;
}
button.aisen-drawer__link { outline: none; }
button.aisen-drawer__link::-moz-focus-inner { border: 0; padding: 0; }
.aisen-drawer__link.is-active { font-weight: 600; }
.aisen-drawer__link:active { background: #f5f5f5; opacity: 0.85; }
.aisen-drawer__link.is-active::before {
  content: ''; position: absolute; left: 0; top: 25%; bottom: 25%;
  width: 2.5px; background: #111; border-radius: 0 2px 2px 0;
}

.aisen-drawer__sale-badge {
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 8px; flex-shrink: 0;
  width: 16px; height: 16px;
  background: #fdf0f0; border-radius: 4px; color: #c0392b;
}
.aisen-drawer__sale-badge svg { width: 9px; height: 9px; display: block; }
.aisen-drawer__chevron { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(-45deg); flex-shrink: 0; opacity: 0.4; }
.aisen-drawer__divider { height: 1px; background: #f0f0f0; margin: 6px 20px; }

.aisen-drawer__util-section { padding: 8px 20px 4px; }
.aisen-drawer__util-card { background: #faf9fb; border-radius: 10px; overflow: hidden; margin-bottom: 10px; }
.aisen-drawer__util-nav { list-style: none; margin: 0; padding: 0; }
.aisen-drawer__util-link {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  font-family: inherit; font-size: 13px; color: #555;
  text-decoration: none; transition: color 0.15s ease, background 0.15s ease;
}
.aisen-drawer__util-link:active { background: #f5f0f8; color: #7E5A7A; }
.aisen-drawer__util-link + .aisen-drawer__util-link { border-top: 1px solid #f0ecf5; }
.aisen-drawer__util-link svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.55; }

.aisen-drawer__featured-link {
  display: flex; align-items: center; gap: 10px; padding: 11px 14px;
  font-family: inherit; font-size: 13px; color: #7E5A7A; font-weight: 500;
  text-decoration: none; background: #faf5fb; border-radius: 10px;
  transition: background 0.15s ease;
}
.aisen-drawer__featured-link:active { background: #ede0f0; transform: scale(0.99); }
.aisen-drawer__featured-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.aisen-drawer__featured-link-arrow { margin-left: auto; width: 6px; height: 6px; border-right: 1.5px solid #7E5A7A; border-top: 1.5px solid #7E5A7A; transform: rotate(45deg); flex-shrink: 0; opacity: 0.7; }

.aisen-drawer__footer {
  padding: 14px 20px 18px; border-top: 1px solid #f0f0f0; flex-shrink: 0;
  opacity: 0; transition: opacity 0.3s ease 0.1s;
}
.aisen-drawer.is-open .aisen-drawer__footer { opacity: 1; }
.aisen-drawer__social { display: flex; flex-direction: column; gap: 10px; }
.aisen-drawer__social-item { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #555; transition: color 0.18s ease; }
.aisen-drawer__social-item:hover { color: #111; }
.aisen-drawer__social-icon { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid #e8e8e8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: inherit; transition: border-color 0.2s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.aisen-drawer__social-item:hover .aisen-drawer__social-icon { border-color: #111; transform: translateY(-2px); }
.aisen-drawer__social-icon svg { width: 14px; height: 14px; display: block; }
.aisen-drawer__social-handle { font-family: inherit; font-size: 12px; color: inherit; }

.aisen-drawer__submenu {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(84vw, 340px); background: #fff; z-index: 10001;
  transform: translateX(-100%); transition: transform 0.36s cubic-bezier(0.22,1,0.36,1);
  display: flex; flex-direction: column; overflow: hidden;
}
.aisen-drawer__submenu.is-open { transform: translateX(0); }
.aisen-drawer__back {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 20px; border: none; border-bottom: 1px solid #f0f0f0;
  background: transparent; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em; color: #111;
  width: 100%; text-align: left; flex-shrink: 0; transition: background 0.18s ease;
  -webkit-appearance: none; appearance: none; outline: none;
}
.aisen-drawer__back::-moz-focus-inner { border: 0; padding: 0; }
.aisen-drawer__back:hover { background: #fafafa; }
.aisen-drawer__back-arrow { width: 7px; height: 7px; border-left: 1.5px solid #7E5A7A; border-bottom: 1.5px solid #7E5A7A; transform: rotate(45deg); flex-shrink: 0; }
.aisen-drawer__submenu-body { flex: 1 1 0; overflow-y: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.aisen-drawer__submenu-body::-webkit-scrollbar { display: none; }

.aisen-drawer__cat-group { padding: 12px 20px 4px; }
.aisen-drawer__cat-group-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.aisen-drawer__cat-thumb { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #f0ece8; border: 1px solid #efefef; }
.aisen-drawer__cat-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.aisen-drawer__cat-thumb-placeholder { width: 100%; height: 100%; background: #ece8e4; }
.aisen-drawer__cat-group-name { font-family: inherit; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #7E5A7A; text-decoration: none; line-height: 1.3; }
.aisen-drawer__cat-links { list-style: none; margin: 0; padding: 0 0 4px; }
.aisen-drawer__cat-link { display: block; padding: 6px 20px 6px 14px; font-family: inherit; font-size: 13px; color: #444; text-decoration: none; border-left: 2px solid #ece4eb; margin-left: 20px; transition: color 0.15s ease, border-color 0.15s ease; }
.aisen-drawer__cat-link:active { background: #faf5fb; color: #7E5A7A; border-left-color: #7E5A7A; }
.aisen-drawer__cat-link.is-active { color: #7E5A7A; border-left-color: #7E5A7A; font-weight: 500; }

/* Stagger animation delays — hardcoded from Liquid loop output */
.aisen-drawer__nav > li,
.aisen-drawer__util-nav > li { opacity: 0; transform: translateX(-8px); transition: opacity 0.3s ease, transform 0.3s ease; }
.aisen-drawer.is-open .aisen-drawer__nav > li,
.aisen-drawer.is-open .aisen-drawer__util-nav > li { opacity: 1; transform: translateX(0); }

.aisen-drawer.is-open .aisen-drawer__nav > li:nth-child(1)  { transition-delay: 95ms; }
.aisen-drawer.is-open .aisen-drawer__nav > li:nth-child(2)  { transition-delay: 135ms; }
.aisen-drawer.is-open .aisen-drawer__nav > li:nth-child(3)  { transition-delay: 175ms; }
.aisen-drawer.is-open .aisen-drawer__nav > li:nth-child(4)  { transition-delay: 215ms; }
.aisen-drawer.is-open .aisen-drawer__nav > li:nth-child(5)  { transition-delay: 255ms; }
.aisen-drawer.is-open .aisen-drawer__nav > li:nth-child(6)  { transition-delay: 295ms; }
.aisen-drawer.is-open .aisen-drawer__nav > li:nth-child(7)  { transition-delay: 335ms; }
.aisen-drawer.is-open .aisen-drawer__nav > li:nth-child(8)  { transition-delay: 375ms; }
.aisen-drawer.is-open .aisen-drawer__nav > li:nth-child(9)  { transition-delay: 415ms; }
.aisen-drawer.is-open .aisen-drawer__nav > li:nth-child(10) { transition-delay: 455ms; }

.aisen-drawer.is-open .aisen-drawer__util-nav > li:nth-child(1)  { transition-delay: 260ms; }
.aisen-drawer.is-open .aisen-drawer__util-nav > li:nth-child(2)  { transition-delay: 300ms; }
.aisen-drawer.is-open .aisen-drawer__util-nav > li:nth-child(3)  { transition-delay: 340ms; }
.aisen-drawer.is-open .aisen-drawer__util-nav > li:nth-child(4)  { transition-delay: 380ms; }
.aisen-drawer.is-open .aisen-drawer__util-nav > li:nth-child(5)  { transition-delay: 420ms; }
.aisen-drawer.is-open .aisen-drawer__util-nav > li:nth-child(6)  { transition-delay: 460ms; }
.aisen-drawer.is-open .aisen-drawer__util-nav > li:nth-child(7)  { transition-delay: 500ms; }
.aisen-drawer.is-open .aisen-drawer__util-nav > li:nth-child(8)  { transition-delay: 540ms; }
.aisen-drawer.is-open .aisen-drawer__util-nav > li:nth-child(9)  { transition-delay: 580ms; }
.aisen-drawer.is-open .aisen-drawer__util-nav > li:nth-child(10) { transition-delay: 620ms; }

/* ─────────────────────────────────────────
   Shop What's Trending — Aisen Studio
   assets/aisen-custom.css
   ───────────────────────────────────────── */

/* section */
.stl-section {
  padding: 2rem 1rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* header */
.stl-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.stl-title {
  font-size: 24px;
  font-weight: var(--font-heading-weight, 400);
  line-height: 1.1;
  margin: 0;
}

.stl-subtext {
  font-size: 15px;
  color: var(--color-foreground-75, #9a8f82);
  margin: 6px 0 0;
  line-height: 1.5;
}

/* grid */
.stl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* card-wrap */
.stl-card-wrap {
  opacity: 0;
  animation: stl-fade-up 0.4s ease forwards;
}

.stl-card-wrap:nth-child(1) { animation-delay: 0.05s; }
.stl-card-wrap:nth-child(2) { animation-delay: 0.12s; }
.stl-card-wrap:nth-child(3) { animation-delay: 0.19s; }
.stl-card-wrap:nth-child(4) { animation-delay: 0.26s; }

@keyframes stl-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* card */
.stl-card {
  position: relative;
  border-radius: var(--media-radius, 10px);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
  background: #e8e3dc;
  -webkit-tap-highlight-color: transparent;
}

.stl-card:focus-visible {
  outline: 2px solid var(--color-foreground, #1a1714);
  outline-offset: 2px;
}

/* thumbnail + video */
.stl-thumb,
.stl-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stl-thumb { transition: transform 0.5s ease; }
.stl-card:hover .stl-thumb { transform: scale(1.04); }
.stl-video { display: none; }
.stl-video::-webkit-media-controls { display: none !important; }

/* playing state */
.stl-card-wrap.is-playing .stl-thumb    { display: none; }
.stl-card-wrap.is-playing .stl-video    { display: block; }
.stl-card-wrap.is-playing .stl-play-btn { opacity: 0; pointer-events: none; }

/* bottom gradient overlay */
.stl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 52%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  pointer-events: none;
}

/* play button — centered */
.stl-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.25s ease, background 0.2s;
  pointer-events: all;
}

.stl-play-btn:hover { background: rgba(0,0,0,0.62); }

.stl-play-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 2px;
}

/* bottom content */
.stl-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: all;
}

.stl-meta {
  display: none;
  flex-direction: column;
  gap: 2px;
  max-width: 85%;
}

.stl-name {
  font-size: 13px;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stl-price {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* shop button */
.stl-shop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 32px;
  background: #fff;
  color: #1a1714;
  border: none;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.stl-shop-btn:hover { background: rgba(255,255,255,0.88); }

/* desktop */
@media (min-width: 768px) {
  .stl-section { padding: 4rem 2rem 5rem; }
  .stl-title { font-size: 32px; }
  .stl-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .stl-overlay { padding: 14px; }
  .stl-play-btn { width: 56px; height: 56px; }
  .stl-play-btn svg { width: 24px; height: 24px; }
  .stl-meta { display: flex; }
  .stl-name { font-size: 14px; }
  .stl-price { font-size: 13px; }
  .stl-shop-btn { min-height: 44px; font-size: 14px; }
}

/* ==========================================================================
   SWIPE THE LOOK
   ========================================================================== */

.swl-section {
  padding: 2rem 0 2.5rem;
  overflow: hidden;
}

.swl-track-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.swl-track-wrap::-webkit-scrollbar { display: none; }

.swl-track {
  display: flex;
  gap: 10px;
  padding: 0 1rem 1rem;
  list-style: none;
  margin: 0;
  scroll-snap-type: x mandatory;
}

/* card — 72vw so one full card + peek of next */
.swl-card {
  flex: 0 0 66vw;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--media-radius, 10px);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
  background: #e8e3dc;
  -webkit-tap-highlight-color: transparent;
}

.swl-card:focus-visible {
  outline: 2px solid var(--color-foreground, #1a1714);
  outline-offset: 2px;
}

/* media */
.swl-thumb,
.swl-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swl-thumb { transition: transform 0.5s ease; }
.swl-card:hover .swl-thumb { transform: scale(1.04); }
.swl-video { display: none; }
.swl-video::-webkit-media-controls { display: none !important; }

/* playing state */
.swl-card.is-playing .swl-thumb    { display: none; }
.swl-card.is-playing .swl-video    { display: block; }
.swl-card.is-playing .swl-play-btn { opacity: 0; pointer-events: none; }

/* play button — centered */
.swl-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.25s ease, background 0.2s;
  pointer-events: all;
}

.swl-play-btn:hover { background: rgba(0,0,0,0.62); }

.swl-play-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 2px;
}

/* footer pill — inside card, pinned bottom */
.swl-foot {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 6px 6px 6px 12px;
  pointer-events: all;
  text-decoration: none;
  transition: background 0.2s;
  text-decoration: none;
  transition: background 0.2s;
}

.swl-foot:hover { background: #f0f0f0; }

.swl-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.swl-price {
  font-size: 13px;
  color: #1a1714;
  white-space: nowrap;
}

.swl-compare {
  font-size: 11px;
  color: #aaa;
  text-decoration: line-through;
  white-space: nowrap;
}

/* eye icon button */
.swl-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #1a1714;
  color: #fff;
  border-radius: 6px;
}

.swl-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* desktop — 4 col grid */
@media (min-width: 768px) {
  .swl-section { padding: 4rem 2rem 5rem; }
  .swl-track-wrap { overflow: visible; }
  .swl-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0;
    scroll-snap-type: none;
  }
  .swl-card { flex: unset; }
  .swl-play-btn { width: 56px; height: 56px; }
  .swl-play-btn svg { width: 24px; height: 24px; }
  .swl-price { font-size: 14px; }
  .swl-btn { width: 36px; height: 36px; }
}