/* ═══════════════════════════════════════════════════════════════════════
   KAKOARA — LOOKBOOK & STYLING
   Master Design System v1.0 — "Your Closet, Everywhere"
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --kl-terracotta: #C45C3E;
  --kl-terracotta-dark: #A84A30;
  --kl-indigo: #2A3B5C;
  --kl-ochre: #D4A03C;
  --kl-ochre-light: #E0B45A;
  --kl-cream: #F5F0E8;
  --kl-cream-dark: #EBE3D8;
  --kl-cream-light: #FDFBF7;
  --kl-charcoal: #1A1A1A;
  --kl-charcoal-soft: #2D2D2D;
  --kl-clay: #8B5A3C;
  --kl-clay-light: #B08262;
  --kl-sage: #7A8B6E;
  --kl-sage-light: #9AAB8E;
  --kl-wine: #722F37;
  --kl-magenta: #B83A5B;
  --kl-magenta-light: #D45A7A;
  --kl-midnight: #0F172A;
  --kl-midnight-light: #1E2A45;
  --kl-gold: #C9A96E;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Crimson Text', Georgia, serif;

  --ease-out-strong: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Base ─── */
.kl-body {
  background: var(--kl-cream);
  color: var(--kl-charcoal);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.kl-body * { box-sizing: border-box; }
.kl-body img { max-width: 100%; height: auto; display: block; }
.kl-body a { color: inherit; text-decoration: none; }

/* ─── Scroll Reveal ─── */
.kl-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease-out-strong), transform 0.9s var(--ease-out-strong); }
.kl-reveal.is-visible { opacity: 1; transform: translateY(0); }
.kl-reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.8s var(--ease-out-strong), transform 0.8s var(--ease-out-strong); }
.kl-reveal-scale.is-visible { opacity: 1; transform: scale(1); }
.kl-reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease-out-strong), transform 0.8s var(--ease-out-strong); }
.kl-reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.kl-reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease-out-strong), transform 0.8s var(--ease-out-strong); }
.kl-reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.kl-delay-1 { transition-delay: 0.1s; }
.kl-delay-2 { transition-delay: 0.2s; }
.kl-delay-3 { transition-delay: 0.3s; }
.kl-delay-4 { transition-delay: 0.4s; }
.kl-delay-5 { transition-delay: 0.5s; }

/* ─── Typography ─── */
.kl-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--kl-terracotta); margin-bottom: 1.25rem;
}
.kl-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--kl-terracotta), var(--kl-ochre)); border-radius: 2px;
}
.kl-h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; color: var(--kl-charcoal); font-family: var(--font-display); }
.kl-h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--kl-charcoal); font-family: var(--font-display); }
.kl-h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 700; line-height: 1.2; color: var(--kl-charcoal); font-family: var(--font-display); }
.kl-h4 { font-size: clamp(0.9rem, 1.4vw, 1.1rem); font-weight: 700; line-height: 1.3; color: var(--kl-charcoal); letter-spacing: 0.02em; }

.kl-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--kl-terracotta); margin-bottom: 0.75rem;
}

/* ─── Buttons ─── */
.kl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.8rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.35s var(--ease-out-strong); cursor: pointer; border: none; white-space: nowrap;
  font-family: var(--font-body);
}
.kl-btn-primary { background: var(--kl-terracotta); color: #fff; box-shadow: 0 4px 16px rgba(196,92,62,0.25); }
.kl-btn-primary:hover { background: var(--kl-terracotta-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,92,62,0.35); }
.kl-btn-ochre { background: var(--kl-ochre); color: var(--kl-midnight); box-shadow: 0 4px 16px rgba(212,160,60,0.25); }
.kl-btn-ochre:hover { background: var(--kl-ochre-light); transform: translateY(-2px); }
.kl-btn-magenta { background: var(--kl-magenta); color: #fff; box-shadow: 0 4px 16px rgba(184,58,91,0.25); }
.kl-btn-magenta:hover { background: var(--kl-magenta-light); transform: translateY(-2px); }
.kl-btn-midnight { background: var(--kl-midnight); color: var(--kl-cream); }
.kl-btn-midnight:hover { background: var(--kl-midnight-light); transform: translateY(-2px); }
.kl-btn-ghost { background: transparent; color: var(--kl-charcoal); border: 1.5px solid rgba(26,26,26,0.15); }
.kl-btn-ghost:hover { border-color: var(--kl-terracotta); color: var(--kl-terracotta); transform: translateY(-2px); }
.kl-btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.kl-btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 1: HERO — "Your Closet, Everywhere"
   ═══════════════════════════════════════════════════════════════════════ */
.kl-hero {
  min-height: 100vh; min-height: 100dvh;
  position: relative; overflow: hidden;
  background: var(--kl-midnight);
  display: flex; align-items: center; justify-content: center;
}
.kl-hero__triptych {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.kl-hero__triptych-panel {
  position: relative; overflow: hidden;
}
.kl-hero__triptych-panel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out-strong);
}
.kl-hero__triptych-panel:hover img { transform: scale(1.05); }
.kl-hero__triptych-panel .kl-hero__panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.1) 0%, rgba(15,23,42,0.7) 100%);
}
.kl-hero__triptych-label {
  position: absolute; bottom: 2rem; left: 1.5rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.kl-hero__content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 800px; padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.kl-hero__issue {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--kl-ochre); margin-bottom: 1.5rem;
}
.kl-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700; line-height: 0.9; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.kl-hero__sub {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7; color: rgba(255,255,255,0.7);
  max-width: 50ch; margin: 0 auto 2.5rem;
}
.kl-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.kl-hero__counter {
  position: absolute; top: 2rem; right: 2rem; z-index: 3;
  padding: 0.5rem 1rem; border-radius: 100px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  font-size: 0.7rem; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .kl-hero { min-height: 90vh; }
  .kl-hero__triptych { display: flex; }
  .kl-hero__triptych-panel:nth-child(2),
  .kl-hero__triptych-panel:nth-child(3) { display: none; }
  .kl-hero__triptych-panel { flex: 1; }
  .kl-hero__counter { top: 1rem; right: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 2: STICKY FILTER BAR — "Filter Your Life"
   ═══════════════════════════════════════════════════════════════════════ */
.kl-filter {
  position: sticky; z-index: 40;
  background: var(--kl-cream); border-bottom: 1px solid rgba(139,90,60,0.15);
  transition: box-shadow 0.3s var(--ease-out-strong);
}
.kl-filter.is-scrolled { box-shadow: 0 4px 20px rgba(26,26,26,0.06); }
.kl-filter__inner {
  max-width: 1600px; margin: 0 auto; padding: 0.75rem clamp(1.25rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.kl-filter__row {
  display: flex; align-items: center; gap: 0.75rem;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.kl-filter__row::-webkit-scrollbar { display: none; }
.kl-filter__label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--kl-clay); white-space: nowrap; flex-shrink: 0;
}
.kl-filter__pills {
  display: flex; gap: 0.35rem; flex-shrink: 0;
}
.kl-filter__pill {
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(139,90,60,0.15); color: var(--kl-clay);
  cursor: pointer; transition: all 0.3s var(--ease-out-strong);
  white-space: nowrap; background: transparent;
  font-family: var(--font-body);
}
.kl-filter__pill:hover { border-color: var(--kl-magenta); color: var(--kl-magenta); }
.kl-filter__pill.is-active { background: var(--kl-magenta); border-color: var(--kl-magenta); color: #fff; }
@media (max-width: 768px) {
  .kl-filter__inner { padding: 0.5rem clamp(1rem, 3vw, 1.5rem); }
  .kl-filter__row { gap: 0.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 3: LOOKBOOK GRID — "Styling Recipes"
   ═══════════════════════════════════════════════════════════════════════ */
.kl-looks {
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.kl-looks__inner { padding: 0 clamp(1.25rem, 4vw, 3rem); max-width: 1600px; margin: 0 auto; }
.kl-looks__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px) { .kl-looks__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .kl-looks__grid { grid-template-columns: repeat(3, 1fr); } }

.kl-look-card {
  border-radius: 4px; overflow: hidden;
  background: #fff; border-bottom: 2px solid var(--kl-clay);
  transition: all 0.4s var(--ease-out-strong);
  display: flex; flex-direction: column;
}
.kl-look-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,26,26,0.06); }
.kl-look-card__media {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--kl-cream-dark);
}
.kl-look-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out-strong);
}
.kl-look-card:hover .kl-look-card__media img { transform: scale(1.04); }
.kl-look-card__badges {
  position: absolute; top: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; gap: 0.4rem;
}
.kl-look-card__badge {
  padding: 3px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(8px);
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.kl-look-card__badge--climate { color: var(--kl-terracotta); }
.kl-look-card__badge--occasion { color: var(--kl-indigo); }

.kl-look-card__quickview {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  transform: translateY(100%); transition: transform 0.3s var(--ease-out-strong);
  display: flex; gap: 0.4rem;
}
.kl-look-card:hover .kl-look-card__quickview { transform: translateY(0); }
.kl-look-card__qv-btn {
  flex: 1; padding: 0.3rem 0.5rem; border-radius: 6px;
  background: rgba(255,255,255,0.9); border: none;
  font-size: 0.55rem; font-weight: 700; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
  font-family: var(--font-body);
}
.kl-look-card__qv-btn:hover { background: #fff; }

.kl-look-card__body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.kl-look-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700; line-height: 1.15; color: var(--kl-charcoal); margin: 0 0 0.25rem;
}
.kl-look-card__meta {
  font-size: 0.65rem; color: var(--kl-clay); margin-bottom: 0.75rem;
}
.kl-look-card__price {
  font-size: 1.1rem; font-weight: 700; color: var(--kl-charcoal);
  margin-bottom: 0.5rem;
}
.kl-look-card__fit {
  font-family: var(--font-accent); font-style: italic;
  font-size: 0.82rem; line-height: 1.6; color: var(--kl-magenta);
  padding: 0.75rem 0; border-top: 1px solid rgba(139,90,60,0.1);
  margin-top: auto;
}
.kl-look-card__recipe {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  padding: 0.75rem 0; border-top: 1px solid rgba(139,90,60,0.1);
}
.kl-look-card__recipe-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--kl-cream-dark); display: flex;
  align-items: center; justify-content: center;
  font-size: 0.7rem;
}
.kl-look-card__actions {
  display: flex; gap: 0.5rem; margin-top: 0.5rem;
}
.kl-look-card__buy {
  flex: 1; padding: 0.6rem 1rem; border-radius: 100px;
  background: var(--kl-ochre); color: var(--kl-midnight);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center; transition: all 0.3s;
  border: none; cursor: pointer; font-family: var(--font-body);
}
.kl-look-card__buy:hover { background: var(--kl-ochre-light); transform: translateY(-1px); }
.kl-look-card__swap {
  padding: 0.6rem 0.8rem; border-radius: 100px;
  background: transparent; border: 1px solid rgba(139,90,60,0.15);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em;
  cursor: pointer; transition: all 0.3s;
  white-space: nowrap; font-family: var(--font-body);
}
.kl-look-card__swap:hover { border-color: var(--kl-magenta); color: var(--kl-magenta); }

.kl-look-card__diary-note {
  font-size: 0.75rem; line-height: 1.5; color: var(--kl-clay);
  padding: 0.5rem 0 0; border-top: 1px solid rgba(139,90,60,0.1);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 4: "SAME PIECE, THREE CITIES" — AOV Killer
   ═══════════════════════════════════════════════════════════════════════ */
.kl-three-cities {
  background: var(--kl-midnight); color: #fff;
  padding: 0; position: relative; overflow: hidden;
}
.kl-three-cities__grid {
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .kl-three-cities__grid { grid-template-columns: repeat(3, 1fr); } }
.kl-three-cities__panel {
  min-height: 600px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
}
.kl-three-cities__panel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1s var(--ease-out-strong);
}
.kl-three-cities__panel:hover img { transform: scale(1.05); }
.kl-three-cities__panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,23,42,0.8) 100%);
}
.kl-three-cities__panel-content {
  position: relative; z-index: 1;
}
.kl-three-cities__city {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--kl-ochre); margin-bottom: 0.5rem;
}
.kl-three-cities__temp {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.15);
  font-size: 0.65rem; margin-bottom: 0.75rem;
}
.kl-three-cities__text {
  font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.8);
  max-width: 35ch;
}
.kl-three-cities__accent {
  display: flex; gap: 0.5rem; margin-top: 0.75rem;
}
.kl-three-cities__accent-item {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.15); display: flex;
  align-items: center; justify-content: center; font-size: 0.7rem;
}

.kl-three-cities__center {
  display: none;
}
@media (min-width: 1024px) {
  .kl-three-cities__center {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 2; text-align: center; max-width: 280px;
  }
}
.kl-three-cities__center-card {
  background: var(--kl-cream); color: var(--kl-charcoal);
  padding: 1.5rem; border-radius: 12px;
  border: 2px solid var(--kl-magenta);
  text-align: center;
}
.kl-three-cities__center-card p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; line-height: 1.4; margin: 0 0 1rem;
}
.kl-three-cities__center-card .kl-btn { width: 100%; }

@media (max-width: 768px) {
  .kl-three-cities__panel { min-height: 80vh; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 5: SIZE-INCLUSIVE STUDIO — "See Your Body"
   ═══════════════════════════════════════════════════════════════════════ */
.kl-size-studio {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--kl-cream-dark);
}
.kl-size-studio__inner { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); text-align: center; }
.kl-size-studio__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 2.5rem 0;
}
@media (min-width: 768px) { .kl-size-studio__grid { grid-template-columns: repeat(6, 1fr); } }

.kl-size-model {
  aspect-ratio: 3/4; border-radius: 10px; overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--kl-cream); border: 1px solid rgba(139,90,60,0.1);
  transition: all 0.4s var(--ease-out-strong);
}
.kl-size-model:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,26,26,0.08); }
.kl-size-model img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.kl-size-model:hover img { transform: scale(1.05); }
.kl-size-model__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.5rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  text-align: left;
}
.kl-size-model__name {
  font-size: 0.65rem; font-weight: 700; color: #fff; display: block;
}
.kl-size-model__body {
  font-size: 0.55rem; color: rgba(255,255,255,0.7); display: block;
}
.kl-size-model__play {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.kl-size-model:hover .kl-size-model__play { opacity: 1; }
.kl-size-model__play-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--kl-charcoal);
}

.kl-size-studio__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 100px;
  background: var(--kl-terracotta); color: #fff;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s;
}
.kl-size-studio__cta:hover { transform: translateY(-2px); background: var(--kl-terracotta-dark); }

@media (max-width: 640px) {
  .kl-size-studio__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 6: TIKTOK STYLING FEED
   ═══════════════════════════════════════════════════════════════════════ */
.kl-tiktok-feed {
  background: var(--kl-midnight); padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden; color: #fff;
}
.kl-tiktok-feed__inner { padding: 0 clamp(1.25rem, 4vw, 3rem); }
.kl-tiktok-feed__header { text-align: center; margin-bottom: 2.5rem; }
.kl-tiktok-feed__scroll {
  display: flex; gap: 1rem; overflow-x: auto;
  padding-bottom: 1rem; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.kl-tiktok-feed__scroll::-webkit-scrollbar { display: none; }
.kl-tiktok-feed__video {
  flex: 0 0 300px; scroll-snap-align: start;
  aspect-ratio: 9/16; border-radius: 12px; overflow: hidden;
  position: relative; background: rgba(255,255,255,0.05);
}
.kl-tiktok-feed__video img {
  width: 100%; height: 100%; object-fit: cover;
}
.kl-tiktok-feed__video-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
}
.kl-tiktok-feed__video-artisan {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--kl-ochre);
}
.kl-tiktok-feed__video-shop {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  padding: 0.4rem 0.75rem; border-radius: 100px;
  background: var(--kl-magenta); color: #fff;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.kl-tiktok-feed__cta-card {
  flex: 0 0 300px; scroll-snap-align: start;
  border-radius: 12px; overflow: hidden;
  background: var(--kl-magenta);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}
.kl-tiktok-feed__cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; margin: 0 0 0.75rem;
}
.kl-tiktok-feed__cta-card p {
  font-size: 0.8rem; opacity: 0.85; margin: 0 0 1.5rem;
}
.kl-tiktok-feed__cta-btn {
  padding: 0.6rem 1.25rem; border-radius: 100px;
  background: rgba(255,255,255,0.2); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; transition: background 0.3s;
  border: none; cursor: pointer; font-family: var(--font-body);
}
.kl-tiktok-feed__cta-btn:hover { background: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 7: STYLE QUIZ — "Find Your Look in 60 Seconds"
   ═══════════════════════════════════════════════════════════════════════ */
.kl-quiz {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--kl-cream);
  border-top: 4px solid var(--kl-magenta);
}
.kl-quiz__inner { max-width: 720px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); text-align: center; }
.kl-quiz__container {
  margin: 2rem auto; position: relative; overflow: hidden;
  min-height: 300px;
}
.kl-quiz__step {
  display: none; opacity: 0;
  animation: klQuizSlideIn 0.5s var(--ease-out-strong) forwards;
}
.kl-quiz__step.is-visible { display: block; }
@keyframes klQuizSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.kl-quiz__step-title {
  font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem;
  color: var(--kl-charcoal);
}
.kl-quiz__options {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
@media (min-width: 640px) { .kl-quiz__options { grid-template-columns: repeat(3, 1fr); } }
.kl-quiz__card {
  padding: 1rem; border-radius: 12px;
  border: 2px solid rgba(139,90,60,0.1); background: #fff;
  cursor: pointer; transition: all 0.3s var(--ease-out-strong);
  text-align: center;
}
.kl-quiz__card:hover { border-color: var(--kl-magenta); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,58,91,0.08); }
.kl-quiz__card.is-selected { border-color: var(--kl-magenta); background: rgba(184,58,91,0.05); }
.kl-quiz__card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.kl-quiz__card-label { font-size: 0.75rem; font-weight: 600; color: var(--kl-charcoal-soft); }

.kl-quiz__result {
  display: none; padding: 2rem;
  background: rgba(184,58,91,0.05); border-radius: 16px;
  border: 1px solid rgba(184,58,91,0.15);
}
.kl-quiz__result.is-visible { display: block; }
.kl-quiz__result h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 1rem; }
.kl-quiz__result-looks {
  display: grid; gap: 1rem; margin: 1.5rem 0;
}
.kl-quiz__result-look { padding: 1rem; background: #fff; border-radius: 8px; text-align: left; }
.kl-quiz__result-look h4 { font-size: 0.9rem; margin: 0 0 0.25rem; color: var(--kl-charcoal); }
.kl-quiz__result-look p { font-size: 0.75rem; color: var(--kl-clay); margin: 0; }

.kl-quiz__progress {
  margin-bottom: 2rem; max-width: 400px; margin-left: auto; margin-right: auto;
}
.kl-quiz__progress-bar {
  width: 100%; height: 4px; border-radius: 2px;
  background: rgba(139,90,60,0.12); overflow: hidden;
}
.kl-quiz__progress-fill {
  height: 100%; border-radius: 2px;
  background: var(--kl-magenta);
  transition: width 0.5s var(--ease-out-strong);
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 8: BUNDLE BUILDER — "Complete the Look"
   ═══════════════════════════════════════════════════════════════════════ */
.kl-bundle {
  background: var(--kl-ochre-light);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.kl-bundle__inner { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.kl-bundle__grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 768px) { .kl-bundle__grid { grid-template-columns: 1fr 1fr; } }
.kl-bundle__hero {
  aspect-ratio: 3/4; border-radius: 12px; overflow: hidden;
  background: var(--kl-cream-dark);
}
.kl-bundle__hero img { width: 100%; height: 100%; object-fit: cover; }
.kl-bundle__items {
  display: flex; flex-direction: column; gap: 0.75rem; justify-content: center;
}
.kl-bundle__item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem; border-radius: 10px;
  background: rgba(255,255,255,0.6); cursor: pointer;
  transition: all 0.3s var(--ease-out-strong);
  border: 2px solid transparent;
}
.kl-bundle__item:hover { background: rgba(255,255,255,0.8); }
.kl-bundle__item.is-checked { border-color: var(--kl-midnight); background: rgba(255,255,255,0.85); }
.kl-bundle__item-check {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid rgba(26,26,26,0.15); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.kl-bundle__item.is-checked .kl-bundle__item-check {
  background: var(--kl-midnight); border-color: var(--kl-midnight);
}
.kl-bundle__item-check svg { display: none; }
.kl-bundle__item.is-checked .kl-bundle__item-check svg { display: block; }
.kl-bundle__item-img {
  width: 48px; height: 60px; border-radius: 6px; overflow: hidden;
  flex-shrink: 0; background: var(--kl-cream-dark);
}
.kl-bundle__item-img img { width: 100%; height: 100%; object-fit: cover; }
.kl-bundle__item-name { flex: 1; font-size: 0.85rem; font-weight: 600; color: var(--kl-charcoal); }
.kl-bundle__item-price { font-size: 0.85rem; font-weight: 700; color: var(--kl-charcoal); white-space: nowrap; }
.kl-bundle__total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem; border-radius: 12px;
  background: var(--kl-midnight); color: var(--kl-cream);
  margin-top: 1rem;
}
.kl-bundle__total-info { display: flex; flex-direction: column; }
.kl-bundle__total-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.kl-bundle__total-price { font-size: 1.5rem; font-weight: 700; }
.kl-bundle__total-save { font-size: 0.7rem; color: var(--kl-ochre); }
.kl-bundle__total-cta {
  padding: 0.75rem 1.5rem; border-radius: 100px;
  background: var(--kl-ochre); color: var(--kl-midnight);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s; cursor: pointer; border: none; font-family: var(--font-body);
}
.kl-bundle__total-cta:hover { background: var(--kl-ochre-light); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 9: CONTINUE EXPLORING — Compact Strip
   ═══════════════════════════════════════════════════════════════════════ */
.kl-explore {
  background: var(--kl-cream);
  border-top: 1px solid var(--kl-clay);
  padding: 48px 0;
}
.kl-explore__inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.kl-explore__label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--kl-clay);
  flex-shrink: 0; white-space: nowrap;
}
.kl-explore__scroll {
  display: flex; gap: 0.75rem; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  flex: 1;
}
.kl-explore__scroll::-webkit-scrollbar { display: none; }
.kl-explore__card {
  flex: 0 0 200px; display: flex; flex-direction: column;
  gap: 0.5rem; text-decoration: none;
  opacity: 0.85; transition: opacity 0.3s;
}
.kl-explore__card:hover { opacity: 1; }
.kl-explore__card-img {
  width: 100%; aspect-ratio: 3/4; max-height: 160px;
  border-radius: 6px; overflow: hidden;
  background: var(--kl-cream-dark);
}
.kl-explore__card-img img { width: 100%; height: 100%; object-fit: cover; }
.kl-explore__card-title {
  font-size: 0.82rem; font-weight: 500; color: var(--kl-charcoal);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; line-height: 1.3;
}
.kl-explore__link {
  font-size: 0.85rem; font-weight: 600;
  color: var(--kl-magenta); white-space: nowrap;
  flex-shrink: 0; transition: color 0.3s;
}
.kl-explore__link:hover { color: var(--kl-magenta-light); }

@media (max-width: 768px) {
  .kl-explore__inner { flex-wrap: wrap; gap: 1rem; }
  .kl-explore__label { width: 100%; }
  .kl-explore__scroll { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION 10: FOOTER — Corrected (No Icons, No WhatsApp, Text-Only)
   ═══════════════════════════════════════════════════════════════════════ */
.kl-footer {
  background: var(--kl-indigo);
  color: var(--kl-cream);
  padding: 80px clamp(1.25rem, 4vw, 3rem) 48px;
}
.kl-footer__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; gap: 2rem;
}
@media (min-width: 768px) { .kl-footer__inner { grid-template-columns: 1fr 1fr; } }
.kl-footer__brand { display: grid; gap: 0.75rem; }
.kl-footer__wordmark { font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.kl-footer__studio { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.kl-footer__address { font-style: normal; line-height: 1.8; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.kl-footer__contact { display: grid; gap: 0.5rem; }
.kl-footer__contact a { color: var(--kl-cream); font-size: 0.85rem; transition: color 0.3s; }
.kl-footer__contact a:hover { color: var(--kl-ochre); }
.kl-footer__columns {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
@media (min-width: 640px) { .kl-footer__columns { grid-template-columns: repeat(3, 1fr); } }
.kl-footer__col { display: grid; gap: 0.75rem; align-content: start; }
.kl-footer__col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--kl-ochre); }
.kl-footer__col a { color: rgba(255,255,255,0.7); font-size: 0.82rem; transition: color 0.3s; text-decoration: none; }
.kl-footer__col a:hover { color: var(--kl-cream); }
.kl-footer__bottom {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem;
}
.kl-footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.kl-footer__payments { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.kl-footer__legal { display: flex; gap: 1rem; font-size: 0.7rem; }
.kl-footer__legal a { color: rgba(255,255,255,0.4); transition: color 0.3s; text-decoration: none; }
.kl-footer__legal a:hover { color: var(--kl-cream); }

/* ═══════════════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════════
   GLOBAL FLOATING COMPONENTS
   ═══════════════════════════════════════════════════════════════════════ */

/* WhatsApp Chat — global fixed, appended to body, never in document flow */
.kl-whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0 20px; height: 48px;
  border-radius: 24px;
  background: var(--kl-sage); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.3s var(--ease-out-strong);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  font-family: var(--font-body);
}
.kl-whatsapp-float:hover { background: var(--kl-sage-light); }
.kl-whatsapp-float__icon {
  width: 20px; height: 20px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.kl-whatsapp-float__tooltip { display: none; }
@media (min-width: 768px) {
  .kl-whatsapp-float__tooltip {
    display: block; position: absolute; bottom: calc(100% + 8px); right: 0;
    padding: 6px 12px; border-radius: 6px;
    background: rgba(26,26,26,0.9); color: #fff;
    font-size: 0.7rem; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .kl-whatsapp-float:hover .kl-whatsapp-float__tooltip { opacity: 1; }
}
@media (max-width: 480px) {
  .kl-whatsapp-float { bottom: 16px; right: 16px; height: 44px; padding: 0 16px; font-size: 0.875rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .kl-look-card__quickview { display: none; }
  .kl-quiz__options { grid-template-columns: repeat(2, 1fr); }
  .kl-bundle__grid { grid-template-columns: 1fr; }
  .kl-bundle__hero { max-height: 400px; }
  .kl-whatsapp-float { display: none; }
}
@media (max-width: 480px) {
  .kl-hero__title { font-size: clamp(2.5rem, 15vw, 3.5rem); }
  .kl-look-card__body { padding: 1rem; }
  .kl-look-card__buy { font-size: 0.65rem; padding: 0.5rem 0.75rem; }
  .kl-quiz__options { grid-template-columns: 1fr; }
  .kl-footer__columns { grid-template-columns: 1fr; }
  .kl-footer { padding: 48px clamp(1rem, 3vw, 1.5rem) 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .kl-reveal, .kl-reveal-scale, .kl-reveal-left, .kl-reveal-right,
  .kl-look-card, .kl-size-model, .kl-bundle__item,
  .kl-three-cities__panel img, .kl-explore__card,
  .kl-quiz__progress-fill { transition: none !important; opacity: 1 !important; transform: none !important; }
}
