/* ============================================================
   COSMOSKIN — Premium Style System
   Brand Direction: Apple × Sephora — Clean, Refined, Luxury Beauty
   Version: 2.0 — Production Ready
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS — Single source of truth
   ============================================================ */
:root {
  /* — Color Palette — */
  --bg:            #f6f0e9;
  --bg-2:          #eee5d9;
  --surface:       #faf7f3;
  --card:          #fffefb;
  --text:          #16120e;
  --muted:         #6a6059;
  --line:          rgba(22, 18, 14, .08);
  --line-strong:   rgba(22, 18, 14, .14);
  --beige:         #e6ddd4;
  --beige-deep:    #ddd0c1;

  /* — Gold Accent System — */
  --gold:          #b08a5e;
  --gold-light:    #e4d3bc;
  --gold-subtle:   rgba(176, 138, 94, .12);

  /* — Announcement Bar — Dark Premium — */
  --ticker-bg:     #0d0b09;
  --ticker-text:   rgba(255, 255, 255, .78);
  --ticker-accent: #c9a97a;

  /* — Typography — */
  --sans:          'Plus Jakarta Sans', system-ui, sans-serif;
  --serif:         'Cormorant Garamond', 'Georgia', serif;

  /* — Shadows — */
  --shadow:         0 20px 72px rgba(18, 13, 8, .09);
  --shadow-soft:    0 8px 28px rgba(18, 13, 8, .06);
  --shadow-premium: 0 28px 96px rgba(18, 13, 8, .12);
  --shadow-card:    0 2px 12px rgba(18, 13, 8, .05);

  /* — Shape — */
  --radius:        26px;
  --radius-sm:     16px;
  --radius-xs:     10px;

  /* — Layout — */
  --container:     1240px;

  /* — Transitions — */
  --ease-out:      cubic-bezier(.2, .8, .2, 1);
  --ease-spring:   cubic-bezier(.34, 1.56, .64, 1);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  background: linear-gradient(180deg, #f8f3ec 0%, #f2eadf 60%, #ede5d8 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; cursor: pointer; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.narrow { max-width: 860px; }

/* ============================================================
   4. SCROLL PROGRESS BAR
   ============================================================ */
.progress {
  position: fixed;
  left: 0; top: 0;
  height: 2px;
  width: 0;
  z-index: 500;
  background: linear-gradient(90deg, var(--gold), #d4b485);
}

/* ============================================================
   5. ANNOUNCEMENT BAR — Black ticker, luxury beauty brand feel
   ============================================================ */
.announcement {
  position: sticky;
  top: 0;
  z-index: 240;
  height: 40px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

/* Marquee track */
.marquee {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  white-space: nowrap;
  padding: 0 32px;
  color: var(--ticker-text);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  animation: marqueeMove 28s linear infinite;
  will-change: transform;
}

.marquee span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
  opacity: .88;
}

/* Separator dots between items */
.marquee span + span::before {
  content: '·';
  margin-right: 64px;
  opacity: .3;
  font-size: 16px;
  letter-spacing: 0;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   6. HEADER / NAVIGATION
   ============================================================ */
.header {
  position: sticky;
  top: 40px;
  z-index: 230;
  max-width: calc(var(--container) + 56px);
  margin: 0 auto;
  padding: 0 28px;
  height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: rgba(248, 243, 237, .78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, border-color .3s ease;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 40px; height: 40px;
  object-fit: contain;
}

.brand-word {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .42em;
  color: #18130f;
}

/* Nav links */
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0; margin: 0;
}

.nav > li > a, .linkish {
  border: 0;
  background: none;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #3a3028;
  position: relative;
  transition: color .22s ease;
}

.nav > li > a:hover, .linkish:hover { color: #16120e; }

/* Underline hover */
.nav > li > a::after, .linkish::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease-out);
}

.nav > li > a:hover::after, .linkish:hover::after { transform: scaleX(1); }

/* Mega dropdown */
.shop-wrap { position: relative; }

.mega {
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  transform: translateX(-50%) translateY(10px);
  width: min(1080px, calc(100vw - 48px));
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, .97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .4s var(--ease-out);
}

.shop-wrap.open .mega,
.brands-wrap.open .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega h4 {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}

.mega a {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background .22s ease, border-color .22s ease;
}

.mega a:hover {
  background: #f8f1e8;
  border-color: var(--line);
}

.mega a span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

.mega-side {
  background: linear-gradient(160deg, #f6f0e7, #ede3d7);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  align-content: space-between;
}

.mega-side small {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.mega-side strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.1;
}

.mega-side p {
  font-size: 13px;
  line-height: 1.72;
  color: var(--muted);
  margin: 8px 0 16px;
}

/* Header tools */
.header-tools {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tool-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, .7);
  display: grid;
  place-items: center;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.tool-btn:hover {
  background: rgba(255, 253, 250, .95);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.tool-btn svg {
  width: 18px; height: 18px;
  stroke: #18130f;
}

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}

.mobile-toggle { display: none; }
.mobile-nav { display: none; }

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero { padding: 56px 0 40px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 52px;
  align-items: center;
}

/* Copy */
.eyebrow, .kicker {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-copy h1,
.page-hero h1,
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.015em;
  color: #15120f;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(52px, 6.4vw, 92px);
  line-height: .93;
  max-width: 12ch;
}

.hero-copy p {
  font-size: 15px;
  line-height: 1.86;
  color: #68604f;  /* Slightly warmer than pure muted */
  max-width: 48ch;
}

.hero-copy { padding-right: 8px; }

/* CTA */
.hero-actions, .modal-actions, .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 34px;
}

/* Meta stats */

.highlight {
  color: #c8a96a;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #9f8251 0%, #f7e4b8 20%, #c8a96a 42%, #fff4db 50%, #c8a96a 58%, #9f8251 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cosmoskinShine 4.2s ease-in-out infinite;
}

@keyframes cosmoskinShine {
  0%, 100% { background-position: 120% 50%; }
  50% { background-position: -20% 50%; }
}
.hero-meta { display: grid; gap: 12px; margin-top: 24px; }

.hero-meta div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-meta strong {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #18130f;
  margin-bottom: 4px;
}

.hero-meta span { font-size: 12.5px; color: #7a6e62; }

/* Hero visual stage */
.hero-stage { min-height: 560px; }

.hero-shelf {
  position: relative;
  height: 100%;
  padding: 28px;
  border-radius: 38px;
  background: linear-gradient(160deg, #f2ebe2 0%, #e8ddd1 50%, #ded0c3 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
}

.hero-editorial {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 28px;
  min-height: 560px;
}

/* Hero clean shelf (bottle variant) */
.hero-shelf-clean {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 40px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.75) 0 10%, transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(255,255,255,.48) 0 8%, transparent 30%),
    linear-gradient(160deg, #f3ede6 0%, #e9dfd6 52%, #ddd0c4 100%);
  border-radius: 40px;
  box-shadow: 0 32px 100px rgba(19, 14, 10, .10);
  border: 1px solid rgba(255, 255, 255, .72);
}

.hero-shelf-clean::before,
.hero-shelf-clean::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
}

.hero-shelf-clean::before {
  width: 220px;
  height: 220px;
  top: -72px;
  right: -58px;
  background: radial-gradient(circle, rgba(236, 221, 201, .55) 0%, rgba(236, 221, 201, 0) 70%);
}

.hero-shelf-clean::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -88px;
  background: radial-gradient(circle, rgba(220, 201, 180, .48) 0%, rgba(220, 201, 180, 0) 72%);
}

.hero-product-scene {
  position: relative;
  width: min(100%, 520px);
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-product-scene::before {
  content: '';
  position: absolute;
  inset: 12% 14% 10%;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.16));
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: -1;
}

.hero-product-glow {
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
  width: 72%;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(60, 43, 24, .18) 0%, rgba(60, 43, 24, 0) 72%);
  filter: blur(4px);
  opacity: .8;
}

.hero-bottle-badge {
  position: absolute;
  z-index: 3;
  max-width: 180px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 252, 247, .82);
  border: 1px solid rgba(220, 202, 179, .72);
  box-shadow: 0 16px 40px rgba(19, 14, 10, .08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-bottle-badge span {
  display: block;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #756759;
  margin-bottom: 5px;
}

.hero-bottle-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.04;
  font-weight: 500;
  color: #16120e;
}

.hero-bottle-badge-left {
  top: 72px;
  left: 10px;
  animation: badgeDriftLeft 5.2s ease-in-out infinite;
}

.hero-bottle-badge-right {
  right: 2px;
  bottom: 116px;
  animation: badgeDriftRight 5.2s ease-in-out infinite .7s;
}

@keyframes badgeDriftLeft {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes badgeDriftRight {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-product-image-wrap {
  position: relative;
  width: min(100%, 360px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroBottleFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(19, 14, 10, .14));
}

@keyframes heroBottleFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-product-image {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-product-image-wrap::after {
  content: '';
  position: absolute;
  top: 2%;
  left: -14%;
  width: 36%;
  height: 96%;
  transform: rotate(12deg) translateX(-140%);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.16) 38%, rgba(255,255,255,.72) 50%, rgba(255,255,255,.16) 62%, rgba(255,255,255,0) 100%);
  filter: blur(2px);
  mix-blend-mode: screen;
  animation: heroBottleSweep 5.6s ease-in-out infinite;
}

@keyframes heroBottleSweep {
  0%, 18% { transform: rotate(12deg) translateX(-160%); opacity: 0; }
  26% { opacity: .95; }
  44% { transform: rotate(12deg) translateX(320%); opacity: .88; }
  45%,100% { opacity: 0; }
}

.hero-product-copy {
  position: absolute;
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
  text-align: center;
  width: min(100%, 360px);
  z-index: 2;
  pointer-events: none;
}

.hero-product-copy .hero-brand {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: .22em;
  color: rgba(31, 24, 18, .24);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
  position: relative;
  overflow: hidden;
}

.hero-product-copy .hero-brand::after {
  content: '';
  position: absolute;
  top: 0;
  left: -38%;
  width: 28%;
  height: 100%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.9), rgba(255,255,255,0));
  opacity: .7;
  animation: heroBrandSweep 4.8s ease-in-out infinite .8s;
}

@keyframes heroBrandSweep {
  0%, 20% { left: -38%; opacity: 0; }
  28% { opacity: .95; }
  52% { left: 116%; opacity: .85; }
  53%, 100% { opacity: 0; }
}

.hero-product-copy p {
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #756759;
}

.hero-shelf-clean .hero-editorial-clean,
.serum-bottle-wrap,
.bottle-badge,
.floating-card { display: none; }

/* Floating cards */
.floating-card { display: none; }

/* ============================================================
   8. ANIMATED SERUM BOTTLE
   ============================================================ */
.serum-bottle-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 60px;
  animation: bottleFloat 4.5s ease-in-out infinite;
  filter: drop-shadow(0 28px 44px rgba(19, 14, 10, .15));
}

@keyframes bottleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-13px) rotate(.5deg); }
}

.serum-bottle-wrap::after {
  content: '';
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 16px;
  background: radial-gradient(ellipse, rgba(19,14,10,.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadowPulse 4.5s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .7; }
  50%       { transform: translateX(-50%) scale(.72); opacity: .32; }
}

/* Ingredient badges */
.bottle-badge {
  position: absolute;
  z-index: 4;
  max-width: 140px;
  padding: 10px 14px;
  border-radius: 13px;
  background: rgba(255, 253, 250, .94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(228, 211, 188, .7);
  box-shadow: 0 8px 24px rgba(19, 14, 10, .08);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5a4f43;
  font-weight: 600;
  white-space: nowrap;
}

.bottle-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #16120e;
  margin-bottom: 2px;
}

.bottle-badge-left {
  left: 18px; top: 50%;
  transform: translateY(-60%);
  animation: badgeFloat 4.5s ease-in-out infinite .5s;
}

.bottle-badge-right {
  right: 18px; top: 50%;
  transform: translateY(-20%);
  animation: badgeFloat 4.5s ease-in-out infinite 1.2s;
}

.bottle-badge-bottom {
  bottom: 52px; left: 50%;
  transform: translateX(-50%);
  animation: badgeFloatCenter 4.5s ease-in-out infinite .8s;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) var(--badge-offset, translateY(-60%)); }
}
/* Simpler individual overrides */
.bottle-badge-left  { animation-name: badgeFloatLeft; }
.bottle-badge-right { animation-name: badgeFloatRight; }

@keyframes badgeFloatLeft {
  0%, 100% { transform: translateY(-60%); }
  50%       { transform: translateY(calc(-60% - 6px)); }
}
@keyframes badgeFloatRight {
  0%, 100% { transform: translateY(-20%); }
  50%       { transform: translateY(calc(-20% - 6px)); }
}
@keyframes badgeFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================================
   9. BUTTONS — Unified Premium System
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--text);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition:
    transform .22s var(--ease-out),
    background .22s ease,
    color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary */
.btn-primary {
  background: #18130f;
  color: #fff;
  border-color: #18130f;
}

.btn-primary:hover {
  background: #2a2018;
  border-color: #2a2018;
  box-shadow: 0 6px 20px rgba(18, 13, 8, .22);
}

/* Secondary */
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  background: rgba(22, 18, 14, .04);
  border-color: rgba(22, 18, 14, .25);
}

/* Drawer / modal buttons */
.drawer .btn, .modal .btn { min-height: 46px; }

/* ============================================================
   10. SECTIONS & SECTION HEADS
   ============================================================ */
.section { padding: 60px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  margin: 0 0 4px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: .94;
}

.section-head p {
  max-width: 480px;
  margin: 0;
  font-size: 14px;
  line-height: 1.76;
  color: var(--muted);
}

/* ============================================================
   11. PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition:
    transform .3s var(--ease-out),
    box-shadow .3s ease,
    border-color .3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(176, 138, 94, .22);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(155deg, #f5f0ea, #ece5da);
  padding: 18px;
  display: grid;
  place-items: center;
}

.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
  padding: 8px;
}

/* Subtle inner highlight */
.product-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
  pointer-events: none;
}

.badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4a3f35;
  border: 1px solid var(--line);
}

.product-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.brandline {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.product-body p {
  font-size: 12.5px;
  line-height: 1.68;
  color: #7a6e62;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f2ece4;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #625a54;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.price {
  font-family: var(--serif);
  font-size: 26px !important;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.01em;
}

.price-note {
  font-size: 10px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9a8e82;
  margin-top: 3px;
}

.meta-note {
  font-size: 11.5px;
  color: #9a8e82;
  margin-top: -2px;
  font-weight: 400;
}

/* Brand-specific card backgrounds */
.product-media { background: linear-gradient(155deg, #f5f0ea, #ece5da); }
.product-card[data-brand="Beauty of Joseon"] .product-media,
article.product-card:has([data-brand="Beauty of Joseon"]) .product-media {
  background: linear-gradient(160deg, #f8f2ea, #ede3d6);
}

/* ============================================================
   12. COLLECTION CARDS
   ============================================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.collection-card {
  padding: 22px 24px 26px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}

.collection-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(176, 138, 94, .3);
}

.collection-card::before {
  content: '';
  position: absolute;
  right: -28px; top: -36px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .38);
  pointer-events: none;
}

.collection-card span {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}

.collection-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--text);
}

.collection-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
   13. BRAND TILES
   ============================================================ */
.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-tile {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s ease, border-color .3s ease;
}

.brand-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(176, 138, 94, .22);
}

.brand-tile::before {
  content: '';
  position: absolute;
  top: -26px; right: -26px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(232, 217, 192, .18);
  pointer-events: none;
}

.brand-tile strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: .10em;
  display: block;
}

.brand-tile p {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--muted);
  margin-bottom: 0;
}

/* ============================================================
   14. TRUST STRIP
   ============================================================ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(251, 248, 244, .94) 0%, rgba(246, 240, 233, .92) 100%);
  border-top: 1px solid rgba(32, 27, 23, .05);
  border-bottom: 1px solid rgba(32, 27, 23, .05);
}

.trust-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px 24px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22px;
  width: 1px;
  height: calc(100% - 44px);
  background: rgba(32, 27, 23, .08);
}

.trust-item__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item__icon img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.trust-item__copy {
  min-width: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--text);
  margin-bottom: 3px;
}

.trust-item span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   15. PAGE HERO
   ============================================================ */

/* ============================================================
   15. PAGE HERO
   ============================================================ */
.page-hero { padding: 80px 0 24px; }

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1;
  max-width: 14ch;
}

.page-hero p {
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.82;
  color: #5e574f;
}

.page-hero .narrow { max-width: 920px; text-align: left; }

/* ============================================================
   16. ABOUT BAND
   ============================================================ */
.about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 253, 250, .76);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.about-panel {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 20px;
}

.about-panel h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.01em;
}

.about-panel p { font-size: 15px; line-height: 1.82; color: var(--muted); }

.about-points { padding: 20px; display: grid; gap: 0; }

.point {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.point:first-child { padding-top: 0; border-top: none; }

.point strong {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.point span { font-size: 13.5px; line-height: 1.76; color: var(--muted); }

/* ============================================================
   17. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 18px;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
}

.contact-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -.01em;
  margin: 0 0 14px;
}

.contact-card p { color: var(--muted); line-height: 1.82; }

.contact-actions { display: grid; gap: 12px; margin-top: 18px; }

.contact-line {
  padding: 18px 20px;
  border-radius: 16px;
  background: #fffcf8;
  border: 1px solid var(--line);
  display: grid;
  gap: 5px;
}

.contact-line small {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.contact-line strong {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.42;
  color: var(--text);
}

.contact-line strong a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 138, 94, .38);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}

.contact-line strong a:hover {
  color: #8a6e47;
  border-color: #8a6e47;
}

/* ============================================================
   18. FORMS
   ============================================================ */
.form-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid.compact { margin-top: 18px; }

.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: #fffdf9;
  color: var(--text);
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 138, 94, .1);
}

.field textarea { min-height: 140px; resize: vertical; }

.form-status { font-size: 13px; color: var(--muted); min-height: 20px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
button[disabled] { opacity: 0.72; cursor: wait; }

.form-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.checkline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  color: #5d5650;
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer { padding: 36px 28px 44px; }

.footer-grid {
  display: grid;
  max-width: var(--container);
  margin: 0 auto;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 20px;
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 253, 250, .78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-brandlock { margin-bottom: 10px; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #9a8e82;
  margin-bottom: 4px;
}

.footer-col a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  transition: color .2s ease;
}

.footer-col a:hover { color: var(--text); }

.footer-col a[href^="mailto"] {
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .01em;
}

.footer-col a[href^="mailto"]:hover { color: var(--text); }

.footer-col button {
  padding: 0; border: 0;
  background: none;
  text-align: left;
  font-size: 13px;
  color: var(--muted);
  transition: color .2s ease;
}

.footer-col button:hover { color: var(--text); }

.footer-copy {
  max-width: 360px;
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: #6f655d;
}

.footer-bottom {
  max-width: var(--container);
  margin: 16px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #74685d;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 0 6px;
}

/* ============================================================
   20. CART DRAWER & MODALS
   ============================================================ */
.backdrop {
  position: fixed; inset: 0;
  background: rgba(18, 13, 8, .28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s ease;
  z-index: 310;
}

.backdrop.show { opacity: 1; pointer-events: auto; }

.drawer, .modal { z-index: 320; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(460px, 100vw);
  height: 100dvh;
  padding: 26px;
  background: #fffdf9;
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 72px rgba(18, 13, 8, .13);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform .28s var(--ease-out);
}

.drawer.open { transform: translateX(0); }

.drawer-head, .modal-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.drawer-title, .modal-card h2 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -.01em;
}

.icon-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: #fffdfa;
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease;
}

.icon-close:hover {
  background: #f4ede4;
  border-color: rgba(22, 18, 14, .2);
}

.account-state, .summary-card { display: grid; gap: 8px; }
.account-mini { font-size: 12.5px; color: var(--muted); line-height: 1.72; }
.account-actions { display: grid; gap: 10px; }

.cart-items, #checkoutItems { display: grid; gap: 12px; overflow: auto; }

.cart-item, .checkout-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: #fffcf8;
  border: 1px solid var(--line);
  align-items: start;
}

.cart-item img, .checkout-item img {
  width: 72px; height: 84px;
  object-fit: cover;
  border-radius: 13px;
}

.qty {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.qty button {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.qty span {
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(35,27,20,.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78);
  color: #17120f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.qty button:hover { background: #f4ede4; border-color: rgba(35,27,20,.22); transform: translateY(-1px); }
.qty button:last-child { width: auto; min-width: auto; padding: 0 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }

.cart-summary, .summary-card {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.sum-row span, .sum-row strong { font-size: 13.5px; }

.sum-row.total {
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}

.sum-row.total span, .sum-row.total strong { font-size: 15px; }

.sum-row.total strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

/* Modal */
.modal {
  position: fixed; inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s ease;
}

.modal.show { opacity: 1; pointer-events: auto; }

.modal-card {
  width: min(640px, 100%);
  max-height: 90dvh;
  overflow: auto;
  padding: 26px;
  border-radius: 30px;
  background: #fffdf9;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Tabs */
.tab-row {
  display: flex;
  gap: 6px;
  background: #f2ebe2;
  padding: 5px;
  border-radius: 999px;
  margin: 16px 0 22px;
}

.tab-btn {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 11px 14px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6a6059;
  transition: background .22s ease, color .22s ease;
}

.tab-btn.active { background: var(--text); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.legal-copy { display: grid; gap: 12px; color: #665d56; line-height: 1.82; }

/* ============================================================
   21. COOKIE BANNER
   ============================================================ */
.cookie {
  position: fixed;
  left: 20px; right: 20px;
  bottom: 20px;
  z-index: 330;
  display: none;
  justify-content: center;
}

.cookie.show { display: flex; }

.cookie-card {
  width: min(1080px, 100%);
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 253, 250, .98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.cookie-card p { margin: 0; color: #655c55; line-height: 1.8; font-size: 13px; }

.stack {
  padding: 16px;
  border-radius: 18px;
  background: #fcf7f1;
  border: 1px solid var(--line);
}

.switch-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

/* ============================================================
   22. FILTER CHIPS
   ============================================================ */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }

.filter-chip {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 253, 250, .72);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6c6259;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.filter-chip:hover {
  background: rgba(255, 253, 250, .96);
  border-color: rgba(22, 18, 14, .2);
}

.filter-chip.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* ============================================================
   23. CHECKOUT LAYOUT
   ============================================================ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 18px;
  align-items: start;
}

.checkout-summary { position: sticky; top: 132px; }

.summary-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.summary-card h3 {
  display: block;
  margin-top: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

/* ============================================================
   24. AUTH / PASSWORD METER
   ============================================================ */
.password-wrap { position: relative; }
.password-wrap input { padding-right: 82px; }

.password-toggle {
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #6e675f;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 8px;
  transition: color .2s ease;
}

.password-toggle:hover { color: var(--text); }

.password-meter { margin-top: 12px; }

.password-meter-bar {
  width: 100%; height: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .08);
  overflow: hidden;
}

.password-meter-bar span {
  display: block;
  height: 100%; width: 0%;
  border-radius: 999px;
  transition: width .28s ease, background-color .28s ease;
  background: #d1d5db;
}

.password-meter-meta { margin-top: 8px; font-size: 12px; color: #6e675f; }

.password-rules {
  list-style: none;
  padding: 0; margin: 10px 0 0;
  display: grid; gap: 5px;
}

.password-rules li {
  font-size: 12px;
  color: #8b8177;
  position: relative;
  padding-left: 18px;
}

.password-rules li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .15);
  position: absolute;
  left: 0; top: 6px;
}

.password-rules li.is-valid { color: #1f7a4f; }
.password-rules li.is-valid::before { background: #1f7a4f; }

/* ============================================================
   25. REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   26. ORDER CARD
   ============================================================ */
.order-card ul { margin: 14px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }
.order-card li { display: flex; justify-content: space-between; gap: 12px; }

/* ============================================================
   27. UTILITIES
   ============================================================ */
.mega a span,
.product-body p,
.account-mini,
.footer-copy { overflow-wrap: anywhere; }

.product-body h3 { overflow-wrap: anywhere; }
.price-note { text-transform: none; }
.hero-copy p, .section-head p, .product-body p { max-width: 68ch; }

/* ============================================================
   28. RESPONSIVE — Tablet (≤1150px)
   ============================================================ */
@media (max-width: 1150px) {
  .nav { display: none; }
  .mobile-toggle { display: grid; }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 120px; left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 24px), 560px);
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 253, 250, .98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 325;
  }

  .mobile-nav.open { display: grid; gap: 8px; }

  body.modal-open .site-header { z-index: 340; }

  .mobile-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    background: #fffdfa;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    color: var(--text);
  }

  .hero-grid,
  .product-grid,
  .collections-grid,
  .brand-strip,
  .contact-layout,
  .checkout-layout,
  .about-band,
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .hero-stage { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2)::after { display: none; }

  /* Bottle */
  .bottle-badge { display: none; }
  .hero-shelf-clean { min-height: 460px; }
  .serum-bottle-wrap {
    margin: 24px 0 40px;
  }
  .serum-bottle-wrap svg { width: 140px; height: 365px; }
}

/* ============================================================
   29. RESPONSIVE — Mobile (≤760px)
   ============================================================ */
@media (max-width: 760px) {
  .announcement { height: 36px; }
  .header { top: 36px; height: 70px; padding: 0 18px; }
  .brand-word { font-size: 21px; letter-spacing: .14em; }
  .brand-logo { width: 36px; height: 36px; }

  .hero { padding-top: 32px; }
  .container { padding: 0 18px; }

  .hero-grid,
  .product-grid,
  .collections-grid,
  .brand-strip,
  .contact-layout,
  .checkout-layout,
  .about-band,
  .footer-grid,
  .form-grid,
  .cookie-card { grid-template-columns: 1fr; }

  .hero-copy h1 { font-size: 48px; max-width: none; }
  .page-hero h1, .section-head h2, .about-panel h2 { font-size: 40px; }

  .cookie { left: 10px; right: 10px; bottom: 10px; }
  .cookie-actions { justify-content: flex-start; }
  .drawer { width: 100vw; }

  .footer { padding: 28px 12px 36px; }
  .footer-bottom {
    padding: 0 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head { align-items: start; flex-direction: column; }
  .form-inline, .switch-row { flex-direction: column; align-items: flex-start; }

  .floating-card { position: static; margin-top: 14px; }
  .hero-shelf { display: grid; gap: 14px; }
  .hero-editorial { min-height: 380px; }

  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { min-height: auto; padding: 18px 18px; }
  .trust-item::after { display: none !important; }
  .trust-item:not(:last-child) { border-bottom: 1px solid rgba(32, 27, 23, .08); }
  .trust-item__icon { width: 30px; height: 30px; flex-basis: 30px; }
  .trust-item__icon img { width: 22px; height: 22px; }
  .trust-item strong { font-size: 13px; }
  .trust-item span { font-size: 11.5px; }

  /* Bottle mobile */
  .hero-shelf-clean { min-height: 360px; padding: 20px 12px 30px; border-radius: 28px; }
  .serum-bottle-wrap { margin: 16px 0 28px; }
  .serum-bottle-wrap svg { width: 110px; height: 285px; }
  .hero-editorial-clean { min-height: 320px; border-radius: 20px; }
}


/* ============================================================
   SALES READINESS ADDITIONS
   ============================================================ */
.reassurance-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, .82);
  box-shadow: var(--shadow-soft);
}

.reassurance-copy h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 54px);
  line-height: 1.02;
  font-weight: 400;
}

.reassurance-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--muted);
  max-width: 58ch;
}

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

.reassurance-card,
.legal-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-soft);
}

.reassurance-card strong,
.legal-card h2 {
  display: block;
  margin: 0 0 8px;
  color: var(--text);
}

.reassurance-card strong {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.reassurance-card p,
.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.72;
}

.legal-page {
  display: grid;
  gap: 16px;
}

.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.legal-card h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.shipping-progress {
  display: grid;
  gap: 8px;
  margin: 8px 0 16px;
}

.shipping-progress-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(184, 155, 114, .12);
  overflow: hidden;
}

.shipping-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(184,155,114,.55), rgba(184,155,114,.95));
  transition: width .28s ease;
}

.shipping-progress-text {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 980px) {
  .reassurance-band,
  .legal-layout { grid-template-columns: 1fr; }
  .reassurance-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .reassurance-grid,
  .legal-layout { grid-template-columns: 1fr; }
}


.favorite-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(26, 21, 16, .10);
  background: rgba(255, 253, 249, .94);
  color: #1a1510;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(26, 21, 16, .10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
  z-index: 3;
}

.favorite-btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 16px 36px rgba(26, 21, 16, .14);
  border-color: rgba(138, 59, 47, .18);
}

.favorite-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(138, 59, 47, .12), 0 14px 32px rgba(26, 21, 16, .10);
}

.favorite-btn.active {
  background: #fff1f0;
  border-color: rgba(138, 59, 47, .18);
  color: #8a3b2f;
}

.favorite-btn-icon {
  font-size: 20px;
  line-height: 1;
  pointer-events: none;
}


/* Footer premium dark theme */
.footer {
  background: #0d0d0d;
  color: #ede6dc;
}

.footer-grid {
  background: transparent;
  border: 1px solid rgba(237, 230, 220, .10);
  box-shadow: none;
}

.footer .brand-word,
.footer-copy,
.footer-col a,
.footer-col span,
.footer-bottom {
  color: #ede6dc;
}

.footer-copy {
  opacity: .78;
}

.footer-col h5 {
  color: #c8a96a;
}

.footer-col a,
.footer-col button {
  opacity: .82;
}

.footer-col a:hover,
.footer-col button:hover {
  opacity: 1;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(237, 230, 220, .10);
  padding-top: 16px;
}

.favorite-btn {
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-color: rgba(26, 21, 16, .12);
  box-shadow: 0 18px 36px rgba(26, 21, 16, .12);
  z-index: 10;
}

.favorite-btn.active {
  background: #fff1f1;
  border-color: rgba(181, 58, 58, .18);
  color: #c53b3b;
}

.favorite-btn-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.favorite-btn-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: transparent;
  transition: fill .18s ease, stroke .18s ease, transform .18s ease;
}

.favorite-btn.active .favorite-btn-icon svg {
  fill: currentColor;
  stroke: currentColor;
  transform: scale(1.03);
}


.product-media-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.favorite-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border-radius: 999px;
  border: 1px solid rgba(26, 21, 16, .12);
  background: rgba(255, 253, 249, .96);
  color: #1a1510;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(26, 21, 16, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  overflow: hidden;
  line-height: 1;
  z-index: 12;
}

.favorite-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
  fill: transparent;
  stroke-width: 1.9;
  vector-effect: non-scaling-stroke;
}

.favorite-btn path {
  stroke: currentColor;
  fill: transparent;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.favorite-btn.active,
.favorite-btn.is-active,
.favorite-btn[aria-pressed="true"] {
  background: #fff1f1;
  border-color: rgba(181, 58, 58, .18);
  color: #c53b3b;
}

.favorite-btn.active svg,
.favorite-btn.is-active svg,
.favorite-btn[aria-pressed="true"] svg,
.favorite-btn.active path,
.favorite-btn.is-active path,
.favorite-btn[aria-pressed="true"] path {
  fill: currentColor;
  stroke: currentColor;
}

@media (max-width: 980px) {
  .hero-product-scene {
    min-height: 460px;
  }

  .hero-product-image-wrap {
    width: min(100%, 300px);
  }

  .hero-bottle-badge {
    transform: scale(.94);
    transform-origin: center;
  }
}

@media (max-width: 760px) {
  .hero-shelf-clean {
    min-height: 430px;
    padding: 14px 10px 24px;
    border-radius: 28px;
  }

  .hero-product-scene {
    min-height: 390px;
    width: 100%;
  }

  .hero-product-scene::before {
    inset: 10% 8% 10%;
    border-radius: 24px;
  }

  .hero-product-image-wrap {
    width: min(100%, 240px);
  }

  .hero-product-copy {
    bottom: 34px;
    width: min(100%, 290px);
  }

  .hero-product-copy .hero-brand {
    font-size: 28px;
    letter-spacing: .16em;
  }

  .hero-product-copy p {
    font-size: 10px;
    letter-spacing: .12em;
  }

  .hero-bottle-badge {
    padding: 10px 12px;
    max-width: 142px;
  }

  .hero-bottle-badge strong {
    font-size: 16px;
  }

  .hero-bottle-badge span {
    font-size: 9px;
  }

  .hero-bottle-badge-left {
    top: 24px;
    left: 2px;
  }

  .hero-bottle-badge-right {
    right: -4px;
    bottom: 88px;
  }

  .favorite-btn {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .favorite-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* COSMOSKIN brand asset integration */
.footer .brand-logo {
  opacity: .96;
  filter: drop-shadow(0 0 14px rgba(237, 231, 222, 0.08));
}

.footer .footer-brandlock {
  align-items: center;
}


/* Editorial showcase */
.editorial-showcase {
  padding-top: 8px;
}

.editorial-shell {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #f4eee8 0%, #efe6dc 100%);
  border: 1px solid rgba(221, 207, 192, .72);
  box-shadow: 0 28px 70px rgba(19, 14, 10, .08);
}

.editorial-link {
  display: block;
}

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

.editorial-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
  pointer-events: none;
}


/* Hero redesign 2026-04-14 */
.hero-grid{align-items:center;}
.hero-copy h1{max-width:12ch;}
.hero-meta-refined{grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
.hero-meta-refined div{min-height:96px;}
.hero-stage{min-height:640px;display:flex;align-items:center;}
.hero-showcase{position:relative;width:100%;display:flex;justify-content:center;align-items:center;}
.hero-showcase-card{position:relative;width:min(100%,620px);padding:28px;border-radius:42px;background:linear-gradient(160deg,#f3ede6 0%,#e8ddd1 48%,#ded0c4 100%);box-shadow:0 34px 100px rgba(19,14,10,.12);border:1px solid rgba(255,255,255,.76);overflow:hidden;}
.hero-showcase-card::before{content:'';position:absolute;inset:-12% auto auto -8%;width:240px;height:240px;border-radius:999px;background:radial-gradient(circle,rgba(255,255,255,.74) 0%,rgba(255,255,255,0) 70%);pointer-events:none;}
.hero-showcase-card::after{content:'';position:absolute;right:-72px;bottom:-88px;width:280px;height:280px;border-radius:999px;background:radial-gradient(circle,rgba(220,201,180,.42) 0%,rgba(220,201,180,0) 72%);pointer-events:none;}
.hero-showcase-image{display:block;width:100%;height:auto;border-radius:28px;position:relative;z-index:1;box-shadow:0 24px 50px rgba(19,14,10,.08);}
.hero-chip{position:absolute;z-index:2;display:inline-flex;align-items:center;justify-content:center;padding:10px 16px;border-radius:999px;background:rgba(255,252,247,.88);border:1px solid rgba(220,202,179,.72);box-shadow:0 16px 40px rgba(19,14,10,.08);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:#6d5d4f;}
.hero-chip-top{top:22px;left:22px;}
.hero-showcase-note{position:absolute;z-index:2;padding:12px 14px;border-radius:18px;background:rgba(255,252,247,.84);border:1px solid rgba(220,202,179,.72);box-shadow:0 16px 40px rgba(19,14,10,.08);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);max-width:190px;}
.hero-showcase-note span{display:block;font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:#756759;margin-bottom:5px;}
.hero-showcase-note strong{display:block;font-family:var(--serif);font-size:22px;line-height:1.02;font-weight:500;color:#16120e;}
.hero-showcase-note-left{left:-18px;top:160px;}
.hero-showcase-note-center{left:50%;transform:translateX(-50%);bottom:18px;}
.hero-showcase-note-right{right:-18px;top:188px;}
@media (max-width:1100px){.hero-meta-refined{grid-template-columns:1fr;}.hero-stage{min-height:auto;}.hero-showcase-card{width:min(100%,560px);} .hero-showcase-note-left{left:8px;} .hero-showcase-note-right{right:8px;}}
@media (max-width:768px){.hero-copy h1{max-width:none;} .hero-showcase-card{padding:18px;border-radius:28px;} .hero-chip-top{top:14px;left:14px;font-size:10px;padding:8px 12px;} .hero-showcase-note{max-width:150px;padding:10px 12px;border-radius:14px;} .hero-showcase-note strong{font-size:16px;} .hero-showcase-note span{font-size:9px;} .hero-showcase-note-left{left:6px;top:118px;} .hero-showcase-note-right{right:6px;top:142px;} .hero-showcase-note-center{bottom:10px;} }
@media (max-width:560px){.hero-showcase-note{display:none;} .hero-meta-refined div{min-height:auto;}}


/* Hero motion refinement 2026-04-14 */
.hero-stage[data-hero-parallax]{position:relative;isolation:isolate;overflow:visible;}
.hero-atmosphere{position:absolute;inset:-48px -36px -36px;pointer-events:none;z-index:0;overflow:hidden;border-radius:56px;}
.hero-cloud,.hero-light-orb{position:absolute;display:block;will-change:transform,opacity;transition:transform .18s linear;}
.hero-cloud{filter:blur(10px);opacity:.88;}
.hero-cloud-back{left:-4%;right:8%;bottom:5%;height:42%;background:
  radial-gradient(42% 58% at 10% 85%, rgba(255,251,246,.96) 0 42%, rgba(255,251,246,0) 68%),
  radial-gradient(32% 50% at 28% 72%, rgba(255,249,244,.95) 0 46%, rgba(255,249,244,0) 70%),
  radial-gradient(34% 48% at 47% 78%, rgba(250,243,236,.9) 0 44%, rgba(250,243,236,0) 72%),
  radial-gradient(30% 42% at 70% 70%, rgba(255,250,245,.88) 0 43%, rgba(255,250,245,0) 72%),
  radial-gradient(28% 40% at 88% 82%, rgba(248,239,232,.82) 0 40%, rgba(248,239,232,0) 72%);
  transform:translate3d(0,var(--hero-cloud-back-y,0px),0) scale(1.02);}
.hero-cloud-front{left:6%;right:-6%;bottom:-3%;height:34%;background:
  radial-gradient(34% 56% at 20% 82%, rgba(255,252,247,.94) 0 44%, rgba(255,252,247,0) 72%),
  radial-gradient(26% 42% at 39% 74%, rgba(251,243,236,.92) 0 42%, rgba(251,243,236,0) 72%),
  radial-gradient(28% 42% at 61% 76%, rgba(255,251,247,.9) 0 44%, rgba(255,251,247,0) 72%),
  radial-gradient(32% 46% at 82% 78%, rgba(248,239,232,.84) 0 42%, rgba(248,239,232,0) 72%);
  transform:translate3d(0,var(--hero-cloud-front-y,0px),0) scale(1.03);filter:blur(12px);opacity:.95;}
.hero-light-orb{width:340px;height:340px;right:-32px;top:36px;border-radius:50%;background:radial-gradient(circle, rgba(255,255,255,.82) 0, rgba(255,248,240,.46) 38%, rgba(255,248,240,0) 74%);mix-blend-mode:screen;opacity:.8;transform:translate3d(var(--hero-orb-x,0px),var(--hero-orb-y,0px),0);}
.hero-showcase{position:relative;z-index:1;transform:translate3d(0,var(--hero-showcase-y,0px),0);will-change:transform;}
.hero-showcase-card{transform:translate3d(var(--hero-card-x,0px),var(--hero-card-y,0px),0) rotate(var(--hero-card-rotate,0deg));will-change:transform,box-shadow;transition:box-shadow .25s ease;}
.hero-showcase-card::before{opacity:.9;}
.hero-showcase-image{transform:translate3d(var(--hero-product-x,0px),var(--hero-product-y,0px),0) scale(var(--hero-product-scale,1));will-change:transform;}
.hero-showcase-note,.hero-chip{will-change:transform;}
.hero-showcase-note-left{transform:translate3d(var(--hero-note-left-x,0px),var(--hero-note-left-y,0px),0);}
.hero-showcase-note-center{transform:translateX(-50%) translate3d(0,var(--hero-note-center-y,0px),0);}
.hero-showcase-note-right{transform:translate3d(var(--hero-note-right-x,0px),var(--hero-note-right-y,0px),0);}
@media (prefers-reduced-motion: reduce){
  .hero-atmosphere,.hero-showcase,.hero-showcase-card,.hero-showcase-image,.hero-showcase-note,.hero-chip{transform:none !important;transition:none !important;}
}
@media (max-width:768px){
  .hero-atmosphere{inset:-28px -14px -14px;border-radius:36px;}
  .hero-light-orb{width:220px;height:220px;right:-10px;top:28px;opacity:.6;}
}


/* ============================================================
   APPLE HERO — Framed product visual, synced sweep, premium motion
   ============================================================ */

.hero-apple {
  position: relative;
  min-height: calc(100vh - 118px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 16%, rgba(255,255,255,.72) 0%, rgba(255,255,255,0) 24%),
    linear-gradient(180deg, #f6f1ea 0%, #f2ece5 58%, #eee7de 100%);
}

.hero-apple::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246,241,234,.96) 0%, rgba(246,241,234,.9) 34%, rgba(246,241,234,.5) 52%, rgba(246,241,234,0) 72%);
  z-index: -1;
  pointer-events: none;
}

.hero-apple::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 6%;
  width: min(26vw, 340px);
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(110, 86, 55, .16) 0%, rgba(110, 86, 55, 0) 72%);
  filter: blur(14px);
  opacity: .45;
  z-index: 0;
  pointer-events: none;
}

.hero-apple__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-apple__ambient::before,
.hero-apple__ambient::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.hero-apple__ambient::before {
  width: min(26vw, 340px);
  height: min(26vw, 340px);
  right: 16%;
  top: 10%;
  background: radial-gradient(circle, rgba(255,255,255,.65) 0%, rgba(255,255,255,.08) 42%, rgba(255,255,255,0) 72%);
}

.hero-apple__ambient::after {
  width: min(18vw, 240px);
  height: min(18vw, 240px);
  right: 5%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(224,210,194,.54) 0%, rgba(224,210,194,0) 72%);
}

.hero-apple__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, .98fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding-top: 42px;
  padding-bottom: 42px;
}

.hero-apple__copy {
  max-width: 760px;
  padding-right: clamp(8px, 2vw, 18px);
}

.hero-apple__eyebrow {
  margin: 0 0 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #b18a56;
}

.hero-apple__copy h1 {
  margin: 0;
  font-family: "Didot", "Bodoni MT", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(58px, 6.2vw, 94px);
  line-height: .92;
  letter-spacing: -.05em;
  color: #13100d;
  text-wrap: balance;
}

.hero-apple__word {
  position: relative;
  display: inline-block;
}

.hero-apple__word--accent {
  color: #b08a5e;
  background: linear-gradient(90deg, #9e7d48 0%, #f0dfbf 18%, #b08a5e 40%, #f9eed8 50%, #b08a5e 63%, #9e7d48 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroAccentShine 6.2s ease-in-out infinite;
}

.hero-apple__sub {
  margin: 22px 0 0;
  max-width: 38ch;
  font-family: var(--sans);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.72;
  color: #6e6257;
}

.hero-apple__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-apple__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
  padding-top: 26px;
}

.hero-apple__benefits article {
  padding-top: 22px;
  border-top: 1px solid rgba(28, 20, 14, .10);
}

.hero-apple__benefits h3 {
  margin: 0 0 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #17120e;
}

.hero-apple__benefits p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #74695f;
}

.hero-apple__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 680px; /* FIX: was 760px, too tall on most screens */
  padding: 20px 4px; /* FIX: breathing room so chips aren't edge-cut */
}

.hero-apple__visual-inner {
  position: relative;
  width: min(100%, 580px);
  aspect-ratio: 0.82 / 1;
  border-radius: 38px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.56) 0%, rgba(255,255,255,.18) 100%),
    linear-gradient(165deg, #ece2d5 0%, #e7ddcf 48%, #ddd1c2 100%);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 36px 110px rgba(21, 15, 11, .14);
  overflow: visible; /* ← chips need this */
}

.hero-apple__visual-inner::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.45);
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.48);
  pointer-events: none;
}

.hero-apple__visual-inner::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -26%;
  width: 18%;
  height: 124%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.16) 28%, rgba(255,255,255,.85) 50%, rgba(255,255,255,.18) 72%, rgba(255,255,255,0) 100%);
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(1.5px);
  animation: heroFrameSweep 6.2s cubic-bezier(.22, .61, .36, 1) infinite;
  pointer-events: none;
  z-index: 4;
}

.hero-apple__frame-glow {
  position: absolute;
  left: 50%;
  bottom: 9%;
  width: 42%;
  height: 14%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(255,255,255,.56) 0%, rgba(255,255,255,.12) 38%, rgba(255,255,255,0) 72%);
  filter: blur(16px);
  opacity: .76;
  z-index: 1;
}

.hero-apple__product-stage {
  position: relative;
  height: 100%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 38% 22%, rgba(255,255,255,.58) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, #f0e7de 0%, #eee5dc 100%);
  overflow: visible; /* FIX: was hidden — clipped chip labels */
  padding: 14px 20px 20px; /* FIX: reduced so image fills stage */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* FIX: cover fills stage edge-to-edge */
  object-position: center 20%; /* FIX: frame top portion for product hero */
  border-radius: 20px;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 18px 36px rgba(20, 14, 10, .10));
  animation: heroBottleFloat 6.2s ease-in-out infinite;
  z-index: 1;
}

.hero-chip {
  position: absolute;
  z-index: 10;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(252,248,243,.97);
  border: 1px solid rgba(218, 200, 178, .78);
  box-shadow:
    0 6px 18px rgba(28, 20, 14, .07),
    0 2px 6px rgba(28, 20, 14, .04),
    inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #1a1511;
}

.hero-chip strong {
  font-family: "Didot", "Bodoni MT", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(14px, 1.15vw, 20px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .01em;
}

.hero-chip__eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a08657;
}

.hero-chip--top {
  top: 22px;
  left: 28px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  z-index: 10;
}

.hero-chip--left {
  top: 31%;
  left: 28px;
  min-width: 0;
  max-width: 210px;
  z-index: 10;
  transform: translateY(-100%);
  animation: heroChipDriftLeft 6s ease-in-out infinite;
}

.hero-chip--right {
  top: 31%;
  right: 28px;
  min-width: 0;
  max-width: 220px;
  z-index: 10;
  transform: translateY(-100%);
  animation: heroChipDriftRight 6s ease-in-out infinite .6s;
}

.hero-chip--bottom {
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  min-width: 0;
  max-width: 220px;
  z-index: 10;
  text-align: center;
  animation: heroChipDriftBottom 6s ease-in-out infinite 1.1s;
}

.hero-chip--bottom strong {
  white-space: nowrap;
}

@keyframes heroBottleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes heroChipDriftLeft {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

@keyframes heroChipDriftRight {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(5px); }
}

@keyframes heroChipDriftBottom {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-4px); }
}


@keyframes heroAccentShine {
  0%, 100% { background-position: 120% 50%; }
  50% { background-position: -20% 50%; }
}

@keyframes heroFrameSweep {
  0%, 14% { transform: skewX(-18deg) translateX(0); opacity: 0; }
  24% { opacity: .92; }
  50% { transform: skewX(-18deg) translateX(620%); opacity: .62; }
  51%, 100% { opacity: 0; }
}

@media (max-width: 1279px) {
  .hero-apple__inner {
    grid-template-columns: minmax(0, .96fr) minmax(440px, 1.04fr);
  }

  .hero-apple__copy h1 {
    font-size: clamp(52px, 5.6vw, 82px);
  }

  .hero-chip--left {
    left: 14px;   /* FIX: keep inside frame at 1279px */
  }

  .hero-chip--right {
    right: 14px;  /* FIX: keep inside frame at 1279px */
  }

  .hero-chip--bottom {
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .hero-apple {
    min-height: auto;
    padding-top: 10px;
  }

  .hero-apple::before {
    background: linear-gradient(180deg, rgba(246,241,234,.94) 0%, rgba(246,241,234,.72) 34%, rgba(246,241,234,.22) 58%, rgba(246,241,234,0) 82%);
  }

  .hero-apple__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 52px;
    padding-bottom: 44px;
  }

  .hero-apple__copy {
    max-width: 860px;
    padding-right: 0;
  }

  .hero-apple__visual {
    min-height: auto;
  }

  .hero-apple__visual-inner {
    width: min(100%, 700px);
  }
}

@media (max-width: 767px) {
  .hero-apple {
    padding-bottom: 8px;
  }

  .hero-apple__inner {
    gap: 26px;
    padding-top: 46px;
    padding-bottom: 30px;
  }

  .hero-apple__copy h1 {
    font-size: clamp(42px, 12vw, 62px);
    line-height: .95;
  }

  .hero-apple__sub {
    font-size: 15px;
    max-width: 30ch;
  }

  .hero-apple__actions {
    margin-top: 26px;
  }

  .hero-apple__benefits {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
  }

  .hero-apple__visual-inner {
    border-radius: 28px;
    padding: 12px;
  }

  .hero-apple__visual-inner::before {
    inset: 10px;
    border-radius: 22px;
  }

  .hero-apple__product-stage {
    border-radius: 20px;
    padding: 18px;
  }

  .hero-product-img {
    border-radius: 16px;
  }

  .hero-chip {
    padding: 9px 12px;
    border-radius: 15px;
  }

  .hero-chip strong {
    font-size: 14px;
  }

  .hero-chip__eyebrow,
  .hero-chip--top {
    font-size: 9px;
  }

  .hero-chip--top {
    left: 18px;
    padding: 10px 16px;
  }

  .hero-chip--left {
    top: 29%;
    left: 14px;
    max-width: 160px;
    transform: translateY(-100%);
  }

  .hero-chip--right {
    top: 29%;
    right: 14px;
    max-width: 164px;
    transform: translateY(-100%);
  }

  .hero-chip--bottom {
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    max-width: 168px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-product-img,
  .hero-apple__visual,
  .hero-apple__visual::after,
  .hero-apple__word--accent,
  .hero-apple__word--accent::after,
  .hero-apple__drop,
  .hero-apple__drop::after {
    animation: none !important;
  }

  .hero-apple__visual {
    transform: translate3d(0, 0, 0) !important;
  }
}



/* === 2026-04-14 Collection PDP + Hero Chip Refinement === */
.collection-page .product-card {
  cursor: pointer;
}

.collection-detail-shell {
  margin-top: 26px;
  margin-bottom: 26px;
  padding: clamp(18px, 2.4vw, 32px);
  border-radius: 34px;
  border: 1px solid rgba(22, 18, 14, .08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.30)),
    linear-gradient(155deg, #f8f3ec 0%, #efe6dc 100%);
  box-shadow: 0 28px 90px rgba(18, 13, 8, .10);
}

.collection-detail-shell[hidden] {
  display: none !important;
}

.collection-detail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.collection-detail-back {
  border: 1px solid rgba(22, 18, 14, .10);
  background: rgba(255,255,255,.72);
  color: #17120e;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.collection-detail-back:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(18, 13, 8, .08);
}

.collection-detail-note {
  font-size: 12px;
  color: #7b7066;
  letter-spacing: .04em;
}

.collection-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
}

.collection-detail-media {
  position: relative;
  min-height: 100%;
  border-radius: 28px;
  padding: clamp(18px, 3vw, 30px);
  background:
    radial-gradient(circle at 30% 16%, rgba(255,255,255,.62) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(160deg, rgba(255,255,255,.68) 0%, rgba(255,255,255,.28) 100%),
    linear-gradient(155deg, #efe4d8 0%, #e7dbcf 48%, #ddd0c2 100%);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.48);
  overflow: hidden;
}

.collection-detail-media::after {
  content: "";
  position: absolute;
  top: -12%;
  left: -22%;
  width: 16%;
  height: 132%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.82), rgba(255,255,255,0));
  opacity: .55;
  mix-blend-mode: screen;
  animation: collectionDetailSweep 7.2s ease-in-out infinite;
  pointer-events: none;
}

.collection-detail-media img {
  display: block;
  width: min(100%, 540px);
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 30px 72px rgba(18, 13, 8, .10);
}

.collection-detail-floating {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(22, 18, 14, .08);
  box-shadow: 0 12px 32px rgba(18, 13, 8, .08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6e5c45;
}

.collection-detail-floating strong {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 500;
  color: #17120e;
  text-transform: none;
}

.collection-detail-floating--top {
  top: 18px;
  left: 18px;
}
.collection-detail-floating--bottom {
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
}

.collection-detail-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.collection-detail-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #b08a5e;
}

.collection-detail-title {
  margin: 0;
  font-family: "Didot", "Bodoni MT", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.04em;
  color: #13100d;
}

.collection-detail-summary {
  margin: 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.85;
  color: #685e56;
}

.collection-detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collection-detail-pill {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(22, 18, 14, .08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5f554c;
}

.collection-detail-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 8px;
  border-top: 1px solid rgba(22, 18, 14, .08);
  border-bottom: 1px solid rgba(22, 18, 14, .08);
}

.collection-detail-price-wrap .price {
  font-size: clamp(32px, 3vw, 46px) !important;
}

.collection-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.collection-detail-favorite {
  min-width: 56px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(22, 18, 14, .10);
  background: rgba(255,255,255,.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(18, 13, 8, .08);
}

.collection-detail-favorite.active,
.collection-detail-favorite[aria-pressed="true"] {
  background: #fff1f1;
  color: #c53b3b;
  border-color: rgba(181, 58, 58, .18);
}

.collection-detail-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.collection-detail-trust article {
  padding: 14px 14px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(22, 18, 14, .08);
}

.collection-detail-trust h4 {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #17120e;
}

.collection-detail-trust p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #70645a;
}

.collection-detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collection-detail-tab {
  border: 1px solid rgba(22, 18, 14, .08);
  background: rgba(255,255,255,.58);
  color: #17120e;
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.collection-detail-tab:hover {
  transform: translateY(-1px);
}

.collection-detail-tab.active {
  background: #181310;
  color: #fff;
  border-color: #181310;
}

.collection-detail-panels {
  border-radius: 24px;
  border: 1px solid rgba(22, 18, 14, .08);
  background: rgba(255,255,255,.68);
  padding: 18px;
  min-height: 210px;
}

.collection-detail-panel {
  display: none;
}

.collection-detail-panel.active {
  display: block;
}

.collection-detail-panel h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.collection-detail-panel p,
.collection-detail-panel li {
  font-size: 14px;
  line-height: 1.85;
  color: #6d6259;
}

.collection-detail-panel ul {
  margin: 0;
  padding-left: 18px;
}

.collection-detail-panel li + li {
  margin-top: 6px;
}

.collection-page.collection-has-detail .filter-row,
.collection-page.collection-has-detail .product-grid {
  display: none;
}

@keyframes collectionDetailSweep {
  0%, 16% { transform: skewX(-18deg) translateX(0); opacity: 0; }
  28% { opacity: .55; }
  50% { transform: skewX(-18deg) translateX(700%); opacity: .4; }
  51%, 100% { opacity: 0; }
}

.hero-chip {
  padding: 8px 12px;
  border-radius: 14px;
  gap: 2px;
  max-width: 172px;
}

.hero-chip strong {
  font-size: clamp(12px, .92vw, 16px);
  line-height: 1;
  white-space: nowrap;
}

.hero-chip__eyebrow {
  font-size: 8.5px;
  letter-spacing: .16em;
}

.hero-chip--left {
  top: 34%;
  left: 18px;
  max-width: 170px;
}

.hero-chip--right {
  top: 34%;
  right: 18px;
  max-width: 178px;
}

.hero-chip--bottom {
  bottom: 18px;
  max-width: 176px;
}

.hero-chip--top {
  padding: 9px 14px;
  font-size: 9px;
}

@media (max-width: 1180px) {
  .collection-detail-grid {
    grid-template-columns: 1fr;
  }

  .collection-detail-media img {
    width: min(100%, 440px);
  }

  .collection-detail-title {
    font-size: clamp(34px, 7vw, 48px);
  }

  .collection-detail-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .collection-detail-shell {
    border-radius: 24px;
    padding: 16px;
  }

  .collection-detail-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-detail-media {
    padding: 16px;
    border-radius: 22px;
  }

  .collection-detail-media img {
    width: min(100%, 320px);
    border-radius: 18px;
  }

  .collection-detail-floating {
    padding: 8px 10px;
    font-size: 8px;
  }

  .collection-detail-floating strong {
    font-size: 13px;
  }

  .collection-detail-floating--top {
    top: 12px;
    left: 12px;
  }

  .collection-detail-floating--bottom {
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .collection-detail-title {
    font-size: clamp(30px, 11vw, 42px);
  }

  .collection-detail-summary {
    font-size: 14px;
  }

  .collection-detail-price-row {
    align-items: flex-start;
  }

  .collection-detail-actions {
    width: 100%;
  }

  .collection-detail-actions .btn {
    flex: 1 1 0;
  }

  .collection-detail-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .collection-detail-tab {
    text-align: center;
  }

  .collection-detail-panels {
    border-radius: 18px;
    padding: 16px;
    min-height: auto;
  }

  .hero-chip {
    padding: 6px 10px;
    border-radius: 12px;
    max-width: 132px;
  }

  .hero-chip strong {
    font-size: 11px;
  }

  .hero-chip__eyebrow,
  .hero-chip--top {
    font-size: 7.5px;
    letter-spacing: .12em;
  }

  .hero-chip--top {
    left: 14px;
    padding: 8px 12px;
  }

  .hero-chip--left {
    top: 34%;
    left: 10px;
    max-width: 126px;
  }

  .hero-chip--right {
    top: 34%;
    right: 10px;
    max-width: 134px;
  }

  .hero-chip--bottom {
    bottom: 12px;
    max-width: 138px;
  }
}



/* === 2026-04-14 targeted fixes === */
.product-card { position: relative; }

.hero-chip strong {
  text-transform: none !important;
  white-space: nowrap;
}

.hero-chip--top {
  top: 20px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-chip--top::after {
  content: '✦';
  display: inline-block;
  font-size: 12px;
  color: #b9924d;
  text-shadow: 0 0 10px rgba(210, 172, 104, .35);
  animation: heroSparklePulse 2.2s ease-in-out infinite;
}

@keyframes heroSparklePulse {
  0%,100% { transform: scale(.9); opacity: .62; }
  50% { transform: scale(1.16); opacity: 1; }
}

.hero-chip--left {
  top: 24%;
  left: 24px;
  max-width: 188px;
}

.hero-chip--right {
  top: 24%;
  right: 24px;
  max-width: 194px;
}

.hero-chip--bottom {
  bottom: 38px;
  max-width: 190px;
}

.hero-chip--bottom strong {
  font-size: clamp(13px, 1.02vw, 18px);
}

@media (max-width: 768px) {
  .hero-chip {
    padding: 8px 11px;
  }
  .hero-chip strong {
    font-size: 13px;
  }
  .hero-chip--left {
    top: 24%;
    left: 10px;
    max-width: 138px;
  }
  .hero-chip--right {
    top: 24%;
    right: 10px;
    max-width: 144px;
  }
  .hero-chip--bottom {
    bottom: 30px;
    max-width: 148px;
  }
}

.brands-wrap { position: relative; }
.brands-trigger { position: relative; }
.brands-mega {
  min-width: min(760px, calc(100vw - 64px));
}

.favorite-btn {
  z-index: 8;
}


/* ============================================================
   Header search + expanded navigation
   ============================================================ */
.site-nav{min-width:0}
.nav-shell{display:flex;align-items:center;justify-content:flex-end;gap:24px;min-width:0}
.site-search-form{position:relative;flex:1 1 360px;max-width:390px}
.site-search{display:flex;align-items:center;gap:10px;height:46px;padding:0 10px 0 14px;border-radius:999px;border:1px solid rgba(26,21,16,.1);background:rgba(255,253,250,.92);box-shadow:0 10px 26px rgba(26,21,16,.05)}
.site-search-icon{display:inline-flex;align-items:center;justify-content:center;color:#6b6056}
.site-search-icon svg{width:17px;height:17px;stroke:currentColor}
.site-search-input{flex:1;min-width:0;border:0;background:transparent;font:500 13px/1.2 var(--sans);color:var(--text);padding:0;outline:none}
.site-search-input::placeholder{color:#93867a}
.site-search-clear{border:0;background:none;color:#6b6056;font:600 11px/1 var(--sans);letter-spacing:.12em;text-transform:uppercase;padding:0 4px;cursor:pointer;opacity:0;pointer-events:none;transition:opacity .2s ease,color .2s ease}
.site-search-clear.is-visible{opacity:1;pointer-events:auto}
.site-search-clear:hover{color:#18130f}
.site-search-results{position:absolute;top:calc(100% + 10px);left:0;right:0;display:grid;gap:6px;padding:12px;border-radius:22px;border:1px solid rgba(26,21,16,.09);background:rgba(255,253,250,.98);box-shadow:0 18px 48px rgba(26,21,16,.12);z-index:340}
.site-search-result,.site-search-empty{padding:12px 14px;border-radius:16px;border:1px solid rgba(26,21,16,.06);background:#fffdfa}
.site-search-result{display:grid;gap:4px;transition:border-color .2s ease,background .2s ease}
.site-search-result:hover{border-color:rgba(176,138,94,.24);background:#f8f1e8}
.site-search-result__type{font:600 10px/1 var(--sans);letter-spacing:.18em;text-transform:uppercase;color:#9a8e82}
.site-search-result strong{font-size:13px;font-weight:600;color:#1a1510}
.site-search-empty{font-size:12px;line-height:1.6;color:#6b6056}
.categories-wrap,.brands-wrap{position:relative}
.mega--categories{grid-template-columns:repeat(3,1fr);width:min(920px,calc(100vw - 48px))}
.nav{gap:28px;flex-shrink:0}
.nav > li > a, .linkish{font-size:10.5px;letter-spacing:.17em}
.header{max-width:calc(var(--container) + 64px)}

/* ============================================================
   Footer commerce details
   ============================================================ */
.footer-trustbar{max-width:var(--container);margin:16px auto 0;display:grid;grid-template-columns:1fr 1.15fr;gap:18px}
.footer-payment-block,.footer-security-block{padding:22px 24px;border-radius:26px;border:1px solid rgba(237,230,220,.1);background:rgba(255,255,255,.03)}
.footer-meta-label{display:block;margin-bottom:14px;font:600 10px/1 var(--sans);letter-spacing:.24em;text-transform:uppercase;color:#c8a96a}
.payment-logos{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.payment-logo{display:inline-flex;align-items:center;justify-content:center;min-width:76px;height:44px;padding:8px 12px;border-radius:14px;background:#fff;border:1px solid rgba(0,0,0,.05)}
.payment-logo svg{display:block;width:100%;height:100%}
.payment-logo--visa{min-width:84px}
.payment-logo--amex{min-width:88px}
.footer-badges{display:flex;flex-wrap:wrap;gap:10px}
.footer-badges span{display:inline-flex;align-items:center;min-height:36px;padding:0 14px;border-radius:999px;border:1px solid rgba(237,230,220,.12);background:rgba(255,255,255,.04);font-size:12px;color:#ede6dc}
.footer-meta-copy{margin:14px 0 0;font-size:13px;line-height:1.75;color:rgba(237,230,220,.76);max-width:64ch}

/* ============================================================
   Routine block refinement
   ============================================================ */
.home-routine__intro{gap:20px;margin-bottom:22px;align-items:stretch}
.home-routine__side{padding:20px 22px;border-radius:24px;background:rgba(255,255,255,.62);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
.home-routine__layout{gap:18px}
.home-routine__builder,.home-routine__result{padding:26px;border-radius:28px;background:linear-gradient(180deg,rgba(255,255,255,.88),rgba(244,238,231,.96));box-shadow:0 18px 44px rgba(31,23,15,.06)}
.home-routine__chip{padding:11px 15px}
.home-routine__result-head{padding-bottom:14px;border-bottom:1px solid rgba(38,27,17,.08)}
.home-routine__column{padding:18px;border-radius:20px;background:rgba(255,255,255,.78)}
.home-routine__bundle{padding:18px 20px;border-radius:20px;box-shadow:0 18px 42px rgba(26,21,16,.16)}

@media (max-width: 1280px){
  .site-search-form{max-width:320px}
  .nav{gap:22px}
}
@media (max-width: 1150px){
  .footer-trustbar{grid-template-columns:1fr}
  .site-search-form--mobile{max-width:none}
  .mobile-nav .site-search-form{margin-bottom:8px}
  .mobile-nav .site-search-results{position:static;left:auto;right:auto;top:auto;margin-top:10px;box-shadow:none}
}
@media (max-width: 760px){
  .footer-trustbar{padding:0 10px}
  .payment-logos{gap:8px}
  .payment-logo{min-width:72px;height:42px}
  .footer-payment-block,.footer-security-block{padding:18px 18px 20px;border-radius:22px}
}

/* ============================================================
   Phase 8 refinement overrides
   ============================================================ */
.header{
  height:74px;
  gap:18px;
  border-bottom:1px solid rgba(38,27,17,.08);
}
.nav-shell{
  justify-content:space-between;
  gap:18px;
}
.site-search-form{
  flex:1 1 420px;
  max-width:460px;
  margin:0;
}
.site-search{
  height:44px;
  padding:0 12px 0 14px;
  border-color:rgba(26,21,16,.09);
  box-shadow:0 8px 24px rgba(26,21,16,.045);
}
.site-search:focus-within{
  border-color:rgba(176,138,94,.32);
  box-shadow:0 12px 30px rgba(26,21,16,.08);
}
.site-search-clear{
  font-size:10px;
  letter-spacing:.16em;
}
.site-search-results{
  gap:8px;
  padding:12px;
}
.site-search-result{
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:12px;
  padding:12px 13px;
}
.site-search-result__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:46px;
  height:34px;
  padding:0 10px;
  border-radius:999px;
  background:linear-gradient(180deg,#f5ede4,#efe2d2);
  border:1px solid rgba(176,138,94,.18);
  font:600 9px/1 var(--sans);
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#7a6246;
}
.site-search-result__body{
  display:grid;
  gap:3px;
}
.site-search-result__meta{
  font-size:12px;
  color:#786c61;
  line-height:1.5;
}
.site-search-result__arrow{
  color:#9e8d7c;
  font-size:15px;
}
.site-search-results__all,
.site-search-empty__link{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  border-radius:16px;
  border:1px dashed rgba(176,138,94,.28);
  color:#4b4036;
  font:600 11px/1 var(--sans);
  letter-spacing:.14em;
  text-transform:uppercase;
  text-decoration:none;
  background:rgba(248,241,232,.72);
}
.site-search-empty{
  display:grid;
  gap:10px;
}
.site-search-empty strong{
  font-size:13px;
  color:#1a1510;
}
.site-search-empty span{
  display:block;
}
.mega--discovery{
  grid-template-columns:repeat(4,minmax(160px,1fr)) minmax(240px,.92fr);
  width:min(1180px,calc(100vw - 44px));
  gap:18px;
}
.categories-wrap.open .mega,
.brands-wrap.open .mega{
  opacity:1;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.mega--discovery > div:not(.mega-side){
  padding-right:4px;
}
.mega--discovery h4{
  margin-bottom:12px;
}
.mega--discovery a{
  min-height:0;
  padding:10px 0;
}
.mega-side--finder{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:linear-gradient(180deg,#f6efe7,#efe3d5);
  border:1px solid rgba(176,138,94,.14);
}
.mega-side__pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:14px 0 18px;
}
.mega-side__pills span{
  display:inline-flex;
  align-items:center;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(26,21,16,.07);
  font-size:11px;
  color:#4a3f35;
}
.payment-logo img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}
.payment-logo{
  padding:8px 14px;
}
.payment-logo--visa{min-width:96px}
.payment-logo--amex{min-width:102px}
@media (max-width:1280px){
  .mega--discovery{
    grid-template-columns:repeat(4,minmax(140px,1fr));
  }
  .mega-side--finder{
    grid-column:1/-1;
  }
}
@media (max-width:1150px){
  .header{height:72px}
  .site-search-form{max-width:none}
  .mobile-nav{
    top:112px;
  }
}
@media (max-width:760px){
  .header{padding:0 16px;gap:12px}
  .brand-word{font-size:20px;letter-spacing:.34em}
  .site-search{height:42px}
  .site-search-result{grid-template-columns:1fr auto}
  .site-search-result__badge{display:none}
}


/* Phase 8B fixes */
.site-search-results[hidden]{display:none !important}
.mega--discovery > div:not(.mega-side) a span{display:none}
.mega--discovery a{font-size:13px;font-weight:600;color:#2b221b;border-bottom:1px solid rgba(38,27,17,.05)}
.mega--discovery h4{font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:#564739;opacity:1;padding-bottom:10px;border-bottom:1px solid rgba(38,27,17,.08)}
.mega-side small{color:#7c6248;letter-spacing:.22em}
.mega-side strong{color:#241b15}
.mega-side p{color:#564b40}
.mega-side__pills span{background:#fff;border-color:rgba(138,95,73,.12);color:#3b3027;font-weight:600}
.mega-side--finder .btn{background:#8b5b4f;border-color:#8b5b4f;color:#fff;box-shadow:0 16px 34px rgba(139,91,79,.22)}
.mega-side--finder .btn:hover{background:#7b4d42;border-color:#7b4d42}
.site-search-form{margin-bottom:0}
.checkout-auth-gate{display:flex;justify-content:space-between;gap:20px;align-items:center;padding:20px 22px;margin-bottom:18px;border:1px solid rgba(38,27,17,.08);border-radius:24px;background:linear-gradient(180deg,#fcf8f3,#f4ede4)}
.checkout-auth-gate h3{margin:6px 0 8px;font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:500;color:#1a1510}
.checkout-auth-gate p{margin:0;color:#675b51;max-width:48ch}
.checkout-auth-gate__actions{display:flex;gap:10px;flex-wrap:wrap}
.saved-address-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
.saved-address-card{padding:16px;border-radius:18px;border:1px solid rgba(38,27,17,.08);background:#fff;cursor:pointer;transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease}
.saved-address-card:hover,.saved-address-card.is-active{border-color:rgba(139,91,79,.35);box-shadow:0 14px 28px rgba(26,21,16,.08);transform:translateY(-1px)}
.saved-address-card strong{display:block;font-size:13px;color:#1a1510;margin-bottom:6px}
.saved-address-card span{display:block;font-size:12px;line-height:1.6;color:#6d6156}
.checkout-method-grid{display:grid;grid-template-columns:1fr;gap:10px}
.checkout-method-card{display:grid;gap:6px;text-align:left;padding:14px 16px;border-radius:18px;border:1px solid rgba(38,27,17,.08);background:rgba(255,255,255,.8);color:#1a1510;transition:border-color .2s ease, background .2s ease, box-shadow .2s ease}
.checkout-method-card span{font-size:12px;color:#75695d}
.checkout-method-card:hover,.checkout-method-card.is-active{border-color:rgba(139,91,79,.28);background:#fbf6f0;box-shadow:0 12px 24px rgba(26,21,16,.06)}
@media (max-width:900px){.checkout-auth-gate{flex-direction:column;align-items:flex-start}}


/* ============================================================
   15. REFINEMENT PASS — Page-by-page polish without changing structure
   ============================================================ */
:root{
  --page-shell: rgba(255,253,250,.68);
  --glass-strong: rgba(255,255,255,.74);
  --glass-line: rgba(22,18,14,.06);
  --shadow-lift: 0 22px 58px rgba(18,13,8,.08);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 14%, rgba(255,255,255,.58), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(230,217,198,.28), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.12), transparent 28%);
  z-index:-1;
}

.section,
.page-hero,
.about-panel,
.contact-card,
.checkout-summary,
.collection-detail-shell,
.acc-panel,
.acc-avatar-card,
.acc-nav,
.order-item-card,
.addr-card,
.fav-card,
.routine-card,
.routine-summary-card,
.routine-stage,
.reminder-card{
  box-shadow: var(--shadow-lift);
}

.section{
  position:relative;
}
.section::before{
  content:"";
  position:absolute;
  inset:18px 22px;
  border-radius:calc(var(--radius) + 6px);
  border:1px solid rgba(255,255,255,.46);
  pointer-events:none;
  opacity:.5;
}

.header{
  margin-top:10px;
  border:1px solid rgba(255,255,255,.5);
  border-bottom-color: rgba(22,18,14,.06);
  border-radius:0 0 28px 28px;
  box-shadow: 0 18px 54px rgba(18,13,8,.06);
}

.nav-shell{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  width:100%;
}

.tool-btn{
  width:44px;
  height:44px;
  border:1px solid rgba(22,18,14,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,241,234,.94));
  box-shadow:0 12px 26px rgba(18,13,8,.08);
}
.tool-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(176,138,94,.24);
  box-shadow:0 16px 30px rgba(18,13,8,.10);
}

.site-search{
  height:50px;
  border-color: rgba(22,18,14,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,246,241,.94));
  box-shadow: 0 16px 34px rgba(18,13,8,.06);
}
.site-search:focus-within{
  border-color: rgba(176,138,94,.28);
  box-shadow: 0 18px 38px rgba(18,13,8,.09), 0 0 0 4px rgba(176,138,94,.08);
}
.site-search-results{
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-apple{
  padding-top: 46px;
}
.hero-apple__copy{
  max-width: 580px;
}
.hero-apple__sub{
  max-width: 58ch;
  color:#5f554c;
}
.hero-apple__benefits article,
.home-routine__footer,
.contact-card,
.collection-detail-floating,
.collection-detail-trust article{
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(248,242,236,.74));
  border: 1px solid rgba(22,18,14,.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-apple__visual-inner{
  box-shadow: 0 28px 90px rgba(18,13,8,.13);
}
.hero-chip{
  box-shadow: 0 16px 34px rgba(18,13,8,.10);
}

.section-head{
  margin-bottom: 30px;
}
.section-head h2,
.page-hero h1,
.collection-detail-title,
.acc-panel-head h2,
.order-empty h3,
.fav-empty h3,
.addr-modal h3{
  letter-spacing: -.02em;
}
.section-head p,
.account-mini,
.collection-detail-summary,
.contact-card p,
.routine-helper,
.reminder-card p{
  color:#6c6158;
}

.product-grid{
  gap: 24px;
}
.product-card,
.collection-page .product-card{
  border:1px solid rgba(22,18,14,.06);
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,245,239,.88));
  box-shadow:0 20px 52px rgba(18,13,8,.07);
}
.product-card:hover,
.collection-page .product-card:hover{
  transform: translateY(-4px);
  box-shadow:0 26px 62px rgba(18,13,8,.10);
  border-color: rgba(176,138,94,.18);
}
.product-media{
  background: linear-gradient(180deg, #f7f1ea 0%, #efe4d7 100%);
}
.product-body{
  padding: 22px 22px 20px;
}
.brandline,
.collection-detail-brand,
.fav-brand,
.prof-label,
.routine-label,
.reminder-kicker,
.kicker{
  letter-spacing:.2em;
}
.pill,
.collection-detail-pill,
.segment-pill{
  background: rgba(244,236,227,.9);
  border-color: rgba(176,138,94,.18);
}
.price,
.collection-detail-price-wrap .price,
.fav-price{
  letter-spacing: -.02em;
}
.price-row{
  align-items:end;
}
.btn{
  box-shadow: 0 12px 28px rgba(18,13,8,.08);
}
.btn-primary{
  background: linear-gradient(180deg, #1e1813 0%, #130f0c 100%);
}
.btn-secondary{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(247,241,234,.9));
}

.collection-detail-shell{
  background: linear-gradient(180deg, rgba(255,254,251,.94), rgba(246,239,231,.88));
  border:1px solid rgba(22,18,14,.06);
}
.collection-detail-media{
  background: linear-gradient(180deg, #f7f1ea 0%, #eee2d5 100%);
}
.collection-detail-tabs{
  gap:10px;
}
.collection-detail-tab{
  background: rgba(255,255,255,.68);
  border:1px solid rgba(22,18,14,.08);
}
.collection-detail-tab.active{
  box-shadow: 0 12px 30px rgba(18,13,8,.08);
}
.collection-detail-panel{
  background: rgba(255,255,255,.56);
  border:1px solid rgba(22,18,14,.06);
}

.contact-layout,
.checkout-layout{
  gap: 24px;
}
.contact-card,
.checkout-summary,
.drawer,
.modal-card{
  background: linear-gradient(180deg, rgba(255,254,251,.96), rgba(246,239,231,.92));
  border:1px solid rgba(22,18,14,.06);
}
.field input,
.field textarea,
.field select,
.prof-input,
.prof-select,
.reminder-select{
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,241,234,.95));
  border-color: rgba(22,18,14,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.field input:focus,
.field textarea:focus,
.field select:focus,
.prof-input:focus,
.prof-select:focus,
.reminder-select:focus{
  border-color: rgba(176,138,94,.42);
  box-shadow: 0 0 0 4px rgba(176,138,94,.08);
}

.drawer{
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.cart-item,
.checkout-item{
  border:1px solid rgba(22,18,14,.06);
  background: rgba(255,255,255,.62);
}

.about-points,
#ordersList{
  display:grid;
  gap:16px;
}
#ordersList{
  padding:0;
  background:none;
  border:none;
  box-shadow:none;
}
.order-item-card{
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,241,234,.88));
}
.order-item-head{
  background: linear-gradient(180deg, rgba(248,243,237,.98), rgba(241,232,221,.92));
}

.mobile-nav{
  border:1px solid rgba(22,18,14,.06);
  background:linear-gradient(180deg, rgba(255,254,251,.96), rgba(246,239,231,.94));
  box-shadow:0 20px 56px rgba(18,13,8,.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.mobile-nav a{
  border-radius:16px;
}
.mobile-nav a:hover{
  background: rgba(255,255,255,.7);
}

.footer{
  position:relative;
  overflow:hidden;
}
.footer::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(212,184,138,.08), transparent 36%);
  pointer-events:none;
}

@media (max-width: 960px){
  .header{
    margin-top:0;
    border-radius:0 0 24px 24px;
  }
  .section::before{
    inset:14px;
  }
}

@media (max-width: 640px){
  .product-body{
    padding:18px 18px 16px;
  }
  .hero-apple{
    padding-top: 28px;
  }
}


/* 27. SALES-READY CONTENT */
.facts-section .section-copy{max-width:820px}
.fact-card-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:20px}
.fact-card{padding:24px;border:1px solid rgba(90,74,58,.12);border-radius:24px;background:linear-gradient(180deg,rgba(255,252,248,.92),rgba(249,243,236,.88));box-shadow:0 18px 40px rgba(56,38,20,.06)}
.fact-card__eyebrow{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:#8a7a6c;margin-bottom:10px}
.fact-card h3{margin:0 0 10px;font-size:22px;line-height:1.2}
.fact-card p{margin:0 0 12px;color:#5f554d}
.fact-card ul{margin:0 0 14px 18px;padding:0;color:#4f463f}
.fact-card__foot{font-size:14px;color:#4f463f;border-top:1px solid rgba(90,74,58,.10);padding-top:12px}
.faq-section .faq-list{display:grid;gap:12px;margin-top:18px}
.faq-item{border:1px solid rgba(90,74,58,.12);border-radius:18px;background:rgba(255,252,248,.8);padding:0 18px}
.faq-item summary{cursor:pointer;list-style:none;padding:18px 0;font-weight:600;color:#2f2a25}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{margin:0 0 18px;color:#5f554d}
.checkout-trust-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;width:100%}
.checkout-trust-card{padding:16px;border-radius:18px;border:1px solid rgba(90,74,58,.12);background:rgba(255,252,248,.75);display:flex;flex-direction:column;gap:6px}
.checkout-trust-card strong{font-size:14px}
.checkout-trust-card span,.checkout-info-list li{color:#5f554d;font-size:14px}
.checkout-consent{display:grid;gap:12px}
.inline-link{appearance:none;border:none;background:none;padding:0;color:#3f342b;text-decoration:underline;cursor:pointer;font:inherit}
.checkout-info-list{margin:0;padding-left:18px;display:grid;gap:8px}
.info-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:20px}
.info-card{padding:22px;border-radius:24px;border:1px solid rgba(90,74,58,.12);background:rgba(255,252,248,.82);box-shadow:0 16px 36px rgba(56,38,20,.05)}
.info-card h3{margin:0 0 10px;font-size:20px}.info-card p{margin:0;color:#5f554d}
@media (max-width: 900px){.fact-card-grid,.info-grid,.checkout-trust-grid{grid-template-columns:1fr}.fact-card h3{font-size:20px}}


.pdp-section{padding-top:10px}
.pdp-detail-grid{display:grid;gap:18px}
.pdp-detail-card{background:linear-gradient(180deg,rgba(255,255,255,.88),rgba(248,242,236,.82));border:1px solid rgba(99,78,59,.12);border-radius:26px;padding:24px;box-shadow:0 22px 48px rgba(45,31,18,.07)}
.pdp-detail-card__head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;margin-bottom:16px}
.pdp-detail-card__head h3{margin:6px 0 0;font-size:clamp(24px,2.8vw,34px);line-height:1.08}
.pdp-detail-card__price{font-weight:700;font-size:20px;white-space:nowrap;color:#2a2119}
.pdp-spec-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-bottom:18px}
.pdp-spec-grid div{padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.72);border:1px solid rgba(99,78,59,.08)}
.pdp-spec-grid span,.field-help{display:block;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#8f7f70;margin-bottom:6px}
.pdp-spec-grid strong{font-size:14px;line-height:1.5;color:#2d241c}
.pdp-columns{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:16px}
.pdp-columns div{padding:18px;border-radius:20px;background:rgba(255,255,255,.68);border:1px solid rgba(99,78,59,.08)}
.pdp-columns h4{margin:0 0 12px;font-size:14px;letter-spacing:.08em;text-transform:uppercase;color:#6d5b4b}
.pdp-columns ul,.pdp-columns ol{margin:0;padding-left:18px;color:#40352b;display:grid;gap:8px}
.pdp-detail-note{padding:14px 16px;border-radius:18px;background:rgba(246,238,230,.94);border:1px solid rgba(99,78,59,.08);color:#4e4034;line-height:1.7}
.pdp-detail-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.field-help{margin-top:8px;text-transform:none;letter-spacing:0;font-size:12px}
@media (max-width: 900px){.pdp-spec-grid,.pdp-columns{grid-template-columns:1fr}.pdp-detail-card{padding:18px}.pdp-detail-card__head{flex-direction:column}.pdp-detail-card__price{font-size:18px}}


/* Phase 10 — mobile dock, rounded benefit cards, cleaner mobile nav */
.hero-apple__benefits article{
  position:relative;
  display:grid;
  gap:10px;
  padding:22px 20px 20px;
  border-radius:26px;
  border:1px solid rgba(38,27,17,.07);
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,240,233,.82));
  box-shadow:0 16px 36px rgba(26,21,16,.06);
}
.hero-apple__benefits article::before{
  content:"";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(243,233,221,.92));
  border:1px solid rgba(38,27,17,.08);
  box-shadow:0 12px 24px rgba(26,21,16,.06);
  font-size:19px;
  color:#b08a5e;
}
.hero-apple__benefits article:nth-child(1)::before{content:"✦";}
.hero-apple__benefits article:nth-child(2)::before{content:"◇";}
.hero-apple__benefits article:nth-child(3)::before{content:"✓";}
.hero-apple__benefits h3{margin:0;}
.hero-apple__benefits p{font-size:14px;line-height:1.72;}

@media (max-width: 760px){
  body{padding-bottom:calc(env(safe-area-inset-bottom, 0px) + 104px);}
  .header{
    height:74px;
    padding:0 16px;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
  }
  .header .site-nav{display:none;}
  .brand{min-width:0;}
  .brand-word{font-size:19px;letter-spacing:.28em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
  .header-tools{
    position:fixed;
    left:50%;
    bottom:calc(env(safe-area-inset-bottom, 0px) + 14px);
    transform:translateX(-50%);
    z-index:380;
    gap:12px;
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,252,248,.9);
    border:1px solid rgba(22,18,14,.06);
    box-shadow:0 20px 46px rgba(18,13,8,.14);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }
  .tool-btn{
    width:52px;
    height:52px;
    border-radius:18px;
  }
  .tool-btn svg{width:20px;height:20px;}
  .cart-count{top:4px;right:4px;min-width:17px;height:17px;font-size:9px;}
  .mobile-nav{
    top:auto;
    bottom:calc(env(safe-area-inset-bottom, 0px) + 88px);
    left:12px;
    right:12px;
    width:auto;
    transform:none;
    border-radius:28px;
    padding:14px;
  }
  .mobile-nav .site-search-form{display:none !important;}
  .mobile-nav.open{gap:10px;}
  .mobile-nav a{
    min-height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-size:12px;
    letter-spacing:.14em;
  }
  .hero-apple__actions{gap:12px;}
  .hero-apple__actions .btn{
    min-width:calc(50% - 6px);
    justify-content:center;
  }
  .hero-apple__benefits{
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:10px;
    margin-top:26px;
    padding-top:0;
  }
  .hero-apple__benefits article{
    padding:16px 14px;
    border-top:none;
    border-radius:24px;
    gap:8px;
    min-height:176px;
    align-content:start;
  }
  .hero-apple__benefits article::before{
    width:38px;
    height:38px;
    border-radius:14px;
    font-size:16px;
  }
  .hero-apple__benefits h3{font-size:11px;letter-spacing:.14em;line-height:1.4;}
  .hero-apple__benefits p{font-size:13px;line-height:1.6;}
}

/* Phase 11 — final mobile dock and hero benefit polish */
.hero-apple__benefits{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.hero-apple__benefits article{
  text-align:center;
  justify-items:center;
  padding:26px 22px 24px;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,241,235,.86));
  border:1px solid rgba(39,28,18,.06);
  box-shadow:0 18px 40px rgba(31,22,15,.06), inset 0 1px 0 rgba(255,255,255,.72);
}
.hero-apple__benefits article::before{
  width:58px;
  height:58px;
  border-radius:20px;
  margin-bottom:4px;
  background:linear-gradient(180deg,#fffdf9,#f1e3d1);
  box-shadow:0 14px 28px rgba(27,19,12,.08);
}
.hero-apple__benefits article:nth-child(1)::before{content:"💧";}
.hero-apple__benefits article:nth-child(2)::before{content:"◇";}
.hero-apple__benefits article:nth-child(3)::before{content:"✓";}
.hero-apple__benefits h3{
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  line-height:1.45;
}
.hero-apple__benefits p{
  max-width:20ch;
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:#605349;
}

@media (max-width: 760px){
  body{padding-bottom:calc(env(safe-area-inset-bottom, 0px) + 118px);}
  .announcement{position:relative;z-index:35;}
  .header{
    height:76px;
    padding:0 18px;
    background:rgba(247,241,235,.94);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(31,22,15,.05);
  }
  .brand{gap:12px;max-width:100%;}
  .brand-logo{width:34px;height:34px;}
  .brand-word{font-size:clamp(16px,4.8vw,20px);letter-spacing:.24em;}
  .header-tools{
    left:14px;
    right:14px;
    bottom:calc(env(safe-area-inset-bottom, 0px) + 12px);
    transform:none;
    justify-content:center;
    width:auto;
    padding:10px 12px;
    gap:14px;
    border-radius:28px;
    background:rgba(255,251,247,.92);
    box-shadow:0 18px 44px rgba(22,16,11,.16);
  }
  .tool-btn{
    width:54px;
    height:54px;
    border-radius:18px;
    background:linear-gradient(180deg,#ffffff,#f7efe7);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9), 0 10px 20px rgba(30,23,16,.06);
  }
  .mobile-nav{
    bottom:calc(env(safe-area-inset-bottom, 0px) + 92px);
    left:14px;
    right:14px;
    border-radius:30px;
    padding:14px;
    background:rgba(255,251,247,.96);
    box-shadow:0 22px 48px rgba(25,17,10,.14);
  }
  .mobile-nav.open{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
  .mobile-nav a{
    min-height:56px;
    border-radius:18px;
    background:rgba(255,255,255,.84);
    border:1px solid rgba(31,22,15,.05);
    box-shadow:0 8px 18px rgba(31,22,15,.04);
    font-size:11px;
    letter-spacing:.16em;
  }
  .hero-apple{
    padding-top:34px;
  }
  .hero-apple__copy h1{
    max-width:10ch;
    text-wrap:balance;
  }
  .hero-apple__sub{
    max-width:30ch;
    font-size:16px;
    line-height:1.72;
  }
  .hero-apple__actions{
    display:grid;
    grid-template-columns:1fr 1fr;
  }
  .hero-apple__actions .btn{
    min-width:0;
    width:100%;
    padding-inline:0;
  }
  .hero-apple__benefits{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-top:28px;
  }
  .hero-apple__benefits article{
    min-height:206px;
    padding:18px 12px 16px;
    border-radius:28px;
  }
  .hero-apple__benefits article::before{
    width:46px;
    height:46px;
    border-radius:16px;
    font-size:20px;
  }
  .hero-apple__benefits h3{
    font-size:10px;
    letter-spacing:.16em;
  }
  .hero-apple__benefits p{
    font-size:12px;
    line-height:1.68;
    max-width:15ch;
  }
}


/* Benefit cards — custom SVG icons, glass cards, micro motion */
.hero-apple__benefits article::before{content:none !important;display:none !important;}
.hero-apple__benefits article{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  text-align:center;
  justify-items:center;
  align-content:start;
  gap:10px;
  padding:28px 22px 24px;
  border-top:none;
  border-radius:34px;
  background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(247,241,235,.72));
  border:1px solid rgba(39,28,18,.06);
  box-shadow:0 18px 40px rgba(31,22,15,.06), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter:blur(18px) saturate(120%);
  -webkit-backdrop-filter:blur(18px) saturate(120%);
}
.hero-apple__benefits article::after{
  content:"";
  position:absolute;
  inset:-30% auto -30% -65%;
  width:56%;
  transform:translateX(-130%) rotate(14deg);
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.36), rgba(255,255,255,0));
  opacity:.72;
  pointer-events:none;
  animation:benefitSweep 7.8s ease-in-out infinite;
}
.benefit-icon-wrap{
  position:relative;
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(242,231,218,.92));
  border:1px solid rgba(38,27,17,.08);
  box-shadow:0 14px 28px rgba(27,19,12,.08), inset 0 1px 0 rgba(255,255,255,.85);
  overflow:hidden;
}
.benefit-icon-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 30% 22%, rgba(255,255,255,.9), transparent 48%);
  pointer-events:none;
}
.benefit-icon{
  width:48px;
  height:48px;
  display:block;
  position:relative;
  z-index:1;
  filter:drop-shadow(0 3px 8px rgba(183,138,90,.14));
  animation:benefitIconFloat 4.2s ease-in-out infinite;
  transform-origin:center;
}
.benefit-card--diamond .benefit-icon{animation-duration:4.8s}
.benefit-card--shield .benefit-icon{animation-duration:4.5s}
.hero-apple__benefits h3{
  margin:0;
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  line-height:1.45;
}
.hero-apple__benefits p{
  max-width:20ch;
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:#605349;
}
@keyframes benefitIconFloat{
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-3px) scale(1.015)}
}
@keyframes benefitSweep{
  0%,12%{transform:translateX(-140%) rotate(14deg);opacity:0}
  20%{opacity:.62}
  36%{transform:translateX(330%) rotate(14deg);opacity:.28}
  100%{transform:translateX(330%) rotate(14deg);opacity:0}
}
@media (max-width:760px){
  .hero-apple__benefits{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:28px;padding-top:0}
  .hero-apple__benefits article{min-height:206px;padding:18px 12px 16px;border-radius:28px;gap:8px}
  .benefit-icon-wrap{width:56px;height:56px;border-radius:18px}
  .benefit-icon{width:38px;height:38px}
  .hero-apple__benefits h3{font-size:10px;letter-spacing:.16em}
  .hero-apple__benefits p{font-size:12px;line-height:1.68;max-width:15ch}
}


/* ============================================================
   PREMIUM HERO REFRESH — OFFICIAL PRODUCT SCENE
   ============================================================ */
.hero-premium {
  position: relative;
  padding: 28px 0 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.9), rgba(255,255,255,0) 28%),
    linear-gradient(180deg, #f6f2ed 0%, #f3eeea 100%);
}

.hero-premium__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(560px, .98fr);
  align-items: center;
  gap: 18px;
  min-height: 660px;
  padding: 34px 0 18px;
}

.hero-premium__copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 28px 0 28px 8px;
}

.hero-premium__eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #b89a72;
}

.hero-premium__copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 6.2vw, 92px);
  line-height: .9;
  letter-spacing: -.035em;
  color: #1d1712;
}

.hero-premium__word--accent {
  color: #ccb18b;
}

.hero-premium__sub {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: 19px;
  line-height: 1.72;
  color: rgba(35, 29, 24, .72);
}

.hero-premium__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.hero-premium__visual {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-premium__visual::before {
  content: "";
  position: absolute;
  inset: 18px 0 0 0;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.12));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 26px 70px rgba(43, 31, 18, .08);
  pointer-events: none;
}

.hero-premium__scene {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  height: auto;
  object-fit: contain;
  margin-right: -16px;
  filter: saturate(.98);
}

.brand-ribbon {
  border-top: 1px solid rgba(37, 28, 18, .06);
  border-bottom: 1px solid rgba(37, 28, 18, .06);
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand-ribbon__inner {
  display: grid;
  grid-template-columns: auto 1px auto 1px auto 1px auto 1px auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 118px;
}

.brand-ribbon__divider {
  width: 1px;
  height: 28px;
  background: rgba(35, 29, 24, .12);
}

.brand-ribbon__item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #201914;
  white-space: nowrap;
}

.brand-ribbon__item img {
  display: block;
  width: auto;
  height: 24px;
  opacity: .95;
}

.brand-ribbon__item--anua span {
  font-size: 42px;
  letter-spacing: .02em;
  font-weight: 400;
}

.brand-ribbon__item--skin1004 span,
.brand-ribbon__item--thankyoufarmer span {
  font-size: 24px;
  letter-spacing: .22em;
  font-weight: 600;
}

.brand-ribbon__item--boj {
  display: grid;
  gap: 2px;
  align-items: center;
  justify-items: center;
}

.brand-ribbon__item--boj .boj-symbol {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.brand-ribbon__item--boj .boj-word {
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .hero-premium__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 20px 0 12px;
  }

  .hero-premium__copy {
    max-width: 100%;
    padding: 20px 0 0;
  }

  .hero-premium__visual {
    min-height: auto;
    justify-content: center;
  }

  .hero-premium__scene {
    width: 100%;
    max-width: 880px;
    margin-right: 0;
  }

  .brand-ribbon__inner {
    gap: 16px;
    min-height: 94px;
  }

  .brand-ribbon__item--anua span {
    font-size: 34px;
  }

  .brand-ribbon__item--skin1004 span,
  .brand-ribbon__item--thankyoufarmer span {
    font-size: 18px;
    letter-spacing: .12em;
  }

  .brand-ribbon__item--boj .boj-word {
    font-size: 13px;
    letter-spacing: .05em;
  }
}

@media (max-width: 768px) {
  .hero-premium {
    padding-top: 10px;
  }

  .hero-premium__copy h1 {
    font-size: clamp(42px, 14vw, 62px);
    line-height: .92;
  }

  .hero-premium__sub {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-premium__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-premium__visual::before {
    inset: 12px 0 0 0;
    border-radius: 28px;
  }

  .brand-ribbon__inner {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px 18px;
    justify-content: unset;
    min-height: auto;
    padding: 18px 0;
  }

  .brand-ribbon__divider {
    display: none;
  }

  .brand-ribbon__item {
    min-height: 38px;
  }

  .brand-ribbon__item--anua span {
    font-size: 28px;
  }

  .brand-ribbon__item--skin1004 span,
  .brand-ribbon__item--thankyoufarmer span {
    font-size: 15px;
    letter-spacing: .08em;
    text-align: center;
  }

  .brand-ribbon__item--boj .boj-symbol {
    font-size: 22px;
  }

  .brand-ribbon__item--boj .boj-word {
    font-size: 11px;
  }
}


/* ============================================================
   PREMIUM HERO REFRESH — CUSTOM PRODUCT STAGE
   ============================================================ */
.hero-premium {
  overflow: clip;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246,242,237,.94) 0%, rgba(246,242,237,.72) 22%, rgba(246,242,237,.26) 42%, rgba(246,242,237,0) 58%),
    radial-gradient(circle at 18% 34%, rgba(255,255,255,.76), rgba(255,255,255,0) 38%);
  pointer-events: none;
  z-index: 0;
}

.hero-premium__inner {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .92fr) minmax(620px, 1.08fr);
  gap: 32px;
  min-height: 760px;
  padding: 42px 0 26px;
}

.hero-premium__copy {
  align-self: center;
  max-width: 560px;
  padding: 10px 0 10px 4px;
}

.hero-premium__eyebrow {
  margin-bottom: 22px;
  color: #bc9c74;
}

.hero-premium__copy h1 {
  letter-spacing: -.05em;
  text-wrap: balance;
}

.hero-premium__sub {
  max-width: 520px;
  margin-top: 24px;
}

.hero-premium__actions {
  margin-top: 34px;
}

.hero-premium__visual {
  min-height: 700px;
  justify-content: flex-end;
}

.hero-premium__visual::before {
  display: none;
}

.hero-premium__stage {
  position: relative;
  width: min(100%, 960px);
  min-height: 700px;
  border-radius: 44px;
  overflow: hidden;
  isolation: isolate;
}

.hero-premium__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.015);
}

.hero-premium__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248,245,240,.88) 0%, rgba(248,245,240,.62) 24%, rgba(248,245,240,.18) 46%, rgba(248,245,240,0) 63%);
  z-index: 1;
}

.hero-premium__stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(243,237,232,0) 0%, rgba(243,237,232,.18) 36%, rgba(243,237,232,.42) 100%);
  z-index: 1;
}

.hero-premium__ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
  z-index: 1;
}

.hero-premium__ambient--one {
  width: 220px;
  height: 220px;
  right: 56px;
  bottom: 108px;
  background: radial-gradient(circle, rgba(255,255,255,.46), rgba(255,255,255,0) 70%);
}

.hero-premium__ambient--two {
  width: 300px;
  height: 160px;
  left: 60px;
  top: 84px;
  background: radial-gradient(circle, rgba(255,255,255,.5), rgba(255,255,255,0) 74%);
}

.hero-premium__products {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-product {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform-origin: bottom center;
}

.hero-product img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(45, 32, 22, .18)) drop-shadow(0 44px 70px rgba(45, 32, 22, .1));
}

.hero-product__ground {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 72%;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(76, 57, 41, .22) 0%, rgba(76, 57, 41, .08) 42%, rgba(76, 57, 41, 0) 72%);
  filter: blur(14px);
}

.hero-product--toner {
  width: 132px;
  left: 468px;
  bottom: 112px;
  z-index: 3;
}

.hero-product--toner img {
  transform: translateY(2px);
}

.hero-product--serum {
  width: 156px;
  left: 560px;
  bottom: 106px;
  z-index: 5;
}

.hero-product--mini-serum {
  width: 118px;
  left: 652px;
  bottom: 102px;
  z-index: 6;
}

.hero-product--sunscreen {
  width: 150px;
  left: 718px;
  bottom: 108px;
  z-index: 4;
}

.hero-product--sunscreen img {
  filter: drop-shadow(0 20px 30px rgba(45, 32, 22, .16)) drop-shadow(0 40px 65px rgba(45, 32, 22, .08));
}

.hero-product--cream {
  width: 176px;
  left: 790px;
  bottom: 106px;
  z-index: 7;
}

.hero-product--cream .hero-product__ground {
  width: 82%;
}

.brand-ribbon {
  position: relative;
}

.brand-ribbon__inner {
  position: relative;
  grid-template-columns: 1px auto 1px auto 1px auto 1px auto 1px auto 1px;
  gap: 26px;
  min-height: 120px;
}

.brand-ribbon__inner::before,
.brand-ribbon__inner::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(35, 29, 24, .12);
}

.brand-ribbon__divider {
  height: 30px;
}

.brand-ribbon__item {
  min-width: 0;
}

.brand-ribbon__item--anua span {
  font-size: 38px;
}

.brand-ribbon__item--skin1004 span,
.brand-ribbon__item--thankyoufarmer span {
  font-size: 21px;
  letter-spacing: .16em;
}

@media (max-width: 1280px) {
  .hero-premium__inner {
    grid-template-columns: minmax(0, .86fr) minmax(540px, 1.14fr);
    gap: 24px;
    min-height: 710px;
  }

  .hero-premium__stage {
    min-height: 650px;
  }

  .hero-product--toner {
    width: 120px;
    left: 390px;
    bottom: 102px;
  }

  .hero-product--serum {
    width: 145px;
    left: 472px;
    bottom: 97px;
  }

  .hero-product--mini-serum {
    width: 108px;
    left: 554px;
    bottom: 94px;
  }

  .hero-product--sunscreen {
    width: 138px;
    left: 614px;
    bottom: 99px;
  }

  .hero-product--cream {
    width: 162px;
    left: 676px;
    bottom: 97px;
  }
}

@media (max-width: 1180px) {
  .hero-premium__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }

  .hero-premium__copy {
    max-width: 100%;
    padding-top: 12px;
  }

  .hero-premium__visual,
  .hero-premium__stage {
    min-height: 640px;
  }

  .hero-premium__stage {
    width: min(100%, 920px);
    margin: 0 auto;
  }

  .hero-premium__actions {
    margin-bottom: 2px;
  }

  .brand-ribbon__inner {
    gap: 16px;
    min-height: 104px;
  }
}

@media (max-width: 900px) {
  .hero-premium__visual,
  .hero-premium__stage {
    min-height: 560px;
  }

  .hero-product--toner {
    width: 96px;
    left: 39%;
    bottom: 83px;
  }

  .hero-product--serum {
    width: 118px;
    left: 49%;
    bottom: 80px;
  }

  .hero-product--mini-serum {
    width: 88px;
    left: 58%;
    bottom: 78px;
  }

  .hero-product--sunscreen {
    width: 112px;
    left: 65%;
    bottom: 82px;
  }

  .hero-product--cream {
    width: 136px;
    left: 74%;
    bottom: 80px;
  }

  .brand-ribbon__inner {
    grid-template-columns: 1px auto 1px auto 1px auto 1px auto 1px auto 1px;
    gap: 12px;
  }

  .brand-ribbon__item--anua span {
    font-size: 30px;
  }

  .brand-ribbon__item--skin1004 span,
  .brand-ribbon__item--thankyoufarmer span {
    font-size: 16px;
    letter-spacing: .08em;
  }
}

@media (max-width: 768px) {
  .hero-premium {
    padding-top: 8px;
  }

  .hero-premium__inner {
    padding-top: 18px;
    gap: 14px;
  }

  .hero-premium__copy h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .hero-premium__sub {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-premium__visual,
  .hero-premium__stage {
    min-height: 420px;
  }

  .hero-premium__stage {
    border-radius: 30px;
  }

  .hero-premium__ambient--one {
    width: 160px;
    height: 160px;
    right: 18px;
    bottom: 62px;
  }

  .hero-premium__ambient--two {
    width: 200px;
    height: 120px;
    left: 18px;
    top: 46px;
  }

  .hero-product--toner {
    width: 72px;
    left: 36%;
    bottom: 54px;
  }

  .hero-product--serum {
    width: 90px;
    left: 47%;
    bottom: 50px;
  }

  .hero-product--mini-serum {
    width: 66px;
    left: 57%;
    bottom: 48px;
  }

  .hero-product--sunscreen {
    width: 84px;
    left: 66%;
    bottom: 52px;
  }

  .hero-product--cream {
    width: 102px;
    left: 76%;
    bottom: 50px;
  }

  .hero-product__ground {
    height: 18px;
    filter: blur(10px);
  }

  .brand-ribbon__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    min-height: auto;
    padding: 18px 0;
  }

  .brand-ribbon__inner::before,
  .brand-ribbon__inner::after,
  .brand-ribbon__divider {
    display: none;
  }

  .brand-ribbon__item {
    min-height: 38px;
  }
}


/* 2026-04-19 hero refinement */
.hero-premium {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #f5f0e9;
}

.hero-premium::before {
  display: none;
}

.hero-premium__stage {
  position: relative;
  min-height: 760px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  box-shadow: none;
  transform: none;
  transition: none;
}

.hero-premium__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: none;
}

.hero-premium__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248,244,239,.96) 0%, rgba(248,244,239,.78) 24%, rgba(248,244,239,.34) 42%, rgba(248,244,239,.08) 56%, rgba(248,244,239,0) 66%),
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 26%);
  z-index: 1;
}

.hero-premium__stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26%;
  background: linear-gradient(180deg, rgba(242,236,231,0) 0%, rgba(242,236,231,.18) 45%, rgba(242,236,231,.34) 100%);
  z-index: 1;
}

.hero-premium__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  align-items: start;
  min-height: 760px;
  gap: 0;
  padding-top: 138px;
  padding-bottom: 44px;
}

.hero-premium__copy {
  position: relative;
  z-index: 4;
  max-width: 520px;
  padding-left: 0;
  padding-right: 24px;
}

.hero-premium__eyebrow {
  margin: 0 0 20px;
  color: #b7926b;
}

.hero-premium__copy h1 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(54px, 6vw, 88px);
  line-height: .92;
  letter-spacing: -.05em;
  color: #191511;
  text-wrap: balance;
}

.hero-premium__sub {
  max-width: 430px;
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(52, 41, 32, .78);
}

.hero-premium__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-premium__actions .btn {
  backdrop-filter: none;
  box-shadow: none;
}

.hero-premium__visual {
  display: none;
}

.hero-premium__ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
  z-index: 2;
}

.hero-premium__ambient--one {
  width: 220px;
  height: 220px;
  right: 6%;
  bottom: 14%;
  background: radial-gradient(circle, rgba(255,255,255,.34), rgba(255,255,255,0) 72%);
}

.hero-premium__ambient--two {
  width: 280px;
  height: 160px;
  left: 10%;
  top: 8%;
  background: radial-gradient(circle, rgba(255,255,255,.42), rgba(255,255,255,0) 72%);
}

.hero-premium__products {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-product {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: none;
  transition: none;
  animation: none;
  transform-origin: bottom center;
}

.hero-product::after {
  display: none;
}

.hero-product img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: none;
  filter: drop-shadow(0 10px 12px rgba(54, 40, 28, .10)) drop-shadow(0 18px 28px rgba(54, 40, 28, .08));
}

.hero-product__ground {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  width: 78%;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(73,55,40,.18) 0%, rgba(73,55,40,.08) 48%, rgba(73,55,40,0) 78%);
  filter: blur(10px);
}

.hero-product--toner {
  width: 96px;
  left: 65.9%;
  bottom: 154px;
  z-index: 4;
}

.hero-product--serum {
  width: 100px;
  left: 70.7%;
  bottom: 154px;
  z-index: 6;
}

.hero-product--mini-serum {
  width: 74px;
  left: 75.5%;
  bottom: 154px;
  z-index: 7;
}

.hero-product--sunscreen {
  width: 96px;
  left: 80%;
  bottom: 150px;
  z-index: 5;
}

.hero-product--cream {
  width: 86px;
  left: 85%;
  bottom: 180px;
  z-index: 8;
}

.hero-product--cream .hero-product__ground {
  width: 88%;
}

.brand-ribbon {
  padding-top: 0;
}

.brand-ribbon__inner {
  grid-template-columns: 1px auto 1px auto 1px auto 1px auto 1px auto 1px;
  gap: 20px;
  min-height: 120px;
  align-items: center;
}

.brand-ribbon__inner::before,
.brand-ribbon__inner::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(35, 29, 24, 0), rgba(35, 29, 24, .18) 20%, rgba(35, 29, 24, .18) 80%, rgba(35, 29, 24, 0));
}

.brand-ribbon__divider {
  width: 1px;
  min-width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(35, 29, 24, 0), rgba(35, 29, 24, .18) 20%, rgba(35, 29, 24, .18) 80%, rgba(35, 29, 24, 0));
}

.brand-ribbon__item {
  min-width: 0;
}

.brand-ribbon__item--anua span {
  font-size: 38px;
}

.brand-ribbon__item--skin1004 span,
.brand-ribbon__item--thankyoufarmer span {
  font-size: 20px;
  letter-spacing: .14em;
}

@media (max-width: 1280px) {
  .hero-premium__inner {
    grid-template-columns: minmax(0, 470px) 1fr;
    min-height: 760px;
    padding-top: 134px;
  }

  .hero-premium__stage {
    min-height: 760px;
  }

  .hero-product--toner { width: 88px; left: 64.8%; bottom: 146px; }
  .hero-product--serum { width: 94px; left: 69.8%; bottom: 146px; }
  .hero-product--mini-serum { width: 70px; left: 74.8%; bottom: 146px; }
  .hero-product--sunscreen { width: 92px; left: 79.6%; bottom: 142px; }
  .hero-product--cream { width: 82px; left: 84.6%; bottom: 170px; }
}

@media (max-width: 1180px) {
  .hero-premium__inner {
    grid-template-columns: 1fr;
    min-height: 720px;
    padding-top: 120px;
    padding-bottom: 42px;
  }

  .hero-premium__copy {
    max-width: 520px;
  }

  .hero-premium__stage {
    min-height: 720px;
  }

  .hero-product--toner { width: 82px; left: 63.2%; bottom: 136px; }
  .hero-product--serum { width: 88px; left: 68.8%; bottom: 136px; }
  .hero-product--mini-serum { width: 66px; left: 74.2%; bottom: 136px; }
  .hero-product--sunscreen { width: 86px; left: 79.4%; bottom: 132px; }
  .hero-product--cream { width: 76px; left: 84.6%; bottom: 156px; }
}

@media (max-width: 900px) {
  .hero-premium__inner {
    min-height: 640px;
    padding-top: 108px;
  }

  .hero-premium__copy h1 {
    font-size: clamp(44px, 10vw, 68px);
    max-width: 9ch;
  }

  .hero-premium__sub {
    max-width: 420px;
    font-size: 15px;
  }

  .hero-premium__stage {
    min-height: 640px;
  }

  .hero-product--toner { width: 72px; left: 62%; bottom: 116px; }
  .hero-product--serum { width: 78px; left: 68%; bottom: 116px; }
  .hero-product--mini-serum { width: 58px; left: 73.6%; bottom: 116px; }
  .hero-product--sunscreen { width: 76px; left: 79%; bottom: 112px; }
  .hero-product--cream { width: 68px; left: 84.4%; bottom: 132px; }

  .brand-ribbon__inner {
    gap: 12px;
  }

  .brand-ribbon__item--anua span {
    font-size: 28px;
  }

  .brand-ribbon__item--skin1004 span,
  .brand-ribbon__item--thankyoufarmer span {
    font-size: 15px;
    letter-spacing: .08em;
  }
}

@media (max-width: 768px) {
  .hero-premium__stage {
    min-height: 560px;
  }

  .hero-premium__inner {
    min-height: 560px;
    padding-top: 98px;
    padding-bottom: 34px;
  }

  .hero-premium__copy {
    max-width: 360px;
    padding-right: 0;
  }

  .hero-premium__copy h1 {
    font-size: clamp(38px, 12vw, 56px);
    max-width: 8.5ch;
  }

  .hero-premium__sub {
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-premium__actions {
    gap: 10px;
  }

  .hero-product--toner { width: 58px; left: 60%; bottom: 94px; }
  .hero-product--serum { width: 64px; left: 66.8%; bottom: 94px; }
  .hero-product--mini-serum { width: 48px; left: 73%; bottom: 94px; }
  .hero-product--sunscreen { width: 62px; left: 79%; bottom: 90px; }
  .hero-product--cream { width: 56px; left: 85%; bottom: 108px; }

  .hero-product__ground {
    height: 15px;
    filter: blur(9px);
  }

  .brand-ribbon__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    min-height: auto;
    padding: 18px 0;
  }

  .brand-ribbon__inner::before,
  .brand-ribbon__inner::after,
  .brand-ribbon__divider {
    display: none;
  }

  .brand-ribbon__item {
    min-height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product,
  .hero-product img,
  .hero-premium__stage,
  .hero-premium__actions .btn {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}


/* ===== 2026-04-19 product + brand asset alignment overrides ===== */
.product-media {
  padding: 22px;
  background: radial-gradient(circle at top, rgba(255,255,255,.72), rgba(255,255,255,0) 42%), linear-gradient(155deg, #f7f2ec, #ebe2d6);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  filter: drop-shadow(0 22px 36px rgba(35, 24, 15, .12));
}

.home-routine__hero-card {
  object-fit: contain !important;
  background: linear-gradient(160deg, rgba(255,255,255,.88), rgba(241,233,222,.92));
  padding: 12px;
}

.brand-ribbon__item {
  min-height: 46px;
}

.brand-ribbon__item img {
  max-width: 168px;
  width: 100%;
  max-height: 28px;
  object-fit: contain;
  opacity: .92;
}

.brand-strip--logos .brand-tile {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand-tile__logo {
  width: 100%;
  max-width: 180px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.hero-product--sunscreen img {
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-ribbon__item img {
    max-width: 132px;
    max-height: 22px;
  }

  .brand-tile__logo {
    max-width: 150px;
    height: 30px;
  }
}


/* ===== 2026-04-20 premium UI refinement ===== */
.hero-premium__copy h1 .highlight{
  padding-right:.02em;
}
.hero-premium__copy h1 .highlight::after{
  content:"";
  position:absolute;
  inset:auto -2% 10% -2%;
  height:18px;
  background:linear-gradient(90deg, rgba(204,169,111,0), rgba(231,206,166,.18), rgba(204,169,111,0));
  filter:blur(10px);
  z-index:-1;
}
.hero-premium__copy .btn-primary{
  box-shadow:0 18px 34px rgba(44,30,18,.18);
}
.hero-premium__copy .btn-secondary{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(8px);
}
.hero-premium__stage::before{
  background:
    linear-gradient(90deg, rgba(248,244,239,.98) 0%, rgba(248,244,239,.84) 26%, rgba(248,244,239,.42) 46%, rgba(248,244,239,.12) 59%, rgba(248,244,239,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 30%);
}
.hero-product img{
  filter: drop-shadow(0 18px 18px rgba(59,43,29,.14)) drop-shadow(0 32px 44px rgba(59,43,29,.10));
}
.hero-product__ground{
  height:22px;
  background:radial-gradient(circle, rgba(73,55,40,.24) 0%, rgba(73,55,40,.12) 48%, rgba(73,55,40,0) 78%);
  filter:blur(12px);
}
.hero-product--toner{ width:166px; left:58.6%; bottom:34px; }
.hero-product--serum{ width:176px; left:68.7%; bottom:38px; }
.hero-product--mini-serum{ width:130px; left:76.6%; bottom:34px; }
.hero-product--sunscreen{ width:188px; left:84.6%; bottom:32px; }
.hero-product--cream{ width:176px; left:92%; bottom:42px; }
.hero-product--cream .hero-product__ground{ width:96%; }
.brand-ribbon{
  position:relative;
  padding:0;
  background:linear-gradient(180deg, #fbf8f4 0%, #f5f0ea 100%);
  border-top:1px solid rgba(79,62,46,.08);
  border-bottom:1px solid rgba(79,62,46,.08);
}
.brand-ribbon__inner{
  grid-template-columns:auto 1px auto 1px auto 1px auto 1px auto 1px auto 1px auto;
  gap:18px;
  min-height:116px;
  align-items:center;
}
.brand-ribbon__item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  min-height:52px;
  opacity:.92;
  transition:transform .22s ease, opacity .22s ease, filter .22s ease;
}
.brand-ribbon__item:hover{ transform:translateY(-2px); opacity:1; filter:none; }
.brand-ribbon__item img{
  display:block;
  width:auto;
  max-width:100%;
  object-fit:contain;
  filter:grayscale(100%) brightness(.16);
}
.brand-ribbon__item[href*="anua"] img{ height:38px; }
.brand-ribbon__item[href*="cosrx"] img{ height:34px; }
.brand-ribbon__item[href*="beauty-of-joseon"] img{ height:52px; }
.brand-ribbon__item[href*="skin1004"] img{ height:28px; }
.brand-ribbon__item[href*="thank-you-farmer"] img{ height:30px; }
.brand-ribbon__item[href*="round-lab"] img{ height:26px; }
.brand-ribbon__item[href*="torriden"] img{ height:24px; }
.badge--bestseller{
  top:auto;
  left:14px;
  bottom:14px;
  background:#8e654f;
  color:#fff;
  border-color:rgba(142,101,79,.28);
  box-shadow:0 10px 24px rgba(88,53,35,.18);
}
.home-routine__product-media img{ object-fit:contain; }
.home-routine .btn,
#homeRoutineAddBundle{
  background:#b5654a;
  border-color:#b5654a;
  color:#fff;
}
#homeRoutineAddBundle:hover{ background:#9f533a; border-color:#9f533a; }
.faq-section{ padding-top:24px; }
.faq-item{ background:#fffaf5; box-shadow:0 8px 24px rgba(38,27,18,.04); }
.empty-collection__card{ background:linear-gradient(180deg, #fffdf9 0%, #faf5ef 100%); }
@media (max-width: 1280px){
  .hero-product--toner{ width:142px; left:57.8%; bottom:28px; }
  .hero-product--serum{ width:152px; left:68.2%; bottom:30px; }
  .hero-product--mini-serum{ width:114px; left:76.3%; bottom:26px; }
  .hero-product--sunscreen{ width:162px; left:84.6%; bottom:26px; }
  .hero-product--cream{ width:150px; left:92%; bottom:34px; }
  .brand-ribbon__inner{ min-height:108px; gap:14px; }
  .brand-ribbon__item[href*="anua"] img{ height:34px; }
  .brand-ribbon__item[href*="cosrx"] img{ height:30px; }
  .brand-ribbon__item[href*="beauty-of-joseon"] img{ height:46px; }
  .brand-ribbon__item[href*="skin1004"] img{ height:24px; }
  .brand-ribbon__item[href*="thank-you-farmer"] img{ height:26px; }
  .brand-ribbon__item[href*="round-lab"] img{ height:22px; }
  .brand-ribbon__item[href*="torriden"] img{ height:20px; }
}
@media (max-width: 1180px){
  .hero-premium__copy{ max-width:480px; }
  .hero-product--toner{ width:128px; left:57%; bottom:22px; }
  .hero-product--serum{ width:136px; left:67.6%; bottom:24px; }
  .hero-product--mini-serum{ width:102px; left:75.7%; bottom:20px; }
  .hero-product--sunscreen{ width:148px; left:84.3%; bottom:20px; }
  .hero-product--cream{ width:136px; left:91.8%; bottom:28px; }
}
@media (max-width: 900px){
  .hero-premium__inner{ min-height:620px; }
  .hero-product--toner{ width:92px; left:55%; bottom:18px; }
  .hero-product--serum{ width:102px; left:66.8%; bottom:20px; }
  .hero-product--mini-serum{ width:76px; left:75.7%; bottom:16px; }
  .hero-product--sunscreen{ width:110px; left:84.8%; bottom:16px; }
  .hero-product--cream{ width:102px; left:92%; bottom:20px; }
  .brand-ribbon__inner{ grid-template-columns:repeat(4, minmax(0,1fr)); }
  .brand-ribbon__divider, .brand-ribbon__inner::before, .brand-ribbon__inner::after{ display:none; }
}
@media (max-width: 768px){
  .hero-premium__stage{ min-height:640px; }
  .hero-premium__inner{ min-height:640px; padding-top:92px; }
  .hero-premium__copy{ max-width:340px; }
  .hero-premium__copy h1{ max-width:7.7ch; }
  .hero-premium__sub{ max-width:320px; }
  .hero-product--toner{ width:76px; left:50%; bottom:16px; }
  .hero-product--serum{ width:84px; left:62%; bottom:16px; }
  .hero-product--mini-serum{ width:64px; left:72%; bottom:14px; }
  .hero-product--sunscreen{ width:88px; left:82%; bottom:14px; }
  .hero-product--cream{ width:82px; left:91%; bottom:18px; }
  .brand-ribbon__inner{ grid-template-columns:repeat(2, minmax(0,1fr)); row-gap:12px; padding:18px 0; }
  .brand-ribbon__item{ min-height:34px; }
  .brand-ribbon__item[href*="anua"] img{ height:30px; }
  .brand-ribbon__item[href*="cosrx"] img{ height:26px; }
  .brand-ribbon__item[href*="beauty-of-joseon"] img{ height:38px; }
  .brand-ribbon__item[href*="skin1004"] img{ height:22px; }
  .brand-ribbon__item[href*="thank-you-farmer"] img{ height:22px; }
  .brand-ribbon__item[href*="round-lab"] img{ height:18px; }
  .brand-ribbon__item[href*="torriden"] img{ height:16px; }
}


/* ===== 2026-04-20 final premium pass ===== */
.hero-premium__copy h1{max-width:9.4ch}
.hero-premium__copy h1 .highlight{position:relative;display:inline-block;background:linear-gradient(102deg,#c7a97d 8%,#f0dfc6 42%,#caa670 72%,#f0dfc6 100%);-webkit-background-clip:text;background-clip:text;color:transparent;text-shadow:0 0 18px rgba(233,212,179,.18)}
.hero-premium__copy h1 .highlight::before{content:"";position:absolute;inset:10% -4% 12% -4%;background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,244,228,.72),rgba(255,255,255,0));mix-blend-mode:screen;filter:blur(8px);animation:heroShine 4.8s ease-in-out infinite;pointer-events:none}
@keyframes heroShine{0%,100%{transform:translateX(-34%);opacity:.22}48%{transform:translateX(34%);opacity:.72}}
.hero-premium__sub{max-width:460px}
.hero-product img{filter:drop-shadow(0 16px 22px rgba(59,43,29,.16)) drop-shadow(0 38px 54px rgba(59,43,29,.12))}
.hero-product__ground{height:26px;filter:blur(14px)}
.hero-product--toner{width:182px;left:60.5%;bottom:28px}
.hero-product--serum{width:194px;left:70.6%;bottom:34px}
.hero-product--mini-serum{width:142px;left:78.1%;bottom:29px}
.hero-product--sunscreen{width:208px;left:86.1%;bottom:28px}
.hero-product--cream{width:188px;left:93.1%;bottom:38px}
.brand-ribbon{margin-top:-1px}
.brand-ribbon__inner{gap:24px;min-height:122px;padding-inline:8px}
.brand-ribbon__item img{transition:transform .22s ease, filter .22s ease, opacity .22s ease}
.brand-ribbon__item:hover img{transform:scale(1.02);filter:grayscale(0) brightness(.22)}
.brand-ribbon__item[href*="anua"] img{height:42px}
.brand-ribbon__item[href*="cosrx"] img{height:36px}
.brand-ribbon__item[href*="beauty-of-joseon"] img{height:56px}
.brand-ribbon__item[href*="skin1004"] img{height:33px}
.brand-ribbon__item[href*="thank-you-farmer"] img{height:34px}
.brand-ribbon__item[href*="round-lab"] img{height:30px}
.brand-ribbon__item[href*="torriden"] img{height:28px}
.trust-strip{background:linear-gradient(180deg,#fbf8f4 0%,#f6f0e9 100%)}
@media (max-width:1180px){.hero-premium__copy h1{max-width:10ch}.hero-product--toner{width:154px;left:58.8%;bottom:30px}.hero-product--serum{width:164px;left:68.8%;bottom:32px}.hero-product--mini-serum{width:120px;left:76.6%;bottom:28px}.hero-product--sunscreen{width:176px;left:84.5%;bottom:27px}.hero-product--cream{width:160px;left:91.8%;bottom:34px}}
@media (max-width:900px){.hero-premium__stage{min-height:620px}.hero-premium__inner{padding-top:104px}.hero-premium__copy{max-width:420px}.hero-premium__copy h1{max-width:8.8ch}.hero-product--toner{width:108px;left:55%;bottom:42px}.hero-product--serum{width:116px;left:65%;bottom:46px}.hero-product--mini-serum{width:86px;left:74%;bottom:42px}.hero-product--sunscreen{width:122px;left:82%;bottom:40px}.hero-product--cream{width:110px;left:89%;bottom:50px}.brand-ribbon__inner{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px 10px;padding:16px 0}.brand-ribbon__divider,.brand-ribbon__inner::before,.brand-ribbon__inner::after{display:none}.brand-ribbon__item[href*="beauty-of-joseon"] img{height:42px}}
@media (max-width:768px){.hero-premium__stage{min-height:520px}.hero-premium__inner{min-height:520px;padding-top:88px}.hero-premium__copy{max-width:320px}.hero-premium__eyebrow{margin-bottom:14px}.hero-premium__sub{font-size:13.5px;max-width:300px}.hero-premium__actions .btn{padding:13px 20px}.hero-product--toner{width:82px;left:53%;bottom:32px}.hero-product--serum{width:90px;left:63%;bottom:36px}.hero-product--mini-serum{width:66px;left:72.5%;bottom:31px}.hero-product--sunscreen{width:94px;left:81%;bottom:30px}.hero-product--cream{width:86px;left:88.5%;bottom:38px}.brand-ribbon__inner{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px 18px;padding:18px 0 20px}.brand-ribbon__item{min-height:40px}.brand-ribbon__item[href*="anua"] img{height:34px}.brand-ribbon__item[href*="cosrx"] img{height:28px}.brand-ribbon__item[href*="beauty-of-joseon"] img{height:34px}.brand-ribbon__item[href*="skin1004"] img{height:24px}.brand-ribbon__item[href*="thank-you-farmer"] img{height:26px}.brand-ribbon__item[href*="round-lab"] img{height:22px}.brand-ribbon__item[href*="torriden"] img{height:22px}}

/* ===== BRAND RIBBON LOGO FIX =====
   Sorun 1: max-height:28px önceki kural tüm logoları kısıtlıyordu
   Sorun 2: brightness(.16) logolara neredeyse görünmez yapıyordu
   ================================ */
.brand-ribbon__item img {
  max-height: none !important;
  filter: grayscale(100%) opacity(0.48) !important;
  transition: filter .24s ease, transform .24s ease, opacity .24s ease !important;
}
.brand-ribbon__item:hover img {
  filter: grayscale(0%) opacity(1) !important;
  transform: scale(1.04) !important;
}
/* Per-brand heights - override with higher specificity */
.brand-ribbon__item[href*="anua"] img       { height: 42px !important; }
.brand-ribbon__item[href*="cosrx"] img      { height: 36px !important; }
.brand-ribbon__item[href*="beauty-of-joseon"] img { height: 56px !important; }
.brand-ribbon__item[href*="skin1004"] img   { height: 33px !important; }
.brand-ribbon__item[href*="thank-you-farmer"] img { height: 34px !important; }
.brand-ribbon__item[href*="round-lab"] img  { height: 30px !important; }
.brand-ribbon__item[href*="torriden"] img   { height: 28px !important; }
@media (max-width: 900px) {
  .brand-ribbon__item[href*="beauty-of-joseon"] img { height: 42px !important; }
}
@media (max-width: 768px) {
  .brand-ribbon__item[href*="anua"] img       { height: 34px !important; }
  .brand-ribbon__item[href*="cosrx"] img      { height: 28px !important; }
  .brand-ribbon__item[href*="beauty-of-joseon"] img { height: 36px !important; }
  .brand-ribbon__item[href*="skin1004"] img   { height: 24px !important; }
  .brand-ribbon__item[href*="thank-you-farmer"] img { height: 26px !important; }
  .brand-ribbon__item[href*="round-lab"] img  { height: 22px !important; }
  .brand-ribbon__item[href*="torriden"] img   { height: 22px !important; }
}

/* ============================================================
   HERO & BRAND RIBBON — COMPREHENSIVE REDESIGN FIX
   ============================================================ */

/* --- HERO: Product sizes 2.2× bigger, seated on marble --- */
.hero-product img {
  filter:
    drop-shadow(0 6px 12px rgba(54,40,28,.20))
    drop-shadow(0 28px 52px rgba(54,40,28,.18))
    drop-shadow(0 52px 90px rgba(54,40,28,.12)) !important;
  transition: transform .45s cubic-bezier(.22,.68,0,1.2), filter .3s ease !important;
}
.hero-product:hover img {
  transform: translateY(-8px) scale(1.03) !important;
}

/* Marble surface contact shadow — bigger & more realistic */
.hero-product__ground {
  width: 88% !important;
  height: 28px !important;
  bottom: 4px !important;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(73,55,40,.32) 0%, rgba(73,55,40,.14) 52%, rgba(73,55,40,0) 80%) !important;
  filter: blur(12px) !important;
}

/* Product sizes — 2.2× scale up */
.hero-product--toner {
  width: 214px !important;
  left: 52.5% !important;
  bottom: 172px !important;
  z-index: 4 !important;
}
.hero-product--serum {
  width: 224px !important;
  left: 58.5% !important;
  bottom: 168px !important;
  z-index: 6 !important;
}
.hero-product--mini-serum {
  width: 166px !important;
  left: 65.8% !important;
  bottom: 164px !important;
  z-index: 7 !important;
}
.hero-product--sunscreen {
  width: 214px !important;
  left: 72.5% !important;
  bottom: 168px !important;
  z-index: 5 !important;
}
.hero-product--cream {
  width: 198px !important;
  left: 80.5% !important;
  bottom: 196px !important;
  z-index: 8 !important;
}
.hero-product--cream .hero-product__ground {
  width: 92% !important;
}

/* Subtle floating animation on hero serum (tallest product = focal) */
@keyframes cs-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.hero-product--serum img {
  animation: cs-float 5.6s ease-in-out infinite !important;
}
.hero-product--serum:hover img {
  animation: none !important;
}

/* 1280px */
@media (max-width: 1280px) {
  .hero-product--toner      { width: 186px !important; left: 51.5% !important; bottom: 162px !important; }
  .hero-product--serum      { width: 196px !important; left: 58%   !important; bottom: 158px !important; }
  .hero-product--mini-serum { width: 144px !important; left: 65.2% !important; bottom: 154px !important; }
  .hero-product--sunscreen  { width: 186px !important; left: 71.8% !important; bottom: 158px !important; }
  .hero-product--cream      { width: 172px !important; left: 80%   !important; bottom: 185px !important; }
}

/* 1180px */
@media (max-width: 1180px) {
  .hero-product--toner      { width: 162px !important; left: 50.5% !important; bottom: 148px !important; }
  .hero-product--serum      { width: 172px !important; left: 57.5% !important; bottom: 144px !important; }
  .hero-product--mini-serum { width: 126px !important; left: 64.8% !important; bottom: 141px !important; }
  .hero-product--sunscreen  { width: 162px !important; left: 71.2% !important; bottom: 144px !important; }
  .hero-product--cream      { width: 150px !important; left: 79.5% !important; bottom: 168px !important; }
}

/* 900px — tablet: reduce and regroup */
@media (max-width: 900px) {
  .hero-product--toner      { width: 108px !important; left: 47% !important; bottom: 130px !important; }
  .hero-product--serum      { width: 116px !important; left: 54% !important; bottom: 126px !important; }
  .hero-product--mini-serum { width:  86px !important; left: 61% !important; bottom: 123px !important; }
  .hero-product--sunscreen  { width: 108px !important; left: 68% !important; bottom: 126px !important; }
  .hero-product--cream      { width: 100px !important; left: 76% !important; bottom: 148px !important; }
}

/* 768px — mobile: hide products to avoid clutter */
@media (max-width: 768px) {
  .hero-product--toner      { width: 82px  !important; left: 44% !important; bottom: 108px !important; }
  .hero-product--serum      { width: 90px  !important; left: 52% !important; bottom: 104px !important; }
  .hero-product--mini-serum { width: 66px  !important; left: 60% !important; bottom: 101px !important; }
  .hero-product--sunscreen  { width: 84px  !important; left: 67% !important; bottom: 104px !important; }
  .hero-product--cream      { width: 78px  !important; left: 75% !important; bottom: 122px !important; }
}

/* --- BRAND RIBBON — Professional redesign --- */
.brand-ribbon {
  background: linear-gradient(180deg, #faf7f3 0%, #f5f0eb 100%) !important;
  border-top: 1px solid rgba(79,62,46,.07) !important;
  border-bottom: 1px solid rgba(79,62,46,.07) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Subtle inner glow */
.brand-ribbon::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse 60% 100% at 50% -10%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 100%) !important;
  pointer-events: none !important;
}

.brand-ribbon__inner {
  min-height: 120px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
  padding-inline: 0 !important;
}

.brand-ribbon__divider {
  width: 1px !important;
  height: 38px !important;
  background: linear-gradient(180deg,
    rgba(79,62,46,0) 0%,
    rgba(79,62,46,.16) 30%,
    rgba(79,62,46,.16) 70%,
    rgba(79,62,46,0) 100%) !important;
  flex-shrink: 0 !important;
}

.brand-ribbon__item {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 80px !important;
  padding: 0 12px !important;
  opacity: 1 !important;
  transition: background .22s ease !important;
  border-radius: 8px !important;
}
.brand-ribbon__item:hover {
  background: rgba(79,62,46,.04) !important;
}

/* Logo images — crisp, legible, premium muted */
.brand-ribbon__item img {
  max-height: none !important;
  width: auto !important;
  max-width: 130px !important;
  display: block !important;
  filter: grayscale(100%) opacity(0.52) !important;
  transition: filter .28s ease, transform .28s ease !important;
}
.brand-ribbon__item:hover img {
  filter: grayscale(0%) opacity(1) !important;
  transform: scale(1.06) !important;
}

/* Per-brand optimal heights */
.brand-ribbon__item[href*="anua"]           img { height: 44px !important; }
.brand-ribbon__item[href*="cosrx"]          img { height: 38px !important; }
.brand-ribbon__item[href*="beauty-of-joseon"] img { height: 60px !important; }
.brand-ribbon__item[href*="skin1004"]       img { height: 35px !important; }
.brand-ribbon__item[href*="thank-you-farmer"] img { height: 36px !important; }
.brand-ribbon__item[href*="round-lab"]      img { height: 32px !important; }
.brand-ribbon__item[href*="torriden"]       img { height: 30px !important; }

/* "Seçilen Markalar" label above ribbon */
.brand-ribbon__label {
  display: block;
  text-align: center;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(79,62,46,.42);
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .brand-ribbon__inner {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
    min-height: auto !important;
    padding: 18px 0 !important;
  }
  .brand-ribbon__divider { display: none !important; }
  .brand-ribbon__item { min-height: 60px !important; padding: 8px !important; }
  .brand-ribbon__item[href*="beauty-of-joseon"] img { height: 44px !important; }
}

@media (max-width: 768px) {
  .brand-ribbon__inner {
    grid-template-columns: repeat(2, 1fr) !important;
    row-gap: 4px !important;
    padding: 16px 0 20px !important;
  }
  .brand-ribbon__item[href*="anua"]           img { height: 36px !important; }
  .brand-ribbon__item[href*="cosrx"]          img { height: 30px !important; }
  .brand-ribbon__item[href*="beauty-of-joseon"] img { height: 38px !important; }
  .brand-ribbon__item[href*="skin1004"]       img { height: 26px !important; }
  .brand-ribbon__item[href*="thank-you-farmer"] img { height: 28px !important; }
  .brand-ribbon__item[href*="round-lab"]      img { height: 24px !important; }
  .brand-ribbon__item[href*="torriden"]       img { height: 24px !important; }
}

/* --- HERO COPY: Tighten ambient glow --- */
.hero-premium__ambient--one {
  width: 280px !important;
  height: 280px !important;
  right: 8% !important;
  bottom: 18% !important;
  background: radial-gradient(circle, rgba(255,255,255,.38), rgba(255,255,255,0) 72%) !important;
}

/* --- TRUST STRIP: Cleaner presentation --- */
.trust-strip {
  border-radius: 0 !important;
  border-top: 1px solid rgba(79,62,46,.07) !important;
  border-bottom: none !important;
  background: transparent !important;
  padding: 32px 0 !important;
}



/* ===== COSMOSKIN mobile refinement layer (2026-04-21) ===== */
.mobile-search-sheet,
.mobile-bottom-nav,
.mobile-category-shortcuts,
.mobile-page-pillbar,
.mobile-sticky-checkout{display:none}

@media (max-width: 768px){
  html{scroll-padding-top:110px}
  body{
    padding-bottom:96px !important;
    overflow-x:hidden;
    background:#f6f0e9;
  }
  .announcement{position:sticky;top:0;z-index:120}
  .header{
    top:34px !important;
    padding:12px 14px !important;
    gap:10px !important;
    min-height:72px;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }
  .brand{min-width:0;gap:10px}
  .brand-logo{width:28px !important;height:28px !important}
  .brand-word{font-size:18px !important;letter-spacing:.08em}
  .site-nav,
  .header .nav,
  .header nav > .nav,
  .header nav ul.nav,
  .site-search-form,
  .header nav[aria-label="Ana menü"],
  .header .btn.btn-secondary[href="/index.html"]{display:none !important}
  .header-tools{
    display:flex !important;
    align-items:center;
    gap:8px;
    margin-left:auto;
  }
  .header-tools .tool-btn,
  .header-tools > a.btn,
  .header-tools > button,
  .mobile-header-search-btn{
    width:42px;
    height:42px;
    border-radius:999px;
    border:1px solid rgba(26,21,16,.08);
    background:rgba(255,255,255,.96);
    box-shadow:0 8px 24px rgba(26,21,16,.08);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0;
  }
  .header-tools > a.btn{
    width:auto;
    padding:0 14px;
    font-size:11px;
    letter-spacing:.08em;
    text-transform:uppercase;
    min-width:auto;
  }
  .header-tools svg{width:20px;height:20px}
  .cart-count{top:-4px;right:-4px}

  .container,
  .container.narrow{
    width:min(100%, calc(100vw - 28px)) !important;
    max-width:none !important;
  }

  .section{padding:28px 0 !important}
  .section-head,
  .section-head.compact,
  .page-hero,
  .empty-collection__card,
  .checkout-summary,
  .checkout-methods,
  .checkout-auth-gate,
  .acc-panel,
  .trust-strip,
  .fact-card-grid,
  .pdp-detail-grid,
  .pdp-section,
  .reassurance-band,
  .about-band,
  .info-grid,
  .faq-list,
  .collections-grid,
  .brand-strip,
  .editorial-shell,
  .home-routine__hero,
  .home-routine__shell,
  .product-grid,
  .footer-grid,
  .footer-trustbar{
    margin-left:0 !important;
    margin-right:0 !important;
  }

  .page-hero,
  .empty-collection__card,
  .checkout-auth-gate,
  .checkout-methods,
  .checkout-summary,
  .editorial-shell,
  .acc-panel,
  .home-routine__hero,
  .reassurance-band,
  .about-band{
    border-radius:24px !important;
    overflow:hidden;
  }

  .page-hero{padding:24px 18px !important}
  .page-hero h1,
  .section-head h2,
  .empty-collection__card h1,
  .checkout-summary h2,
  .acc-panel-head h2{font-size:30px !important; line-height:1.02 !important}
  .page-hero p,
  .section-head p,
  .section-copy,
  .checkout-summary p,
  .empty-collection__card p{font-size:14px !important; line-height:1.75 !important}

  .mobile-page-pillbar{
    display:flex;
    gap:8px;
    overflow:auto;
    padding:4px 0 2px;
    margin:14px 0 0;
    scrollbar-width:none;
  }
  .mobile-page-pillbar::-webkit-scrollbar{display:none}
  .mobile-page-pillbar a,
  .mobile-page-pillbar button{
    flex:0 0 auto;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid rgba(26,21,16,.08);
    background:#fffdf9;
    color:#5c5145;
    font-size:12px;
    font-weight:600;
    letter-spacing:.02em;
    text-decoration:none;
  }
  .mobile-page-pillbar a.is-active{background:#1a1510;color:#fff;border-color:#1a1510}

  .mobile-category-shortcuts{
    display:block;
    margin:18px 0 2px;
  }
  .mobile-category-shortcuts__title{
    font-size:12px;
    letter-spacing:.18em;
    text-transform:uppercase;
    font-weight:700;
    color:#b89b72;
    margin:0 0 10px;
  }
  .mobile-category-shortcuts__track{
    display:flex;
    gap:10px;
    overflow:auto;
    padding-bottom:2px;
    scrollbar-width:none;
  }
  .mobile-category-shortcuts__track::-webkit-scrollbar{display:none}
  .mobile-category-shortcuts__item{
    flex:0 0 auto;
    min-width:108px;
    border-radius:18px;
    padding:14px 14px 12px;
    background:linear-gradient(180deg,#fffdf9 0%,#f8f1e8 100%);
    border:1px solid rgba(26,21,16,.06);
    box-shadow:0 10px 28px rgba(26,21,16,.06);
    text-decoration:none;
    color:#1a1510;
  }
  .mobile-category-shortcuts__eyebrow{
    display:block;
    font-size:10px;
    color:#b89b72;
    letter-spacing:.16em;
    text-transform:uppercase;
    margin-bottom:8px;
    font-weight:700;
  }
  .mobile-category-shortcuts__name{font-size:14px;font-weight:600;display:block}

  .product-grid,
  .collections-grid,
  .brand-strip--logos,
  .info-grid,
  .footer-grid,
  .footer-trustbar,
  .checkout-layout,
  .pdp-detail-grid,
  .fact-card-grid,
  .home-routine__shell,
  .home-routine__presets,
  .about-points,
  .acc-layout,
  .prof-grid,
  .addr-grid,
  .fav-grid,
  .routine-shell,
  .reminder-grid,
  .segment-grid{
    grid-template-columns:1fr !important;
  }
  .product-grid{gap:14px !important}
  .product-card,
  .collection-card,
  .brand-tile,
  .reassurance-card,
  .info-card,
  .fact-card,
  .home-routine__preset,
  .checkout-method-card{
    border-radius:22px !important;
  }
  .product-card{padding:0 !important; overflow:hidden}
  .product-media img,
  .product-media picture img{aspect-ratio:1/1; object-fit:cover}
  .product-body{padding:16px !important}
  .price-row{gap:12px; align-items:flex-end}
  .price-row .btn{padding:12px 16px !important; font-size:12px !important}
  .badge{left:12px !important; top:12px !important}
  .favorite-btn{top:12px !important; right:12px !important}

  .empty-collection__actions,
  .hero-premium__actions,
  .prof-actions,
  .routine-actions,
  .checkout-auth-gate__actions{
    flex-direction:column !important;
    align-items:stretch !important;
  }
  .empty-collection__actions .btn,
  .hero-premium__actions .btn,
  .prof-actions .btn,
  .routine-actions .btn,
  .checkout-auth-gate__actions .btn{width:100%; justify-content:center}

  .checkout-layout{display:flex !important; flex-direction:column !important; gap:16px !important}
  .checkout-summary{order:-1; position:relative !important; top:auto !important}
  .checkout-method-grid{grid-template-columns:1fr !important}
  .checkout-trust-grid{grid-template-columns:1fr 1fr !important; gap:10px !important}
  .checkout-trust-card{padding:14px !important}
  .checkout-consent{padding-right:0 !important}

  .mobile-sticky-checkout{
    display:flex;
    position:fixed;
    left:12px;
    right:12px;
    bottom:76px;
    z-index:140;
    background:rgba(255,253,249,.98);
    border:1px solid rgba(26,21,16,.08);
    border-radius:20px;
    box-shadow:0 18px 48px rgba(26,21,16,.16);
    padding:12px;
    align-items:center;
    gap:12px;
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
  }
  .mobile-sticky-checkout__meta{min-width:0; flex:1}
  .mobile-sticky-checkout__label{display:block; font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:#8c7d70; margin-bottom:4px}
  .mobile-sticky-checkout__price{font-size:20px; font-weight:700; color:#1a1510}
  .mobile-sticky-checkout .btn{height:48px; padding:0 18px; border-radius:999px; white-space:nowrap}

  .acc-layout{padding:18px 0 28px !important; gap:16px !important}
  .acc-sidebar{gap:12px !important}
  .acc-avatar-card,
  .acc-nav,
  .addr-card,
  .fav-card,
  .order-item-card,
  .routine-card,
  .routine-summary-card,
  .routine-stage,
  .reminder-card{border-radius:20px !important}
  .acc-nav{display:none}
  .acc-panel-head{padding:18px 18px 14px !important}
  .acc-panel-body{padding:18px !important}
  .acc-stats{grid-template-columns:1fr 1fr !important}
  .acc-stat{padding:16px 10px !important}
  .acc-stat:nth-child(3){grid-column:1 / -1}

  .footer{padding-bottom:94px !important}
  .footer-grid{gap:18px !important}
  .footer-col h5{margin-bottom:12px}

  .drawer{
    width:100% !important;
    max-width:none !important;
    right:auto !important;
    left:0 !important;
    bottom:0 !important;
    top:auto !important;
    transform:translateY(100%) !important;
    border-radius:24px 24px 0 0 !important;
    max-height:86vh !important;
    height:auto !important;
  }
  .drawer.open{transform:translateY(0) !important}

  .mobile-search-sheet{
    display:block;
    position:fixed;
    inset:0;
    z-index:160;
    background:rgba(246,240,233,.98);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    opacity:0;
    pointer-events:none;
    transition:opacity .22s ease;
  }
  .mobile-search-sheet.is-open{opacity:1;pointer-events:auto}
  .mobile-search-sheet__inner{padding:18px 14px 24px}
  .mobile-search-sheet__top{display:flex;align-items:center;gap:10px;margin-bottom:14px}
  .mobile-search-sheet__close{
    width:42px;height:42px;border-radius:999px;border:1px solid rgba(26,21,16,.08);
    background:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:20px;
  }
  .mobile-search-sheet__field{
    height:52px;border-radius:999px;border:1px solid rgba(26,21,16,.08);background:#fff;
    display:flex;align-items:center;gap:10px;padding:0 16px;box-shadow:0 8px 22px rgba(26,21,16,.06);
  }
  .mobile-search-sheet__field input{border:0;outline:0;background:transparent;width:100%;font:inherit;color:#1a1510}
  .mobile-search-sheet__popular{margin-top:18px}
  .mobile-search-sheet__popular h4{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:#8c7d70;margin:0 0 10px}
  .mobile-search-sheet__chips{display:flex;flex-wrap:wrap;gap:8px}
  .mobile-search-sheet__chips a{padding:10px 14px;border-radius:999px;background:#fff;border:1px solid rgba(26,21,16,.08);text-decoration:none;color:#5c5145;font-size:12px;font-weight:600}

  .mobile-bottom-nav{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    position:fixed;
    left:10px;
    right:10px;
    bottom:10px;
    z-index:150;
    background:rgba(255,253,249,.96);
    border:1px solid rgba(26,21,16,.08);
    box-shadow:0 18px 48px rgba(26,21,16,.14);
    border-radius:24px;
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    padding:8px 6px;
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button{
    appearance:none;
    border:0;
    background:transparent;
    padding:6px 4px;
    display:flex;
    flex-direction:column;
    gap:4px;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#6e6257;
    font-size:10px;
    font-weight:600;
  }
  .mobile-bottom-nav__icon{
    width:36px;height:36px;border-radius:999px;background:#f3ece4;color:#1a1510;
    display:flex;align-items:center;justify-content:center;font-size:16px;
  }
  .mobile-bottom-nav a.is-active .mobile-bottom-nav__icon,
  .mobile-bottom-nav button.is-active .mobile-bottom-nav__icon{background:#1a1510;color:#fff}
}


/* ===== Senior mobile UX layer ===== */
@media (max-width:768px){
  :root{--mobile-shell-pad:14px;}
  body{background:linear-gradient(180deg,#f2ece4 0%,#f8f4ef 100%) !important;}
  .header{
    padding:12px 14px !important;
    gap:10px !important;
    background:rgba(248,244,239,.88) !important;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }
  .header.mobile-header-condensed{padding:10px 12px !important; box-shadow:0 10px 28px rgba(26,21,16,.06)}
  .brand-word{font-size:18px !important; letter-spacing:.08em !important}
  .brand-logo{width:28px !important; height:28px !important}
  .header-tools{gap:8px !important}
  .tool-btn,.mobile-header-search-btn{
    width:42px;height:42px;border-radius:999px;border:1px solid rgba(26,21,16,.08);
    background:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 20px rgba(26,21,16,.06);
    font-size:18px;color:#1a1510;
  }
  .site-nav,.mobile-nav{display:none !important}

  .page-hero,
  .empty-collection{
    padding-top:18px !important;
    margin-bottom:0 !important;
  }
  .page-hero .container.narrow,
  .empty-collection__card{
    position:relative;
    overflow:hidden;
    border-radius:28px !important;
    background:linear-gradient(135deg,#efe5dc 0%,#fbf7f2 58%,#ebddd1 100%) !important;
    border:1px solid rgba(26,21,16,.05);
    box-shadow:0 20px 60px rgba(50,34,22,.10);
    padding:22px 18px 18px !important;
  }
  .page-hero .container.narrow::before,
  .empty-collection__card::before{
    content:'';
    position:absolute;right:-26px;top:-26px;width:140px;height:140px;border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,.8) 0%, rgba(255,255,255,0) 72%);
  }
  .page-hero h1,
  .empty-collection__card h1{font-size:34px !important; line-height:1.02 !important; letter-spacing:-.06em !important; margin:8px 0 10px !important}
  .page-hero p:not(.kicker),
  .empty-collection__card p:not(.kicker){font-size:14px !important; line-height:1.7 !important; max-width:34ch; color:#65594e !important}
  .kicker{font-size:10px !important; letter-spacing:.22em !important; color:#9c7d67 !important}
  .mobile-luxe-hero__meta{position:relative;z-index:1;margin-top:16px;display:grid;gap:12px}
  .mobile-luxe-hero__topline{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
  .mobile-luxe-hero__topline span{font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:#b08971;font-weight:700}
  .mobile-luxe-hero__topline strong{font-size:14px;color:#1a1510;font-weight:600}
  .mobile-luxe-hero__meta p{margin:0 !important;font-size:13px !important;max-width:none !important}
  .mobile-luxe-hero__chips{display:flex;gap:8px;flex-wrap:wrap}
  .mobile-luxe-hero__chips span,
  .mobile-page-pillbar a{
    height:34px;padding:0 12px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;
    border:1px solid rgba(26,21,16,.07);background:rgba(255,255,255,.86);font-size:11px;font-weight:700;color:#5f5348;text-decoration:none;
  }
  .mobile-page-pillbar{display:flex;gap:8px;overflow:auto;padding-bottom:2px;margin-top:14px;scrollbar-width:none}
  .mobile-page-pillbar::-webkit-scrollbar{display:none}
  .mobile-page-pillbar a.is-active{background:#1a1510;color:#fff;border-color:#1a1510}

  .mobile-editorial-rail,
  .mobile-category-shortcuts{padding:16px 14px 0 !important}
  .mobile-editorial-rail__head{display:grid;gap:4px;margin-bottom:12px}
  .mobile-editorial-rail__head span,
  .mobile-category-shortcuts__title{font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:#9b8c7d;font-weight:700}
  .mobile-editorial-rail__head strong{font-size:22px;line-height:1.1;letter-spacing:-.05em;color:#1a1510;font-weight:400;font-family:'Cormorant Garamond',serif}
  .mobile-editorial-rail__track,
  .mobile-category-shortcuts__track{display:flex;gap:10px;overflow:auto;padding-bottom:3px;scrollbar-width:none}
  .mobile-editorial-rail__track::-webkit-scrollbar,
  .mobile-category-shortcuts__track::-webkit-scrollbar{display:none}
  .mobile-editorial-rail__track a,
  .mobile-category-shortcuts__item{
    flex:0 0 auto; width:150px; min-height:112px; border-radius:22px; padding:16px;
    background:linear-gradient(180deg,#fffdf9 0%,#f4ece3 100%); border:1px solid rgba(26,21,16,.06);
    text-decoration:none; color:#1a1510; box-shadow:0 14px 34px rgba(26,21,16,.07);
    display:grid; align-content:start; gap:6px;
  }
  .mobile-editorial-rail__track a small,
  .mobile-category-shortcuts__eyebrow{font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:#b89b72;font-weight:700}
  .mobile-editorial-rail__track a strong,
  .mobile-category-shortcuts__name{font-size:18px;font-family:'Cormorant Garamond',serif;font-weight:500;line-height:1.05}
  .mobile-editorial-rail__track a span{font-size:12px;line-height:1.6;color:#7a6d61}
  .mobile-category-shortcuts__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
  .mobile-category-shortcuts__head a{text-decoration:none;font-size:12px;font-weight:700;color:#6b5f54}

  .section{padding:22px 0 !important}
  .container{padding-left:14px !important; padding-right:14px !important}
  .section-head{margin-bottom:16px !important; display:grid !important; gap:8px !important}
  .section-head h2{font-size:30px !important; line-height:1.02 !important; letter-spacing:-.05em !important}
  .section-head p:last-child{font-size:14px !important; line-height:1.7 !important; color:#6f6257 !important}

  .product-card{
    background:linear-gradient(180deg,#fffdf9 0%,#fbf6f0 100%) !important;
    border:1px solid rgba(26,21,16,.06) !important;
    box-shadow:0 18px 44px rgba(26,21,16,.08) !important;
  }
  .product-media{
    padding:16px 16px 0 !important;
    background:linear-gradient(180deg,#f7efe7 0%,#fbf8f4 100%);
  }
  .product-media img,
  .product-media picture img{aspect-ratio:1 / 1; object-fit:contain !important; width:100%; padding:14px !important}
  .mobile-card-accent{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
  .mobile-card-accent span{font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:#a18368;font-weight:700}
  .mobile-card-accent small{font-size:11px;color:#8f8172;font-weight:600}
  .product-body h3{font-size:22px !important; line-height:1.08 !important; letter-spacing:-.05em !important; font-family:'Cormorant Garamond',serif}
  .product-body p{font-size:13px !important; line-height:1.7 !important; color:#6a5f54 !important}
  .pills{gap:6px !important; flex-wrap:wrap}
  .pill{height:28px !important; padding:0 10px !important; font-size:10px !important; letter-spacing:.12em !important}
  .price{font-size:28px !important; line-height:1 !important}
  .price-note,.meta-note{font-size:11px !important}
  .price-row .btn{height:44px !important; border-radius:999px !important; font-size:11px !important; letter-spacing:.12em !important; text-transform:uppercase !important}

  .facts-section .fact-card-grid,
  .checkout-trust-grid{grid-template-columns:1fr 1fr !important}
  .fact-card{padding:16px !important; background:#fffdf9 !important}
  .fact-card h3{font-size:16px !important}

  .pdp-detail-card,
  .checkout-auth-gate,
  .checkout-summary,
  .acc-panel,
  .reassurance-card,
  .brand-tile,
  .collection-card{box-shadow:0 14px 36px rgba(26,21,16,.08) !important;border:1px solid rgba(26,21,16,.06) !important}
  .checkout-auth-gate,.checkout-summary{border-radius:24px !important;padding:18px !important}
  .checkout-summary{background:linear-gradient(180deg,#fffdf9 0%,#f8f2ea 100%) !important}
  .checkout-summary .sum-row.total strong{font-size:26px !important}
  .checkout-info-list{gap:10px !important}
  .checkout-info-list li{font-size:12px !important; line-height:1.6 !important}
  .mobile-checkout-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:16px}
  .mobile-checkout-steps span{border-radius:16px;padding:12px 10px;background:rgba(255,255,255,.74);border:1px solid rgba(26,21,16,.06);display:grid;gap:4px;text-align:center}
  .mobile-checkout-steps small{font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:#a1846d;font-weight:700}
  .mobile-checkout-steps strong{font-size:12px;color:#1a1510}
  .mobile-checkout-steps .is-active{background:#1a1510;border-color:#1a1510}
  .mobile-checkout-steps .is-active small,.mobile-checkout-steps .is-active strong{color:#fff}

  .mobile-sticky-checkout{bottom:84px !important}
  .mobile-sticky-checkout .btn{height:50px !important; min-width:138px !important}

  .mobile-account-tabs{display:flex;gap:8px;overflow:auto;padding:0 14px 6px;scrollbar-width:none}
  .mobile-account-tabs::-webkit-scrollbar{display:none}
  .mobile-account-tabs button{
    border:1px solid rgba(26,21,16,.08);background:#fff;border-radius:999px;height:38px;padding:0 14px;white-space:nowrap;
    font-size:12px;font-weight:700;color:#5f5348;box-shadow:0 8px 20px rgba(26,21,16,.05)
  }
  .mobile-account-tabs button.is-active{background:#1a1510;color:#fff;border-color:#1a1510}
  .acc-avatar-card{padding:22px 18px !important}
  .acc-name{font-size:28px !important}
  .acc-panel-head h2{font-size:28px !important}
  .acc-panel-head p{font-size:12px !important}

  .mobile-orders-banner{
    margin-top:12px; padding:16px 16px; border-radius:20px; background:linear-gradient(135deg,#f0e6dd 0%,#fbf7f2 100%);
    border:1px solid rgba(26,21,16,.05); box-shadow:0 14px 34px rgba(26,21,16,.07); display:grid; gap:6px;
  }
  .mobile-orders-banner small{font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:#9f816a;font-weight:700}
  .mobile-orders-banner strong{font-size:20px;line-height:1.15;letter-spacing:-.04em;color:#1a1510;font-family:'Cormorant Garamond',serif;font-weight:500}

  .mobile-search-sheet__section{margin-top:18px}
  .mobile-search-sheet__cards{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .mobile-search-sheet__cards a{
    min-height:88px;padding:14px;border-radius:18px;background:#fff;border:1px solid rgba(26,21,16,.08);text-decoration:none;color:#1a1510;
    display:grid;align-content:start;gap:5px;box-shadow:0 10px 26px rgba(26,21,16,.05)
  }
  .mobile-search-sheet__cards small{font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:#a0836f;font-weight:700}
  .mobile-search-sheet__cards strong{font-size:18px;font-family:'Cormorant Garamond',serif;font-weight:500}

  .mobile-bottom-nav{bottom:12px !important; left:12px !important; right:12px !important; padding:8px 8px !important}
  .mobile-bottom-nav a, .mobile-bottom-nav button{gap:3px !important}
  .mobile-bottom-nav__icon{width:38px !important;height:38px !important}
}


/* === DISABLED v5 — replaced by mobile.css ===
/* ===== FINAL MASTER MOBILE LAYER ===== */
@media (max-width:768px){
  html{scroll-padding-top:92px}
  body.mobile-master-ready{padding-bottom:98px !important;background:#f5efe8}
  body.mobile-scroll-down .header{transform:translateY(-100%)}
  .header{transition:transform .28s ease, box-shadow .28s ease, background .28s ease}
  .header.mobile-header-condensed{box-shadow:0 14px 30px rgba(26,21,16,.08);background:rgba(248,244,239,.95)}

  button.is-touched,.btn.is-touched,a.is-touched{transform:scale(.985);transition:transform .12s ease}
  .btn,.tool-btn,.mobile-header-search-btn,.favorite-btn,.mobile-bottom-nav a,.mobile-bottom-nav button{tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent}

  .brand-word{font-size:20px !important;letter-spacing:-.08em !important}
  .brand-logo{width:28px !important;height:28px !important}
  .header-tools{gap:8px !important}
  .tool-btn,.mobile-header-search-btn{flex:0 0 auto}

  .announcement{font-size:10px !important}
  .progress{height:3px !important}

  .filter-row.mobile-sticky-filters{position:sticky;top:76px;z-index:30;padding:10px 0 2px;background:linear-gradient(180deg,#f5efe8 0%, rgba(245,239,232,.9) 70%, rgba(245,239,232,0) 100%)}
  .filter-chip{height:34px !important;border-radius:999px !important;padding:0 14px !important;font-size:11px !important;box-shadow:0 8px 18px rgba(26,21,16,.05)}

  .mobile-card-detail-link{height:42px;padding:0 14px;border-radius:999px;border:1px solid rgba(26,21,16,.08);background:#fff;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#5f5348;box-shadow:0 10px 22px rgba(26,21,16,.05)}
  .price-row{gap:8px !important;align-items:center !important;flex-wrap:wrap}
  .price-row > *{flex:unset}
  .price-row .btn{margin-left:auto}

  .product-grid{gap:14px !important}
  .product-card{border-radius:24px !important;overflow:hidden}
  .badge{top:14px !important;left:14px !important}
  .favorite-btn{backdrop-filter:blur(10px)}

  .facts-section .fact-card-grid{gap:12px !important}
  .fact-card{border-radius:22px !important;overflow:hidden}
  .fact-card__eyebrow{font-size:10px !important}
  .fact-card h3{font-family:'Cormorant Garamond',serif;font-size:24px !important;line-height:1.05 !important;letter-spacing:-.04em !important}
  .fact-card ul{padding-left:18px !important}
  .fact-card__foot{font-size:12px !important;line-height:1.7 !important}

  .pdp-detail-grid{display:grid !important;gap:14px !important}
  .pdp-detail-card{border-radius:24px !important;padding:18px !important;background:linear-gradient(180deg,#fffdf9 0%,#f8f2eb 100%) !important;position:relative;overflow:hidden}
  .pdp-detail-card__head{display:grid !important;gap:10px !important;align-items:start !important}
  .pdp-detail-card__head > div:first-child{display:grid;gap:6px}
  .pdp-detail-card__head h3{font-family:'Cormorant Garamond',serif;font-size:28px !important;line-height:1.02 !important;letter-spacing:-.05em !important}
  .pdp-detail-card__price{font-size:30px !important;line-height:1 !important}
  .mobile-pdp-card-badge{display:inline-flex;align-items:center;justify-content:center;height:28px;padding:0 10px;border-radius:999px;background:#1a1510;color:#fff;font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;width:max-content}
  .mobile-pdp-accordion{display:grid;gap:10px;margin-top:12px}
  .mobile-pdp-accordion__item{border:1px solid rgba(26,21,16,.08);border-radius:18px;background:rgba(255,255,255,.72);overflow:hidden}
  .mobile-pdp-accordion__item summary{list-style:none;cursor:pointer;padding:14px 16px;font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#6a5f54;position:relative}
  .mobile-pdp-accordion__item summary::-webkit-details-marker{display:none}
  .mobile-pdp-accordion__item summary::after{content:'+';position:absolute;right:16px;top:50%;transform:translateY(-50%);font-size:18px;color:#8d7663}
  .mobile-pdp-accordion__item[open] summary::after{content:'–'}
  .mobile-pdp-accordion__body{padding:0 16px 16px;font-size:13px;line-height:1.75;color:#62584d}
  .mobile-pdp-accordion__body ul,.mobile-pdp-accordion__body ol{padding-left:18px;margin:0}
  .mobile-pdp-accordion__body li + li{margin-top:6px}
  .pdp-detail-actions{display:flex !important;gap:8px !important;flex-wrap:wrap}
  .pdp-detail-actions .btn{flex:1 1 180px}

  .mobile-sticky-pdp{position:fixed;left:12px;right:12px;bottom:84px;z-index:70;padding:10px 10px 10px 14px;border-radius:22px;background:rgba(255,253,249,.96);backdrop-filter:blur(16px);border:1px solid rgba(26,21,16,.08);box-shadow:0 22px 44px rgba(26,21,16,.16);display:flex;align-items:center;gap:12px}
  .mobile-sticky-pdp__copy{min-width:0;display:grid;gap:3px;flex:1}
  .mobile-sticky-pdp__copy span{font-size:12px;line-height:1.35;color:#6c6054;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .mobile-sticky-pdp__copy strong{font-size:22px;line-height:1;color:#1a1510;font-family:'Cormorant Garamond',serif}
  .mobile-sticky-pdp .btn{height:48px !important;padding:0 16px !important;white-space:nowrap}

  .checkout-layout{gap:14px !important}
  .form-card,.checkout-summary{position:relative}
  .checkout-auth-gate h3{font-family:'Cormorant Garamond',serif;font-size:28px !important;line-height:1.05 !important;letter-spacing:-.05em !important}
  .checkout-auth-gate__actions{display:grid !important;grid-template-columns:1fr 1fr;gap:8px !important}
  .checkout-method-card{border-radius:18px !important;padding:14px !important}
  .saved-address-list{gap:10px !important}
  .saved-address-item{border-radius:16px !important}
  .field label{font-size:10px !important;letter-spacing:.16em !important;text-transform:uppercase !important;color:#a1836f !important}
  .field input,.field textarea,.field select{border-radius:16px !important;min-height:52px !important;padding:14px 16px !important}
  .field textarea{min-height:110px !important}
  .checkline{align-items:flex-start !important;gap:10px !important}
  .checkline input{margin-top:3px}

  .mobile-sticky-checkout{position:fixed;left:12px;right:12px;z-index:70;padding:10px 10px 10px 14px;border-radius:22px;background:rgba(255,253,249,.96);backdrop-filter:blur(16px);border:1px solid rgba(26,21,16,.08);box-shadow:0 22px 44px rgba(26,21,16,.16);display:flex;align-items:center;gap:12px}
  .mobile-sticky-checkout__meta{display:grid;gap:4px;flex:1}
  .mobile-sticky-checkout__label{font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:#a1836f;font-weight:700}
  .mobile-sticky-checkout__price{font-size:24px;line-height:1;color:#1a1510;font-family:'Cormorant Garamond',serif}
  .mobile-sticky-checkout .btn{height:48px !important}

  .acc-layout{gap:16px !important;padding-top:18px !important}
  .acc-nav{display:none !important}
  .acc-panel{border-radius:24px !important;overflow:hidden}
  .acc-panel-body{padding:18px !important}
  .acc-stats{grid-template-columns:1fr 1fr !important}
  .acc-stat:last-child{grid-column:1 / -1;border-top:1px solid var(--line)}
  .acc-stat{padding:18px 14px !important}
  .acc-stat-val{font-size:30px !important}
  .acc-avatar{width:84px !important;height:84px !important;font-size:32px !important}
  .acc-sidebar{gap:12px !important}
  .addr-modal{padding:24px 18px !important;border-radius:24px !important}
  .addr-modal h3{font-size:30px !important;line-height:1.02 !important}
  .order-item-head{padding:14px !important;align-items:flex-start !important;flex-direction:column}
  .order-item-body{padding:14px !important}

  .drawer.mobile-bottom-sheet{top:auto !important;right:0 !important;left:0 !important;bottom:0 !important;width:100% !important;max-width:none !important;height:auto !important;max-height:min(80vh,760px) !important;border-radius:26px 26px 0 0 !important;transform:translateY(110%) !important;box-shadow:0 -28px 50px rgba(26,21,16,.18) !important}
  .drawer.mobile-bottom-sheet.open{transform:translateY(0) !important}
  .drawer-head{padding:18px 18px 14px !important;position:sticky;top:0;background:rgba(255,253,249,.96);backdrop-filter:blur(12px);z-index:2}

  .mobile-search-sheet__field{height:58px !important;border-radius:20px !important}
  .mobile-search-sheet__chips a{height:34px !important;padding:0 12px !important;border-radius:999px !important}

  .footer{padding-bottom:98px !important}
}
*/



/* ===== 2026-04-21 hero refinement ===== */
.hero-premium{
  position:relative;
  overflow:clip;
  background:linear-gradient(180deg,#f9f4ef 0%,#f4ece5 100%);
}
.hero-premium::before{
  background:
    linear-gradient(90deg, rgba(247,241,235,.97) 0%, rgba(247,241,235,.88) 22%, rgba(247,241,235,.58) 38%, rgba(247,241,235,.14) 54%, rgba(247,241,235,0) 66%),
    radial-gradient(circle at 20% 28%, rgba(255,255,255,.58), rgba(255,255,255,0) 34%);
}
.hero-premium__inner{
  grid-template-columns:minmax(0, .98fr) minmax(0, 1.02fr);
  gap:24px;
  min-height:740px;
  padding:48px 0 28px;
  align-items:center;
}
.hero-premium__copy{
  position:relative;
  z-index:3;
  max-width:700px;
  padding:0 0 6px 4px;
}
.hero-premium__eyebrow{
  margin-bottom:18px;
  color:#bc9c74;
}
.hero-premium__copy h1{
  max-width:12.4ch;
  font-size:clamp(58px, 6vw, 94px);
  line-height:.93;
  letter-spacing:-.055em;
  text-wrap:balance;
}
.hero-premium__copy h1 .highlight{
  position:relative;
  display:inline-block;
  background:linear-gradient(102deg,#b48b54 0%,#f3e2bd 26%,#fff4dc 47%,#d4ad74 67%,#b48b54 100%);
  background-size:220% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  text-shadow:0 0 22px rgba(246,224,188,.22);
  animation:heroSoftGlow 5.4s ease-in-out infinite;
}
.hero-premium__copy h1 .highlight::after{
  content:"";
  position:absolute;
  inset:10% -7% 8% -7%;
  background:radial-gradient(circle, rgba(255,245,226,.55) 0%, rgba(255,245,226,0) 72%);
  filter:blur(10px);
  z-index:-1;
  pointer-events:none;
}
@keyframes heroSoftGlow{
  0%,100%{background-position:120% 50%; filter:brightness(1)}
  50%{background-position:0% 50%; filter:brightness(1.06)}
}
.hero-premium__sub{
  max-width:610px;
  margin-top:22px;
  font-size:17px;
  line-height:1.78;
  color:rgba(43,34,27,.72);
}
.hero-premium__actions{
  margin-top:34px;
}
.hero-premium__stage{
  width:min(100%, 1040px);
  min-height:740px;
  border-radius:0;
}
.hero-premium__bg{
  object-position:62% center;
  transform:scale(1.04);
}
.hero-premium__stage::before{
  background:linear-gradient(90deg, rgba(248,245,240,.90) 0%, rgba(248,245,240,.74) 26%, rgba(248,245,240,.32) 44%, rgba(248,245,240,.06) 56%, rgba(248,245,240,0) 66%);
  z-index:1;
}
.hero-premium__stage::after{
  height:38%;
  background:linear-gradient(180deg, rgba(243,237,232,0) 0%, rgba(243,237,232,.14) 32%, rgba(243,237,232,.32) 100%);
}
.hero-premium__ambient{
  filter:blur(28px);
}
.hero-premium__ambient--one{
  width:260px;
  height:260px;
  right:124px;
  top:132px;
  bottom:auto;
  background:radial-gradient(circle, rgba(255,231,210,.28), rgba(255,231,210,0) 72%);
}
.hero-premium__ambient--two{
  width:320px;
  height:180px;
  left:64px;
  top:96px;
  background:radial-gradient(circle, rgba(255,255,255,.46), rgba(255,255,255,0) 74%);
}
.hero-premium__products,
.hero-premium [id="heroProducts"]{display:none !important;}

@media (max-width: 1180px){
  .hero-premium__inner{
    min-height:680px;
    padding-top:34px;
  }
  .hero-premium__copy{
    max-width:620px;
  }
  .hero-premium__copy h1{
    max-width:11.8ch;
    font-size:clamp(52px, 6vw, 82px);
  }
  .hero-premium__sub{
    max-width:560px;
  }
  .hero-premium__stage{
    min-height:680px;
  }
  .hero-premium__bg{
    object-position:66% center;
  }
}

@media (max-width: 900px){
  .hero-premium__inner{
    min-height:620px;
    padding:86px 0 28px;
    grid-template-columns:1fr;
  }
  .hero-premium__copy{
    max-width:480px;
  }
  .hero-premium__copy h1{
    max-width:10.6ch;
    font-size:clamp(42px, 9vw, 64px);
  }
  .hero-premium__sub{
    max-width:420px;
    font-size:15px;
    line-height:1.72;
  }
  .hero-premium__stage{
    min-height:620px;
  }
  .hero-premium__bg{
    object-position:73% center;
    transform:scale(1.07);
  }
  .hero-premium__ambient--one{
    right:72px;
    top:146px;
  }
}

@media (max-width: 768px){
  .hero-premium{
    min-height:auto;
  }
  .hero-premium__inner{
    min-height:560px;
    padding:94px 0 26px;
  }
  .hero-premium__copy{
    max-width:340px;
  }
  .hero-premium__eyebrow{
    margin-bottom:14px;
  }
  .hero-premium__copy h1{
    max-width:10.2ch;
    font-size:clamp(38px, 11vw, 52px);
    line-height:.95;
  }
  .hero-premium__sub{
    max-width:320px;
    font-size:14px;
  }
  .hero-premium__actions{
    gap:12px;
    flex-wrap:wrap;
  }
  .hero-premium__stage{
    min-height:560px;
  }
  .hero-premium__bg{
    object-position:77% center;
    transform:scale(1.1);
  }
  .hero-premium__ambient--one{
    width:180px;
    height:180px;
    right:36px;
    top:154px;
  }
  .hero-premium__ambient--two{
    width:210px;
    height:120px;
    left:24px;
    top:78px;
  }
}


/* ===== 2026-04-21 final hero fix ===== */
.hero-premium{
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #f7f2ec 0%, #f3ece5 100%);
}

.hero-premium__stage{
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(640px, 82vh, 760px);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-premium__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  transform: scale(1.03);
}

.hero-premium__stage::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(248,244,239,.96) 0%,
      rgba(248,244,239,.88) 18%,
      rgba(248,244,239,.58) 34%,
      rgba(248,244,239,.22) 48%,
      rgba(248,244,239,.06) 58%,
      rgba(248,244,239,0) 68%),
    radial-gradient(circle at 17% 28%, rgba(255,255,255,.42) 0%, rgba(255,255,255,0) 38%);
}

.hero-premium__stage::after{
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(243,237,232,0) 0%, rgba(243,237,232,.08) 42%, rgba(243,237,232,.24) 100%);
}

.hero-premium__ambient{
  z-index: 1;
  pointer-events: none;
  filter: blur(32px);
}

.hero-premium__ambient--one{
  width: 340px;
  height: 340px;
  right: 8%;
  top: 16%;
  bottom: auto;
  background: radial-gradient(circle, rgba(255, 230, 205, .22), rgba(255, 230, 205, 0) 72%);
}

.hero-premium__ambient--two{
  width: 420px;
  height: 240px;
  left: 4%;
  top: 12%;
  background: radial-gradient(circle, rgba(255,255,255,.36), rgba(255,255,255,0) 74%);
}

.hero-premium__inner{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(640px, 82vh, 760px);
  padding: 40px 0 32px;
}

.hero-premium__copy{
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 18px 0 24px 4px;
}

.hero-premium__eyebrow{
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #c2a073;
}

.hero-premium__copy h1{
  margin: 0;
  max-width: 9.8ch;
  font-size: clamp(64px, 7.1vw, 98px);
  line-height: .92;
  letter-spacing: -.055em;
  text-wrap: balance;
  color: #18120f;
}

.hero-premium__copy h1 .highlight{
  position: relative;
  display: inline-block;
  padding-right: .03em;
  background: linear-gradient(96deg,
    #9f7d4c 0%,
    #e8d2aa 22%,
    #fff4dd 46%,
    #d4ad74 66%,
    #9f7d4c 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow:
    0 0 10px rgba(231, 207, 166, .18),
    0 0 22px rgba(231, 207, 166, .10);
  animation: heroSoftGlowFinal 5.2s ease-in-out infinite;
}

.hero-premium__copy h1 .highlight::after{
  content: "";
  position: absolute;
  inset: 12% -5% 10% -5%;
  background: radial-gradient(circle, rgba(255, 243, 220, .44) 0%, rgba(255, 243, 220, 0) 72%);
  filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

@keyframes heroSoftGlowFinal{
  0%,100%{ background-position: 120% 50%; filter: brightness(1); }
  50%{ background-position: -10% 50%; filter: brightness(1.08); }
}

.hero-premium__sub{
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(43, 34, 27, .76);
}

.hero-premium__actions{
  margin-top: 34px;
  gap: 14px;
}

.hero-premium__copy .btn-primary{
  box-shadow: 0 18px 34px rgba(44, 30, 18, .18);
}

.hero-premium__copy .btn-secondary{
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-premium__products,
.hero-premium [data-hero-product],
.hero-premium [id="heroProducts"]{
  display: none !important;
}

@media (max-width: 1200px){
  .hero-premium__bg{ object-position: 80% center; }
  .hero-premium__copy h1{ max-width: 10.4ch; font-size: clamp(58px, 6.6vw, 88px); }
}

@media (max-width: 1024px){
  .hero-premium__stage,
  .hero-premium__inner{ min-height: 640px; }
  .hero-premium__bg{ object-position: 82% center; transform: scale(1.04); }
  .hero-premium__copy{ max-width: 640px; }
  .hero-premium__copy h1{ max-width: 10.6ch; font-size: clamp(52px, 6vw, 78px); }
  .hero-premium__sub{ max-width: 520px; font-size: 16px; }
}

@media (max-width: 768px){
  .hero-premium__stage,
  .hero-premium__inner{ min-height: 640px; }
  .hero-premium__bg{
    object-position: 72% center;
    transform: scale(1.12);
  }
  .hero-premium__stage::before{
    background:
      linear-gradient(180deg, rgba(248,244,239,.88) 0%, rgba(248,244,239,.56) 38%, rgba(248,244,239,.26) 58%, rgba(248,244,239,.12) 72%, rgba(248,244,239,.04) 82%, rgba(248,244,239,0) 100%),
      linear-gradient(90deg, rgba(248,244,239,.9) 0%, rgba(248,244,239,.65) 48%, rgba(248,244,239,.28) 68%, rgba(248,244,239,.08) 84%, rgba(248,244,239,0) 100%);
  }
  .hero-premium__ambient--one{ width: 240px; height: 240px; right: 4%; top: 14%; }
  .hero-premium__ambient--two{ width: 260px; height: 200px; left: 0; top: 8%; }
  .hero-premium__copy{
    max-width: 100%;
    padding: 8px 0 18px;
  }
  .hero-premium__eyebrow{ font-size: 10px; letter-spacing: .22em; margin-bottom: 14px; }
  .hero-premium__copy h1{
    max-width: 10.5ch;
    font-size: clamp(42px, 12vw, 62px);
    line-height: .94;
  }
  .hero-premium__sub{
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.72;
    margin-top: 18px;
  }
  .hero-premium__actions{
    margin-top: 26px;
    flex-wrap: wrap;
  }
}

/* ═══════════════════════════════════════════════════════════
   COSMOSKIN — Live Search Results (search.js)
   ═══════════════════════════════════════════════════════════ */

.site-search-results:not([hidden]) {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--card, #fffdf9);
  border: 1px solid var(--line, rgba(22,18,14,.1));
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(22,18,14,.12);
  overflow: hidden;
  z-index: 200;
  max-height: 440px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.srch-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text, #16120e);
  border-bottom: 1px solid var(--line, rgba(22,18,14,.08));
  transition: background .12s;
}

.srch-item:last-child { border-bottom: none; }
.srch-item:hover, .srch-item--active { background: rgba(176,138,94,.07); }

.srch-item-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line, rgba(22,18,14,.1));
  flex-shrink: 0;
  background: var(--bg-2, #f8f3ec);
}

.srch-item-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.srch-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text, #16120e);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.srch-item-name mark {
  background: rgba(176,138,94,.22);
  color: var(--gold, #b08a5e);
  border-radius: 3px;
  padding: 0 2px;
}

.srch-item-meta {
  font-size: 11px;
  color: var(--muted, #9a8f85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.srch-no-result {
  padding: 20px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted, #9a8f85);
}

/* ── Reviews inline styles override ─────────────────────── */
.pdp-rc-edited {
  font-size: 10px;
  color: var(--muted, #9a8f85);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* mobile-sticky-pdp: hidden by default; @media (max-width:768px) opts
   it back in for mobile only. Without this default, the element leaks
   into desktop document flow and shows a stray price line. */
.mobile-sticky-pdp{display:none}

/* ── Account · Orders page · order-items list (Phase 3) ─────────── */
.order-items{list-style:none;margin:14px 0 0;padding:0;display:grid;gap:10px}
.order-items .order-item{display:grid;grid-template-columns:56px 1fr auto;gap:14px;align-items:center;padding:10px 0;border-top:1px solid rgba(26,21,16,.08)}
.order-items .order-item:first-child{border-top:0}
.order-item__media{display:flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:12px;overflow:hidden;background:#f4ede4;flex-shrink:0;text-decoration:none}
.order-item__media img{width:100%;height:100%;object-fit:cover;display:block}
.order-item__placeholder{font-size:22px;opacity:.4;color:#6c6054}
.order-item__body{display:grid;gap:2px;min-width:0}
.order-item__brand{font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:#6c6054}
.order-item__name{font-family:'Cormorant Garamond',Georgia,serif;font-size:18px;line-height:1.25;color:#1a1510;text-decoration:none;overflow:hidden;text-overflow:ellipsis}
.order-item__name:hover{text-decoration:underline}
.order-item__meta{font-size:12px;color:#6c6054}
.order-item__total{font-family:'Cormorant Garamond',Georgia,serif;font-size:18px;color:#1a1510;white-space:nowrap}

/* ==========================================================================
   PHASE 5 — "Akıllı Rutin Seçimi" redesign
   --------------------------------------------------------------------------
   Premium, minimal, conversion-focused. Inline custom SVG icons (no emoji).
   Soft Gündüz / Akşam mood transition. Standalone block; sits at the end of
   the file so it overrides any earlier rules cleanly.
   ========================================================================== */

/* --- Section frame -------------------------------------------------------- */
.home-routine{
  --r-surface: #fdfaf5;
  --r-surface-soft: #f6efe5;
  --r-ink: #1a1510;
  --r-ink-soft: #6c6054;
  --r-line: rgba(26, 21, 16, .12);
  --r-line-strong: rgba(26, 21, 16, .22);
  --r-accent: #b5654a;
  --r-night-surface: #1f2730;
  --r-night-surface-soft: #2c2520;
  --r-night-ink: #f4ece1;
  --r-night-ink-soft: rgba(244, 236, 225, .68);
  --r-night-line: rgba(244, 236, 225, .14);
  --r-night-accent: #d8a384;
}

/* --- Mood toggle (Gündüz / Akşam) ----------------------------------------- */
.home-routine__mood{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  margin: 12px auto 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  border: 1px solid var(--r-line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* center within the section */
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.home-routine__mood-btn{
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 9px 18px;
  border-radius: 999px;
  font: 500 12px/1 'Inter', system-ui, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--r-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 220ms ease, background 220ms ease;
}
.home-routine__mood-btn:hover{ color: var(--r-ink); }
.home-routine__mood-btn.is-active{
  background: var(--r-ink);
  color: #fff;
}
.home-routine__mood-icon{
  width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.home-routine__mood-icon svg{ width: 100%; height: 100%; }

/* --- Builder shell mood transition ---------------------------------------- */
/* Applied to the section itself so it tints the whole area gently. */
.home-routine{
  background: linear-gradient(180deg, var(--r-surface) 0%, var(--r-surface-soft) 100%);
  transition: background 600ms ease, color 320ms ease;
  border-radius: 36px;
  margin: 24px 16px;
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.home-routine[data-mood="night"]{
  background: linear-gradient(180deg, var(--r-night-surface) 0%, var(--r-night-surface-soft) 100%);
  color: var(--r-night-ink);
}
.home-routine[data-mood="night"] .home-routine__lede,
.home-routine[data-mood="night"] .home-routine__step-head p,
.home-routine[data-mood="night"] .home-routine__option small,
.home-routine[data-mood="night"] .home-routine__preset small,
.home-routine[data-mood="night"] .home-routine__note,
.home-routine[data-mood="night"] .home-routine__hero-points span{
  color: var(--r-night-ink-soft);
}
.home-routine[data-mood="night"] .home-routine__badge{
  background: rgba(244, 236, 225, .08);
  border-color: var(--r-night-line);
  color: var(--r-night-ink);
}
.home-routine[data-mood="night"] .home-routine__hero-points span{
  border-color: var(--r-night-line);
}
.home-routine[data-mood="night"] .home-routine__mood{
  background: rgba(244, 236, 225, .06);
  border-color: var(--r-night-line);
}
.home-routine[data-mood="night"] .home-routine__mood-btn{
  color: var(--r-night-ink-soft);
}
.home-routine[data-mood="night"] .home-routine__mood-btn:hover{ color: var(--r-night-ink); }
.home-routine[data-mood="night"] .home-routine__mood-btn.is-active{
  background: var(--r-night-ink);
  color: var(--r-night-surface);
}

/* --- Preset cards (Nem / Bariyer / Işıltı) -------------------------------- */
.home-routine__presets{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 8px 0 4px;
}
.home-routine__preset{
  appearance: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid var(--r-line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--r-ink);
  transition: transform 220ms cubic-bezier(.2,.7,.2,1),
              background 220ms ease,
              border-color 220ms ease,
              box-shadow 220ms ease,
              color 220ms ease;
}
.home-routine__preset:hover{
  transform: translateY(-1px);
  border-color: var(--r-line-strong);
  background: rgba(255, 255, 255, .82);
}
.home-routine__preset:focus-visible{
  outline: 2px solid var(--r-ink);
  outline-offset: 3px;
}
.home-routine__preset.is-active,
.home-routine__preset[aria-pressed="true"]{
  background: var(--r-ink);
  border-color: var(--r-ink);
  color: #fff;
}
.home-routine__preset-icon{
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--r-accent);
  /* allow icon to inherit color when card flips to active state */
  transition: color 220ms ease;
}
.home-routine__preset.is-active .home-routine__preset-icon,
.home-routine__preset[aria-pressed="true"] .home-routine__preset-icon{
  color: #fff;
}
.home-routine__preset-icon svg{
  width: 100%; height: 100%;
  display: block;
}
.home-routine__preset strong{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.home-routine__preset small{
  font-size: 12px;
  line-height: 1.5;
  color: var(--r-ink-soft);
  letter-spacing: 0;
}

/* Night-mode preset cards */
.home-routine[data-mood="night"] .home-routine__preset{
  background: rgba(244, 236, 225, .04);
  border-color: var(--r-night-line);
  color: var(--r-night-ink);
}
.home-routine[data-mood="night"] .home-routine__preset:hover{
  background: rgba(244, 236, 225, .08);
  border-color: rgba(244, 236, 225, .26);
}
.home-routine[data-mood="night"] .home-routine__preset-icon{ color: var(--r-night-accent); }
.home-routine[data-mood="night"] .home-routine__preset.is-active,
.home-routine[data-mood="night"] .home-routine__preset[aria-pressed="true"]{
  background: var(--r-night-ink);
  border-color: var(--r-night-ink);
  color: var(--r-night-surface);
}
.home-routine[data-mood="night"] .home-routine__preset.is-active .home-routine__preset-icon,
.home-routine[data-mood="night"] .home-routine__preset[aria-pressed="true"] .home-routine__preset-icon{
  color: var(--r-night-surface);
}

/* --- Step option pills (cilt tipi / hedef / öncelikler) ------------------- */
.home-routine__option-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.home-routine__option{
  appearance: none;
  cursor: pointer;
  text-align: left;
  background: rgba(255, 255, 255, .54);
  border: 1px solid var(--r-line);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--r-ink);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.home-routine__option:hover{
  background: rgba(255, 255, 255, .82);
  border-color: var(--r-line-strong);
}
.home-routine__option:focus-visible{
  outline: 2px solid var(--r-ink);
  outline-offset: 2px;
}
.home-routine__option span{
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -.005em;
}
.home-routine__option small{
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--r-ink-soft);
}
.home-routine__option.is-active,
.home-routine__option[aria-pressed="true"]{
  background: var(--r-ink);
  border-color: var(--r-ink);
  color: #fff;
}
.home-routine__option.is-active small,
.home-routine__option[aria-pressed="true"] small{
  color: rgba(255, 255, 255, .72);
}
/* Night-mode options */
.home-routine[data-mood="night"] .home-routine__option{
  background: rgba(244, 236, 225, .04);
  border-color: var(--r-night-line);
  color: var(--r-night-ink);
}
.home-routine[data-mood="night"] .home-routine__option:hover{
  background: rgba(244, 236, 225, .09);
  border-color: rgba(244, 236, 225, .28);
}
.home-routine[data-mood="night"] .home-routine__option.is-active,
.home-routine[data-mood="night"] .home-routine__option[aria-pressed="true"]{
  background: var(--r-night-ink);
  border-color: var(--r-night-ink);
  color: var(--r-night-surface);
}
.home-routine[data-mood="night"] .home-routine__option.is-active small,
.home-routine[data-mood="night"] .home-routine__option[aria-pressed="true"] small{
  color: rgba(31, 39, 48, .72);
}

/* --- Builder hierarchy ---------------------------------------------------- */
.home-routine__step-head{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.home-routine__step-no{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--r-line-strong);
  font: 500 11px/1 'Inter', system-ui, sans-serif;
  letter-spacing: .08em;
  color: var(--r-ink);
  flex-shrink: 0;
  background: transparent;
}
.home-routine__step-head h3{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 2px;
  color: inherit;
}
.home-routine__step-head p{
  margin: 0;
  font-size: 12.5px;
  color: var(--r-ink-soft);
}
.home-routine[data-mood="night"] .home-routine__step-no{
  border-color: var(--r-night-line);
  color: var(--r-night-ink);
}
.home-routine__step{
  padding: 22px 0;
  border-top: 1px solid var(--r-line);
}
.home-routine__step:first-of-type{ border-top: 0; padding-top: 4px; }
.home-routine[data-mood="night"] .home-routine__step{ border-top-color: var(--r-night-line); }

/* --- BAŞTAN button override (Task 7) -------------------------------------- */
/* Override the earlier .home-routine .btn copper paint at line ~6045
   and remove any white halo. BAŞTAN is now a quiet outline pill that
   ladders up to the same destination as Keşfet on hover. */
.home-routine .btn-secondary,
.home-routine #homeRoutineReset{
  background: transparent !important;
  color: var(--r-ink) !important;
  border: 1px solid var(--r-line-strong) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  filter: none !important;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.home-routine .btn-secondary:hover,
.home-routine #homeRoutineReset:hover{
  background: var(--r-ink) !important;
  color: #fff !important;
  border-color: var(--r-ink) !important;
  transform: translateY(-1px);
}
.home-routine[data-mood="night"] .btn-secondary,
.home-routine[data-mood="night"] #homeRoutineReset{
  color: var(--r-night-ink) !important;
  border-color: var(--r-night-line) !important;
}
.home-routine[data-mood="night"] .btn-secondary:hover,
.home-routine[data-mood="night"] #homeRoutineReset:hover{
  background: var(--r-night-ink) !important;
  color: var(--r-night-surface) !important;
  border-color: var(--r-night-ink) !important;
}
/* The earlier rule .home-routine .btn { background: #b5654a; ... } is
   intentionally left for primary CTAs (Rutini Kaydet, Seti Sepete Ekle).
   We only neutralize the copper coat on the secondary action. */

/* --- Hero "Keşfet" hover refinement (Task 8) ------------------------------ */
/* Soften the heavy warm halo that read as a "patlama"/flash; add a subtle
   premium hover that matches BAŞTAN above. */
.hero-premium__copy .btn-primary{
  box-shadow: 0 8px 22px rgba(26, 21, 16, .14) !important;
  transition: background 220ms ease, transform 220ms cubic-bezier(.2,.7,.2,1), box-shadow 220ms ease;
}
.hero-premium__copy .btn-primary:hover{
  background: #2a2018;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(26, 21, 16, .20) !important;
}
.hero-premium__copy .btn-primary:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(26, 21, 16, .18) !important;
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 720px){
  .home-routine{ margin: 16px 8px; padding-top: 36px !important; padding-bottom: 36px !important; }
  .home-routine__presets{ grid-template-columns: 1fr; gap: 12px; }
  .home-routine__preset{ padding: 18px 20px; }
  .home-routine__preset strong{ font-size: 22px; }
  .home-routine__mood{ width: 100%; max-width: 320px; }
  .home-routine__mood-btn{ flex: 1; justify-content: center; padding: 10px 14px; }
}

/* Honor reduced-motion preference site-wide for this component. */
@media (prefers-reduced-motion: reduce){
  .home-routine,
  .home-routine__preset,
  .home-routine__option,
  .home-routine__mood-btn,
  .home-routine .btn-secondary,
  .home-routine #homeRoutineReset,
  .hero-premium__copy .btn-primary{
    transition-duration: 0ms !important;
  }
  .home-routine__preset:hover,
  .home-routine .btn-secondary:hover,
  .home-routine #homeRoutineReset:hover,
  .hero-premium__copy .btn-primary:hover{
    transform: none !important;
  }
}

/* ============================================================
   MEGA MENU HOVER/CLICK STABILITY FIX
   Keeps Kategoriler and Markalar dropdowns open while moving
   from the trigger to the panel; also provides CSS hover fallback.
   ============================================================ */
.categories-wrap,
.brands-wrap{
  position: relative;
}

.categories-wrap::after,
.brands-wrap::after{
  content: '';
  position: absolute;
  left: -24px;
  right: -24px;
  top: 100%;
  height: 20px;
  display: none;
  z-index: 1;
}

.categories-wrap.open::after,
.brands-wrap.open::after,
.categories-wrap:hover::after,
.brands-wrap:hover::after,
.categories-wrap:focus-within::after,
.brands-wrap:focus-within::after{
  display: block;
}

.categories-wrap > .mega,
.brands-wrap > .mega{
  z-index: 2;
}

@media (hover: hover) and (pointer: fine){
  .categories-wrap:hover > .mega,
  .brands-wrap:hover > .mega,
  .categories-wrap:focus-within > .mega,
  .brands-wrap:focus-within > .mega,
  .categories-wrap.open > .mega,
  .brands-wrap.open > .mega{
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* ─────────────────────────────────────────────────────────────
   COSMOSKIN Account Dashboard · Phase 3
   Real customer dashboard: orders, favorites, addresses, skin profile
   ───────────────────────────────────────────────────────────── */
.account-page{background:#f7f1e9;color:#1a1510;min-height:100vh;}
.account-header{box-shadow:0 18px 50px rgba(35,29,23,.08);}
.cs-account-shell{padding-top:104px;}
.cs-account-hero{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:28px;align-items:end;padding:42px 0 30px;}
.cs-account-hero .section-kicker,.cs-panel-head span,.cs-card-head span,.cs-modal-head span,.cs-hero-label{display:block;font-size:10px;letter-spacing:.22em;text-transform:uppercase;font-weight:700;color:#a2835d;}
.cs-account-hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(42px,6vw,76px);line-height:.96;font-weight:400;letter-spacing:-.055em;margin:12px 0 14px;color:#18130f;max-width:780px;}
.cs-account-hero p{max-width:620px;font-size:15px;line-height:1.9;color:#6c6258;margin:0;}
.cs-account-hero-card{background:linear-gradient(145deg,#1a1510,#31251c);border:1px solid rgba(255,255,255,.1);border-radius:28px;padding:24px;color:#fff;box-shadow:0 24px 80px rgba(26,21,16,.18);}
.cs-account-hero-card strong{display:block;font-family:'Cormorant Garamond',serif;font-size:34px;font-weight:400;letter-spacing:-.03em;margin:8px 0 12px;color:#fff;}
.cs-account-hero-card small{display:block;color:rgba(255,255,255,.64);font-size:12px;line-height:1.7;margin-top:12px;}
.cs-tier-progress{height:6px;border-radius:999px;overflow:hidden;background:rgba(255,255,255,.14);}
.cs-tier-progress span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#d6b98a,#f3dfbd);transition:width .45s ease;}
.cs-account-loading{padding:16px 0 92px;}
.cs-loading-card{border:1px solid #e7dccd;background:#fffdf9;border-radius:30px;padding:36px;text-align:center;box-shadow:0 20px 55px rgba(39,32,25,.08);display:grid;justify-items:center;gap:10px;}
.cs-loading-card span{width:36px;height:36px;border-radius:50%;border:2px solid #e8ded0;border-top-color:#1a1510;animation:csSpin .9s linear infinite;}
.cs-loading-card strong{font-size:14px;color:#1a1510;}
.cs-loading-card p{margin:0;color:#84796f;font-size:13px;}
@keyframes csSpin{to{transform:rotate(360deg)}}
.cs-account-layout{display:grid;grid-template-columns:292px minmax(0,1fr);gap:28px;align-items:start;padding-bottom:92px;}
.cs-account-sidebar{position:sticky;top:116px;display:grid;gap:14px;}
.cs-profile-card{background:#fffdf9;border:1px solid #e7dccd;border-radius:28px;padding:24px;text-align:center;box-shadow:0 18px 45px rgba(38,31,24,.07);}
.cs-profile-avatar{width:74px;height:74px;margin:0 auto 14px;border-radius:50%;display:grid;place-items:center;background:linear-gradient(140deg,#f0e4d5,#d5c2a7);border:1px solid rgba(162,131,93,.34);font-family:'Cormorant Garamond',serif;font-size:28px;color:#49392c;}
.cs-profile-card strong{display:block;font-family:'Cormorant Garamond',serif;font-size:25px;font-weight:500;letter-spacing:-.03em;color:#1a1510;}
.cs-profile-card span{display:block;margin-top:5px;font-size:12px;color:#80766b;word-break:break-all;}
.cs-profile-card small{display:inline-block;margin-top:13px;padding:7px 11px;border-radius:999px;background:#f6eee5;color:#8c704c;font-size:10px;letter-spacing:.16em;text-transform:uppercase;font-weight:700;}
.cs-account-nav{background:#fffdf9;border:1px solid #e7dccd;border-radius:24px;overflow:hidden;box-shadow:0 18px 45px rgba(38,31,24,.07);}
.cs-account-nav button{width:100%;border:0;border-bottom:1px solid #eee5db;background:transparent;color:#5e544b;display:flex;align-items:center;gap:12px;padding:15px 17px;font:600 13px/1.2 'Plus Jakarta Sans',sans-serif;text-align:left;cursor:pointer;transition:background .18s,color .18s,transform .18s;}
.cs-account-nav button:last-child{border-bottom:0;}
.cs-account-nav button:hover{background:#f8f1e8;color:#18130f;}
.cs-account-nav button.is-active{background:#18130f;color:#fff;}
.cs-account-nav button span{width:19px;height:19px;display:grid;place-items:center;color:currentColor;opacity:.76;}
.cs-account-nav button svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.cs-account-nav button em{margin-left:auto;min-width:24px;padding:3px 7px;border-radius:999px;background:#f2e8dc;color:#8c704c;font-size:10px;font-style:normal;text-align:center;}
.cs-account-nav button.is-active em{background:rgba(255,255,255,.14);color:#fff;}
.cs-logout{border:1px solid #e1d1c1;border-radius:18px;background:#fffdf9;color:#8a4f43;padding:14px 18px;letter-spacing:.12em;text-transform:uppercase;font-weight:700;font-size:11px;cursor:pointer;}
.cs-logout:hover{background:#fff3ef;border-color:#d3afa4;}
.cs-account-content{min-width:0;}
.cs-panel{display:none;background:#fffdf9;border:1px solid #e7dccd;border-radius:30px;box-shadow:0 22px 60px rgba(38,31,24,.08);overflow:hidden;}
.cs-panel.is-active{display:block;}
.cs-panel-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;padding:28px 30px;border-bottom:1px solid #eee5db;}
.cs-panel-head h2{font-family:'Cormorant Garamond',serif;font-size:34px;font-weight:500;letter-spacing:-.04em;line-height:1;margin:8px 0 0;color:#18130f;}
.cs-panel-head p{margin:8px 0 0;color:#7b7168;font-size:13px;line-height:1.7;max-width:520px;}
.cs-stat-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1px;background:#eee5db;border-bottom:1px solid #eee5db;}
.cs-stat{background:#fffdf9;padding:24px 22px;display:grid;gap:8px;}
.cs-stat small{font-size:10px;letter-spacing:.18em;text-transform:uppercase;font-weight:800;color:#a2835d;}
.cs-stat strong{font-family:'Cormorant Garamond',serif;font-size:34px;font-weight:500;color:#18130f;letter-spacing:-.04em;line-height:1;}
.cs-stat span{font-size:12px;color:#80766b;line-height:1.6;}
.cs-overview-grid{display:grid;grid-template-columns:1.25fr .85fr;gap:18px;padding:24px;}
.cs-card{border:1px solid #e8ded2;background:#fffaf4;border-radius:24px;padding:22px;min-width:0;}
.cs-card-large{grid-row:span 2;}
.cs-card-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:17px;}
.cs-card-head button{border:0;background:transparent;color:#1a1510;font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;cursor:pointer;padding:0;}
.cs-empty{border:1px dashed #d8cabb;border-radius:22px;padding:26px;text-align:center;color:#7d7268;background:#fffdf9;}
.cs-empty strong{display:block;font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:500;color:#18130f;margin-bottom:6px;}
.cs-empty p{margin:0 0 16px;font-size:13px;line-height:1.8;}
.cs-order-list,.cs-notification-list{padding:24px;display:grid;gap:16px;}
.cs-order-card{border:1px solid #e7dccd;border-radius:24px;background:#fffaf4;overflow:hidden;}
.cs-order-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;padding:20px 22px;border-bottom:1px solid #eee5db;background:#fbf5ee;}
.cs-order-card-head small{display:block;font-size:10px;letter-spacing:.18em;text-transform:uppercase;font-weight:800;color:#a2835d;margin-bottom:6px;}
.cs-order-card-head strong{font-size:15px;color:#18130f;}
.cs-order-card-head time{display:block;margin-top:5px;font-size:12px;color:#80766b;}
.cs-status-pill{display:inline-flex;align-items:center;justify-content:center;border-radius:999px;padding:7px 12px;font-size:10px;letter-spacing:.14em;text-transform:uppercase;font-weight:800;background:#f1e7dc;color:#6d5841;white-space:nowrap;}
.cs-status-pill.paid,.cs-status-pill.preparing{background:#edf7f1;color:#1f744d;}
.cs-status-pill.shipped{background:#edf3fb;color:#245b8a;}
.cs-status-pill.delivered{background:#ecf7ef;color:#26714b;}
.cs-status-pill.cancelled,.cs-status-pill.payment_failed{background:#fff0ed;color:#8a3b2f;}
.cs-order-body{display:grid;grid-template-columns:1fr 260px;gap:20px;padding:20px 22px;}
.cs-order-items{display:grid;gap:12px;}
.cs-order-product{display:grid;grid-template-columns:62px minmax(0,1fr) auto;gap:13px;align-items:center;color:inherit;text-decoration:none;}
.cs-order-product img,.cs-fav-card img{width:100%;height:100%;object-fit:cover;display:block;}
.cs-order-thumb{width:62px;height:62px;border-radius:16px;background:#f2e8dc;border:1px solid #e7dccd;overflow:hidden;display:grid;place-items:center;color:#ac967b;}
.cs-order-product span{display:block;font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:#a2835d;font-weight:800;}
.cs-order-product strong{display:block;margin-top:4px;font-size:13px;line-height:1.45;color:#1a1510;}
.cs-order-product small{display:block;margin-top:4px;font-size:11px;color:#81776d;}
.cs-order-total{text-align:right;font-weight:800;color:#1a1510;white-space:nowrap;font-size:13px;}
.cs-order-side{border-left:1px solid #eee5db;padding-left:20px;display:grid;gap:11px;align-content:start;}
.cs-order-side div{display:flex;justify-content:space-between;gap:12px;font-size:12px;color:#74695f;}
.cs-order-side strong{color:#18130f;}
.cs-timeline{margin-top:8px;display:grid;gap:8px;}
.cs-timeline-item{position:relative;padding-left:18px;font-size:12px;line-height:1.6;color:#74695f;}
.cs-timeline-item:before{content:'';position:absolute;left:0;top:.55em;width:7px;height:7px;border-radius:50%;background:#c7b398;}
.cs-timeline-item strong{display:block;color:#1a1510;font-size:12px;}
.cs-fav-grid,.cs-address-grid{padding:24px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
.cs-fav-card{border:1px solid #e7dccd;border-radius:24px;background:#fffaf4;overflow:hidden;display:grid;grid-template-rows:auto 1fr;}
.cs-fav-media{aspect-ratio:1/1;background:#f2e8dc;display:grid;place-items:center;color:#a8957b;text-decoration:none;overflow:hidden;}
.cs-fav-body{padding:17px;display:grid;gap:8px;}
.cs-fav-body small{font-size:10px;letter-spacing:.16em;text-transform:uppercase;font-weight:800;color:#a2835d;}
.cs-fav-body h3{font-family:'Cormorant Garamond',serif;font-size:22px;line-height:1.05;font-weight:500;margin:0;color:#18130f;}
.cs-fav-price{font-size:17px;color:#18130f;font-weight:800;}
.cs-fav-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:6px;}
.cs-mini-btn{border:1px solid #d8c8b7;border-radius:999px;background:#fffdf9;color:#18130f;padding:9px 12px;font-size:10px;letter-spacing:.1em;text-transform:uppercase;font-weight:800;cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;}
.cs-mini-btn:hover{background:#18130f;border-color:#18130f;color:#fff;}
.cs-mini-btn.danger:hover{background:#8a4f43;border-color:#8a4f43;}
.cs-address-card{border:1px solid #e7dccd;border-radius:24px;background:#fffaf4;padding:20px;display:grid;gap:12px;}
.cs-address-card.is-default{border-color:#c8a577;box-shadow:inset 0 0 0 1px rgba(200,165,119,.34);}
.cs-address-card .tag{justify-self:start;border:1px solid #e0cfbc;border-radius:999px;padding:5px 10px;background:#f5ebdf;color:#8c704c;font-size:9px;letter-spacing:.14em;text-transform:uppercase;font-weight:800;}
.cs-address-card h3{font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:500;margin:0;color:#18130f;}
.cs-address-card p{margin:0;color:#6f665d;font-size:13px;line-height:1.75;}
.cs-address-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:4px;}
.cs-form{padding:24px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.cs-form-narrow{max-width:520px;grid-template-columns:1fr;}
.cs-form label{display:grid;gap:8px;color:#5f554c;font-size:12px;font-weight:700;}
.cs-form label span{font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:#a2835d;font-weight:800;}
.cs-input,.cs-select{width:100%;border:1px solid #d8c8b7;border-radius:15px;background:#fffdf9;color:#18130f;font:500 14px/1.2 'Plus Jakarta Sans',sans-serif;padding:13px 15px;outline:none;transition:border-color .16s,box-shadow .16s;background-clip:padding-box;}
.cs-input:focus,.cs-select:focus{border-color:#18130f;box-shadow:0 0 0 4px rgba(26,21,16,.06);}
.cs-input[readonly]{background:#f4ece3;color:#81766b;}
.cs-form .full{grid-column:1/-1;}
.cs-checks{grid-column:1/-1;border:1px solid #e7dccd;border-radius:20px;padding:16px;display:flex;gap:10px 18px;flex-wrap:wrap;margin:0;background:#fffaf4;}
.cs-checks legend{padding:0 8px;font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:#a2835d;font-weight:800;}
.cs-checks label,.cs-check{display:flex!important;align-items:center;gap:8px;font-size:12px;color:#5f554c;font-weight:700;}
.cs-checks input,.cs-check input{accent-color:#18130f;}
.cs-recommendation-strip{margin:0 24px 24px;border:1px solid #e7dccd;border-radius:24px;padding:20px;background:linear-gradient(145deg,#fbf4eb,#fffdf9);display:grid;gap:12px;}
.cs-rec-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;}
.cs-rec-card{border:1px solid #e4d7c7;border-radius:18px;background:#fffdf9;padding:14px;text-decoration:none;color:#18130f;display:grid;gap:7px;}
.cs-rec-card small{font-size:9px;letter-spacing:.16em;text-transform:uppercase;color:#a2835d;font-weight:800;}
.cs-rec-card strong{font-size:13px;line-height:1.45;}
.cs-notification{border:1px solid #e7dccd;border-radius:22px;padding:18px 20px;background:#fffaf4;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:12px;align-items:start;}
.cs-notification.is-unread{border-color:#c8a577;background:#fff8ef;}
.cs-notification small{font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:#a2835d;font-weight:800;}
.cs-notification strong{display:block;margin-top:6px;color:#18130f;font-size:15px;}
.cs-notification p{margin:7px 0 0;color:#6f665d;font-size:13px;line-height:1.7;}
.cs-danger-zone{margin:0 24px 24px;border:1px solid #efd3ca;background:#fff5f2;border-radius:22px;padding:20px;display:flex;justify-content:space-between;gap:16px;align-items:center;color:#6f4b42;}
.cs-danger-zone p{margin:6px 0 0;font-size:13px;line-height:1.7;color:#8a665e;}
.cs-modal{position:fixed;inset:0;background:rgba(26,21,16,.42);display:none;place-items:center;z-index:1000;padding:18px;backdrop-filter:blur(8px);}
.cs-modal.is-open{display:grid;}
.cs-modal-card{width:min(780px,100%);max-height:min(88vh,860px);overflow:auto;background:#fffdf9;border:1px solid #e4d7c7;border-radius:28px;box-shadow:0 34px 120px rgba(26,21,16,.28);}
.cs-modal-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;padding:24px;border-bottom:1px solid #eee5db;}
.cs-modal-head h2{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:500;letter-spacing:-.04em;margin:7px 0 0;color:#18130f;}
.cs-modal-close{width:38px;height:38px;border-radius:50%;border:1px solid #e0d2c2;background:#fffaf4;color:#1a1510;font-size:22px;line-height:1;cursor:pointer;}
.cs-modal-actions{grid-column:1/-1;display:flex;justify-content:flex-end;gap:10px;margin-top:4px;}
.cs-toast{position:fixed;right:22px;bottom:22px;max-width:360px;background:#18130f;color:#fff;border-radius:18px;padding:14px 16px;font-size:13px;line-height:1.55;box-shadow:0 18px 55px rgba(26,21,16,.26);transform:translateY(18px);opacity:0;pointer-events:none;transition:transform .22s ease,opacity .22s ease;z-index:1100;}
.cs-toast.is-visible{opacity:1;transform:translateY(0);}
@media(max-width:1100px){.cs-account-hero{grid-template-columns:1fr}.cs-account-layout{grid-template-columns:1fr}.cs-account-sidebar{position:static}.cs-account-nav{display:flex;overflow:auto}.cs-account-nav button{min-width:178px;border-bottom:0;border-right:1px solid #eee5db}.cs-stat-grid{grid-template-columns:repeat(2,1fr)}.cs-overview-grid{grid-template-columns:1fr}.cs-card-large{grid-row:auto}.cs-fav-grid,.cs-address-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:720px){.cs-account-shell{padding-top:86px}.cs-account-hero{padding:28px 0 20px}.cs-account-hero h1{font-size:42px}.cs-panel-head{padding:22px;display:grid}.cs-stat-grid{grid-template-columns:1fr}.cs-overview-grid,.cs-order-list,.cs-fav-grid,.cs-address-grid,.cs-notification-list{padding:16px}.cs-fav-grid,.cs-address-grid{grid-template-columns:1fr}.cs-order-card-head{display:grid}.cs-order-body{grid-template-columns:1fr}.cs-order-side{border-left:0;border-top:1px solid #eee5db;padding-left:0;padding-top:16px}.cs-form{grid-template-columns:1fr;padding:18px}.cs-rec-row{grid-template-columns:1fr}.cs-danger-zone{display:grid}.cs-modal-actions{display:grid}.cs-modal-actions .btn{width:100%}.cs-toast{left:16px;right:16px;bottom:16px;max-width:none}}

/* ==========================================================
   COSMOSKIN Phase 6.3 — Professional Account Order Tracking UI
   Scope: account/profile.html orders tab + account/order-detail.html
   ========================================================== */
.cs-order-card--rich{position:relative;border-color:#e2d2bd;background:linear-gradient(180deg,#fffdf9 0%,#fff8ef 100%);box-shadow:0 18px 44px rgba(35,27,20,.055)}
.cs-order-card--rich:before{content:"";position:absolute;inset:0 0 auto;height:3px;background:linear-gradient(90deg,#17130f,#c7aa83,#efe0cb);opacity:.85}
.cs-order-head-actions{display:flex;align-items:center;justify-content:flex-end;gap:10px;flex-wrap:wrap}
.cs-order-progress{position:relative;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:0;padding:18px 22px;border-bottom:1px solid #eee5db;background:rgba(252,245,237,.72)}
.cs-order-step{position:relative;display:grid;gap:7px;padding:0 8px 0 0;min-width:0;color:#8b8074}
.cs-order-step:before{content:"";position:absolute;left:14px;right:0;top:10px;height:1px;background:#e2d5c5;z-index:0}
.cs-order-step:last-child:before{display:none}
.cs-order-step>span{position:relative;z-index:1;width:22px;height:22px;border-radius:50%;border:1px solid #d9c8b2;background:#fffaf4;box-shadow:0 0 0 5px #fff8ef}
.cs-order-step>span:after{content:"";position:absolute;inset:5px;border-radius:50%;background:#d8c4ab;opacity:.55}
.cs-order-step strong{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#62564b;line-height:1.35}
.cs-order-step small{font-size:11px;color:#9a8d80;line-height:1.45}
.cs-order-step.is-done:before{background:#bda07a}
.cs-order-step.is-done>span{border-color:#17130f;background:#17130f;box-shadow:0 0 0 5px #f5eadc}
.cs-order-step.is-done>span:after{background:#fff8ef;opacity:1;inset:7px}
.cs-order-step.is-current strong{color:#17130f}
.cs-order-step.is-current>span{border-color:#a98862;background:#fff8ef;box-shadow:0 0 0 5px rgba(189,160,122,.18)}
.cs-order-step.is-current>span:after{background:#a98862;opacity:1}
.cs-order-step.is-muted{opacity:.58}
.cs-order-step.is-problem>span{border-color:#8a3b2f;background:#fff0ed;box-shadow:0 0 0 5px rgba(138,59,47,.08)}
.cs-order-step.is-problem>span:after{background:#8a3b2f;opacity:1}
.cs-order-progress.is-compact{padding:14px 18px}.cs-order-progress.is-compact .cs-order-step small{display:none}.cs-order-progress.is-compact .cs-order-step strong{font-size:10px}
.cs-order-product-copy{min-width:0}.cs-order-product:hover .cs-order-thumb{transform:translateY(-1px);box-shadow:0 10px 24px rgba(35,27,20,.08)}
.cs-order-thumb{transition:transform .18s ease,box-shadow .18s ease}.cs-order-side .cs-order-actions{display:flex;justify-content:flex-start;flex-wrap:wrap;gap:8px;margin-top:4px}.cs-mini-btn.dark{background:#17130f;color:#fff8ef;border-color:#17130f}.cs-mini-btn.danger{color:#8a3b2f;border-color:#eed3cd;background:#fff6f3}
.cs-timeline-item time{display:block;margin-top:2px;color:#a09284;font-size:11px}.cs-timeline-item p{margin:3px 0 0;color:#74695f}.cs-order-card.is-compact .cs-order-body{grid-template-columns:1fr}.cs-order-card.is-compact .cs-order-side{grid-template-columns:repeat(2,minmax(0,1fr));border-left:0;border-top:1px solid #eee5db;padding-left:0;padding-top:16px}.cs-order-card.is-compact .cs-timeline{display:none}
.order-detail-page{background:linear-gradient(180deg,#faf5ee 0%,#f3e8db 100%)}.cs-order-detail-shell{padding:148px 0 52px}.cs-order-detail-hero{display:flex;align-items:flex-end;justify-content:space-between;gap:22px;margin-bottom:20px;padding:30px;border:1px solid #e3d4c2;border-radius:30px;background:linear-gradient(135deg,#fffdf9 0%,#f7ecdc 100%);box-shadow:0 24px 70px rgba(35,27,20,.07)}.cs-order-detail-hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(42px,5vw,72px);line-height:.94;letter-spacing:-.055em;font-weight:500;margin:12px 0 10px;color:#18130f}.cs-order-detail-hero h1 span{color:#92714c}.cs-order-detail-hero p{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:0;color:#73685e;line-height:1.65}.cs-order-detail-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:18px;align-items:start}.cs-order-detail-main,.cs-order-detail-aside{display:grid;gap:18px}.cs-detail-card{border:1px solid #e3d4c2;border-radius:26px;background:#fffdf9;box-shadow:0 18px 44px rgba(35,27,20,.055);overflow:hidden}.cs-detail-card-head{padding:22px 24px 0}.cs-detail-card-head span{display:block;font-size:10px;letter-spacing:.22em;text-transform:uppercase;font-weight:800;color:#a2835d}.cs-detail-card-head h2{font-family:'Cormorant Garamond',serif;font-size:31px;line-height:1.02;letter-spacing:-.04em;font-weight:500;margin:8px 0 16px;color:#18130f}.cs-order-progress.is-detail{border:0;background:transparent;padding:8px 24px 26px}.cs-detail-items{display:grid;gap:10px;padding:0 24px 24px}.cs-detail-item{display:grid;grid-template-columns:68px minmax(0,1fr) auto;align-items:center;gap:14px;padding:12px;border:1px solid #eee1d2;border-radius:20px;background:#fff8ef;color:inherit;text-decoration:none}.cs-detail-item small{display:block;font-size:10px;letter-spacing:.16em;text-transform:uppercase;font-weight:800;color:#a2835d}.cs-detail-item strong{display:block;margin-top:5px;font-size:14px;line-height:1.4;color:#18130f}.cs-detail-item em{display:block;margin-top:5px;font-style:normal;font-size:12px;color:#7a6f64}.cs-detail-item b{white-space:nowrap;font-size:14px}.cs-detail-summary{display:grid;gap:10px;padding:0 24px 24px}.cs-detail-summary>div{display:flex;align-items:center;justify-content:space-between;gap:14px;border-bottom:1px solid #eee5db;padding:0 0 10px;font-size:13px;color:#7d7166}.cs-detail-summary>div:last-child{border-bottom:0}.cs-detail-summary strong{color:#18130f;text-align:right}.cs-detail-summary .is-total{padding:13px 0;border-top:1px solid #d8c6b0;border-bottom:1px solid #d8c6b0;margin-top:2px}.cs-detail-summary .is-total strong{font-size:18px}.cs-detail-track{margin:0 24px 24px;width:calc(100% - 48px);justify-content:center}.cs-detail-address{padding:0 24px 24px;color:#71665c;line-height:1.7}.cs-detail-address strong{display:block;color:#18130f;margin-bottom:6px}.cs-detail-address p{margin:4px 0}.cs-timeline--detail{padding:0 24px 24px;margin-top:0}.cs-timeline--detail .cs-timeline-item{padding:0 0 18px 24px;border-left:1px solid #e3d4c2}.cs-timeline--detail .cs-timeline-item:before{left:-4px;top:2px}.cs-timeline--detail .cs-timeline-item:last-child{border-left-color:transparent;padding-bottom:0}.cs-loading-card.is-error{border-color:#edd2cb;background:#fff6f3;color:#8a3b2f}.minimal-footer{padding-top:20px}
@media(max-width:980px){.cs-order-detail-grid{grid-template-columns:1fr}.cs-order-detail-aside{grid-template-columns:repeat(2,minmax(0,1fr))}.cs-order-detail-aside .cs-detail-card:first-child{grid-column:1/-1}.cs-order-body{grid-template-columns:1fr}.cs-order-side{border-left:0;border-top:1px solid #eee5db;padding-left:0;padding-top:16px}}
@media(max-width:720px){.cs-order-progress{grid-template-columns:1fr;gap:12px}.cs-order-step{grid-template-columns:24px 1fr;column-gap:10px;padding:0}.cs-order-step:before{left:11px;right:auto;top:22px;bottom:-16px;width:1px;height:auto}.cs-order-step strong,.cs-order-step small{grid-column:2}.cs-order-step>span{grid-row:1/3}.cs-order-head-actions{justify-content:flex-start}.cs-order-product,.cs-detail-item{grid-template-columns:58px minmax(0,1fr);align-items:start}.cs-order-total,.cs-detail-item b{grid-column:2;text-align:left}.cs-order-card.is-compact .cs-order-side{grid-template-columns:1fr}.cs-order-detail-shell{padding-top:120px}.cs-order-detail-hero{display:grid;padding:24px}.cs-order-detail-hero h1{font-size:42px}.cs-order-detail-aside{grid-template-columns:1fr}.cs-detail-card-head,.cs-detail-items,.cs-detail-summary,.cs-detail-address,.cs-timeline--detail{padding-left:18px;padding-right:18px}.cs-order-progress.is-detail{padding-left:18px;padding-right:18px}}
.cs-order-side .cs-timeline{display:grid}.cs-order-side .cs-timeline-item{display:block;justify-content:initial}.cs-order-side .cs-timeline-item strong{display:block;text-align:left}.cs-order-side .cs-timeline-item time{display:block;text-align:left}
/* Smart Routine bundle discount summary */
.routine-discount-row strong,
.checkout-routine-discount strong{color:#7C5B33!important;}
.routine-discount-row span,
.checkout-routine-discount span{font-weight:800;}

/* === COSMOSKIN critical UI/UX fixes — May 2026 === */
.home-hero h1 .home-hero__line{display:block;white-space:nowrap;}
.home-hero h1 em.home-hero__line{font-style:italic;}
.hero-rating-card--editorial .hero-rating-card__score{margin-top:6px;}
.hero-rating-card--editorial .hero-rating-card__score strong{font-size:clamp(16px,1.4vw,22px);letter-spacing:-.02em;}
.hero-rating-card--editorial .hero-rating-card__text{display:block;max-width:360px;line-height:1.5;}
.smart-routine__trust-item--avatars .smart-routine__avatars{opacity:.9;}
.routine-selection-note,
.bestseller-rating--empty{display:inline-flex;align-items:center;gap:5px;width:max-content;max-width:100%;margin:4px 0 8px;padding:7px 10px;border:1px solid rgba(35,27,20,.09);border-radius:999px;background:rgba(255,255,255,.62);color:#74675c;font-size:11px;font-weight:750;line-height:1.25;}
.bestseller-rating--empty strong{color:#19130f;font-size:11px;}
.site-search-clear{transition:opacity .18s ease, visibility .18s ease;}
.site-search-input:placeholder-shown ~ .site-search-clear{opacity:0;visibility:hidden;pointer-events:none;}
.cart-count.is-empty{display:none!important;}
.optional-label{margin-left:6px;color:#8a7d70;font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
body.checkout-cart-empty #checkoutForm,
body.checkout-cart-empty #checkoutAuthGate{display:none!important;}
body.checkout-cart-empty .checkout-main-card{overflow:visible;}
body.checkout-cart-empty .checkout-card-head{border-bottom:0;border-radius:34px;}
body.checkout-cart-empty .checkout-card-head:after{content:"Sepetin boş. Ürünleri keşfederek alışverişe başlayabilirsin.";display:block;margin-top:16px;padding:14px 16px;border:1px solid rgba(35,27,20,.10);border-radius:18px;background:rgba(255,255,255,.62);color:#65584d;font-size:13px;font-weight:650;line-height:1.55;}
body.checkout-cart-empty .checkout-empty-state{display:block!important;padding:20px;border:1px solid rgba(35,27,20,.10);border-radius:22px;background:rgba(255,255,255,.68);text-align:center;line-height:1.65;}
body.checkout-cart-empty .checkout-empty-state a{display:inline-flex;margin-top:10px;padding:11px 16px;border-radius:999px;background:#17120f;color:#fff;text-decoration:none;font-size:11px;font-weight:850;letter-spacing:.06em;text-transform:uppercase;}
.cs-static-product-card .product-media img{object-fit:contain;}
.collection-empty{grid-column:1/-1;padding:28px;border:1px solid rgba(35,27,20,.10);border-radius:22px;background:rgba(255,255,255,.62);color:#6f6257;text-align:center;}
@media (max-width:760px){.home-hero h1 .home-hero__line{white-space:normal;}.hero-rating-card--editorial .hero-rating-card__text{max-width:none;}.routine-selection-note,.bestseller-rating--empty{width:100%;justify-content:center;}}

.smart-routine__rating--empty{
  color:rgba(43,36,32,.58);
  font-weight:600;
  letter-spacing:.01em;
}

.header .site-search-form .site-search-input:placeholder-shown ~ .site-search-clear{
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
}
.header .site-search-form .site-search-clear:not(.is-visible){
  visibility:hidden;
}

/* === COSMOSKIN account/order-detail refinement pass — scoped only to order detail === */
.order-detail-page .cs-order-detail-shell{max-width:min(1240px,calc(100% - 64px));padding:132px 0 72px;}
.order-detail-page .cs-order-detail-hero{align-items:center;border-radius:28px;background:radial-gradient(circle at 92% 16%,rgba(176,138,94,.18),transparent 32%),linear-gradient(135deg,#fffdf9 0%,#f7ecdc 100%);}
.order-detail-page .cs-order-detail-hero h1{max-width:780px;overflow-wrap:anywhere;}
.order-detail-page .cs-order-detail-grid{grid-template-columns:minmax(0,1fr) minmax(320px,360px);gap:20px;}
.order-detail-page .cs-detail-card{border-radius:24px;}
.order-detail-page .cs-order-progress.is-detail{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:0;padding:10px 24px 28px;background:transparent;border:0;}
.order-detail-page .cs-order-progress.is-detail .cs-order-step{min-width:0;}
.order-detail-page .cs-order-progress.is-detail .cs-order-step strong{font-size:10px;letter-spacing:.06em;line-height:1.25;overflow-wrap:anywhere;}
.order-detail-page .cs-order-progress.is-detail .cs-order-step small{font-size:10.5px;line-height:1.35;}
.order-detail-page .cs-detail-item{grid-template-columns:72px minmax(0,1fr) minmax(72px,max-content);gap:14px;min-width:0;}
.order-detail-page .cs-detail-item>span:not(.cs-order-thumb){min-width:0;}
.order-detail-page .cs-detail-item strong{overflow-wrap:anywhere;}
.order-detail-page .cs-detail-item em{line-height:1.45;}
.order-detail-page .cs-detail-item b{text-align:right;}
.order-detail-page .cs-detail-summary>div{align-items:flex-start;line-height:1.45;}
.order-detail-page .cs-detail-summary strong{max-width:58%;overflow-wrap:anywhere;}
.order-detail-page .cs-detail-track{border-radius:999px;min-height:42px;font-weight:800;letter-spacing:.08em;}
@media(max-width:980px){.order-detail-page .cs-order-detail-shell{max-width:calc(100% - 32px);padding-top:120px}.order-detail-page .cs-order-detail-grid{grid-template-columns:1fr}.order-detail-page .cs-order-detail-aside{grid-template-columns:repeat(2,minmax(0,1fr));}.order-detail-page .cs-order-progress.is-detail{grid-template-columns:repeat(5,minmax(0,1fr));}}
@media(max-width:720px){.order-detail-page .cs-order-detail-shell{max-width:calc(100% - 24px);padding-top:112px}.order-detail-page .cs-order-detail-hero{display:grid}.order-detail-page .cs-order-progress.is-detail{grid-template-columns:1fr;gap:12px}.order-detail-page .cs-detail-item{grid-template-columns:62px minmax(0,1fr)}.order-detail-page .cs-detail-item b{grid-column:2;text-align:left}.order-detail-page .cs-order-detail-aside{grid-template-columns:1fr}.order-detail-page .cs-detail-summary strong{max-width:66%;}}


/* Premium payment logos from brand assets */
.footer .payment-logos{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}
.footer .payment-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:72px;
  min-width:72px;
  height:42px;
  padding:7px 11px;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(237,230,220,.22);
  box-shadow:0 8px 22px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.9);
  overflow:hidden;
}
.footer .payment-logo img{
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}
.footer .payment-logo--visa{width:76px;min-width:76px;}
.footer .payment-logo--amex{width:76px;min-width:76px;}
.footer .payment-logo--troy{width:76px;min-width:76px;}
.footer .payment-logo--mastercard img{transform:scale(1.04);}
.footer .payment-logo--amex img{transform:scale(1.06);}
.footer .payment-logo--troy img{transform:scale(1.08);}
@media (max-width:540px){
  .footer .payment-logos{gap:8px;}
  .footer .payment-logo,.footer .payment-logo--visa,.footer .payment-logo--amex,.footer .payment-logo--troy{
    width:62px;
    min-width:62px;
    height:36px;
    border-radius:10px;
    padding:6px 9px;
  }
}

.home-hero h1 .home-hero__line{white-space:nowrap !important;}

/* Hero + cart count refinement patch */
@media (max-width:760px){
  .home-hero h1 .home-hero__line{white-space:nowrap !important;}
  .home-hero__script{letter-spacing:-.01em;}
}
.cart-count{align-items:center !important;justify-content:center !important;text-align:center;line-height:1 !important;font-variant-numeric:tabular-nums;}
.qty span{align-items:center !important;justify-content:center !important;text-align:center;line-height:1 !important;}

/* COSMOSKIN operations inventory states */
.cs-stock-line {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .04em;
  color: #8a7661;
}
.product-card.is-out-of-stock .product-media,
.pdp-related-card.is-out-of-stock .product-media {
  opacity: .78;
}
.btn.is-stock-disabled,
button[aria-disabled="true"].is-stock-disabled {
  cursor: not-allowed;
  border-color: #d7cbbb !important;
  background: #eee7dc !important;
  color: #75685a !important;
  box-shadow: none !important;
}
.pdp5-stock.is-out {
  color: #8a3b2f;
  background: #f8ece7;
  border-color: #ead3c9;
}
.pdp5-stock.is-low {
  color: #8a632c;
  background: #fbf3df;
  border-color: #ead9ad;
}
.cs-restock-form {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid #eadfce;
  border-radius: 18px;
  background: #fffaf4;
  display: grid;
  gap: 12px;
}
.cs-restock-form label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7f6d5a;
  font-weight: 700;
}
.cs-restock-form input {
  width: 100%;
  border: 1px solid #dfd2c0;
  border-radius: 999px;
  background: #fff;
  padding: 12px 14px;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: #17120f;
}
.cs-restock-form p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #6f6256;
}
.cart-item.is-stock-problem,
.checkout-item.is-stock-problem {
  border-color: #ead3c9;
  background: #fff7f2;
}
.cart-stock-warning {
  margin-top: 6px;
  color: #8a3b2f;
  font-size: 12px;
  line-height: 1.45;
}
