/* ============================================================
   NOVA — Section styles
   ============================================================ */

/* ── Announcement bar ── */
.announce {
  background: var(--brand-700);
  color: #FDFBF5;
  overflow: hidden;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.announce-track {
  display: flex;
  gap: 56px;
  padding: 10px 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 251, 245, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 48px;
}
.nav-left, .nav-right {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.nav-left a::after, .nav-right a::after {
  content:''; position:absolute; left:0; right:0; bottom:0; height:1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.nav-left a:hover::after, .nav-right a:hover::after { transform: scaleX(1); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-700);
}
.brand-mark { flex-shrink: 0; }
.brand-word {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--ink-900);
  padding-left: 4px;
}
.icon-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items:center; justify-content:center;
  border-radius: 50%;
  color: var(--text);
  transition: background .2s;
  position: relative;
}
.icon-btn:hover { background: var(--cream-100); }
.cart-count {
  position:absolute; top:2px; right:2px;
  width: 16px; height: 16px;
  background: var(--brand-700);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-body);
}
.menu-btn { display: none; width: 32px; height:32px; flex-direction:column; gap:5px; align-items:center; justify-content:center; }
.menu-btn span { width: 22px; height: 1.5px; background: currentColor; transition: transform .3s; }
.menu-btn.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-btn.open span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* ── Mobile nav ── */
.mobile-nav {
  position: fixed;
  top: 0; left:0; right:0;
  padding: 100px 24px 40px;
  background: var(--bg);
  z-index: 30;
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  border-bottom: 1px solid var(--border);
}
.m-divider { height: 24px; }

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  mix-blend-mode: multiply;
}
.blob-1 { width: 560px; height: 560px; background: var(--brand-200); top: -120px; right: -80px; }
.blob-2 { width: 440px; height: 440px; background: var(--blush-100); bottom: -120px; left: -40px; }
.blob-3 { width: 320px; height: 320px; background: var(--gold-100); top: 40%; left: 30%; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 78vh;
  padding-top: 60px;
  padding-bottom: 40px;
}
.hero-overline { color: var(--brand-600); margin-bottom: 28px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(54px, 8.6vw, 120px);
  line-height: .96;
  letter-spacing: -0.045em;
  color: var(--ink-900);
  margin-bottom: 32px;
}
.hero-title em { font-style: normal; color: var(--brand-500); font-weight: 500; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-meta {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 560px;
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  line-height: 1;
}
.hero-meta span {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  height: 640px;
}
.hero-card {
  position: absolute;
  transform-origin: center;
}
.hero-card-main {
  top: 0; right: 0;
  width: 78%;
  height: 560px;
  background: linear-gradient(160deg, var(--cream-100) 0%, var(--brand-100) 100%);
  border-radius: 280px 280px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card-inner {
  position: relative;
  transform: translateY(20px);
}
.hero-card-sub {
  bottom: -20px; left: 0;
  width: 46%;
  height: 280px;
  background: var(--cream-100);
  border-radius: 24px;
  display: flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
}
.leaf { width: 60%; height: 80%; }
.hero-card-badge {
  top: 24px; left: 24px;
  width: 120px; height: 120px;
  animation: slowspin 30s linear infinite;
}
@keyframes slowspin {
  from { transform: rotate(0); } to { transform: rotate(360deg); }
}
.seal { width: 100%; height: 100%; }

.price-tag {
  position: absolute;
  bottom: -18px;
  right: -40px;
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 16px 22px;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-lg);
}
.price-tag-label {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: .7;
}
.price-tag-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Bottle (reusable) */
.bottle {
  position: relative;
  width: 180px;
  height: 340px;
  margin: 0 auto;
}
.bottle.sm { width: 80px; height: 150px; }
.bottle.lg { width: 220px; height: 420px; }
.bottle-cap {
  width: 48%;
  height: 13%;
  margin: 0 auto;
  background: linear-gradient(180deg, #272522, #141311);
  border-radius: 8px 8px 2px 2px;
  position: relative;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.2), 0 4px 8px rgba(0,0,0,.15);
}
.bottle-cap::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%;
  bottom: -4px;
  height: 6px;
  background: #272522;
  border-radius: 2px;
}
.bottle-body {
  position: relative;
  width: 100%;
  height: 90%;
  margin-top: -2px;
  background: linear-gradient(180deg,
    rgba(253,251,245,.9) 0%,
    rgba(232,220,185,.85) 45%,
    rgba(184,146,58,.55) 100%);
  border-radius: 20px 20px 44px 44px;
  overflow: hidden;
  box-shadow:
    inset -8px 0 20px rgba(255,255,255,.5),
    inset 8px 0 20px rgba(120,90,20,.15),
    0 20px 40px rgba(120,90,20,.22);
}
.bottle-liquid {
  position: absolute;
  inset: 14% 8% 6%;
  border-radius: 14px 14px 38px 38px;
  background: linear-gradient(180deg, #EADA9C, #C8A645 70%, #9A7A2D);
  opacity: .65;
  filter: blur(2px);
}
.bottle-shine {
  position: absolute;
  left: 18%;
  top: 14%;
  width: 10%;
  height: 68%;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,0));
  border-radius: 40px;
  filter: blur(3px);
}
.bottle-label {
  position: absolute;
  inset: 26% 10% 14%;
  background: var(--cream-50);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  text-align: center;
  color: var(--ink-900);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.bottle-logo { font-size: 10px; color: var(--brand-700); margin-bottom: 4px; }
.bottle-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.32em;
  padding-left: 4px;
  color: var(--ink-900);
}
.bottle-line { width: 24px; height: 1px; background: var(--gold-500); margin: 6px 0; }
.bottle-series {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.3;
  color: var(--brand-700);
}
.bottle-vol {
  font-size: 5.5px;
  letter-spacing: 0.18em;
  color: var(--ink-500);
  margin-top: 8px;
}
.bottle.sm .bottle-label { inset: 30% 15% 18%; padding: 4px; }
.bottle.sm .bottle-name { font-size: 8px; letter-spacing: .2em; }
.bottle.sm .bottle-line, .bottle.sm .bottle-series, .bottle.sm .bottle-vol, .bottle.sm .bottle-logo { display: none; }
.bottle.lg .bottle-name { font-size: 18px; }
.bottle.lg .bottle-series { font-size: 9px; }

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}
.scroll-dot {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-dot::after {
  content:'';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-700);
  animation: scrolldot 2.2s var(--ease-out) infinite;
}
@keyframes scrolldot {
  0% { top: -5px; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}
.hero-scroll span {
  font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase;
}

/* ══════════════ MARQUEE ══════════════ */
.marquee {
  background: var(--brand-700);
  color: var(--cream-50);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--brand-600);
  border-bottom: 1px solid var(--brand-600);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  font-size: clamp(34px, 5vw, 64px);
  align-items: center;
  animation: marquee 28s linear infinite;
}
.marquee-track .dot { color: var(--gold-400); font-size: .5em; }

/* ══════════════ SECTION HEAD ══════════════ */
.section-head {
  padding: 96px 0 56px;
}
.section-head.with-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  margin-top: 20px;
}
.section-title em {
  font-style: normal;
  font-weight: 500;
  color: var(--brand-500);
}
.section-foot {
  padding: 72px 0 24px;
  display: flex;
  justify-content: center;
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tab {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: all .3s;
}
.tab:hover { color: var(--text); border-color: var(--ink-400); }
.tab.is-active {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}

/* ══════════════ CATEGORIES ══════════════ */
.cats {
  padding: 40px 0 120px;
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.cat-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--c, var(--cream-100));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: transform .5s var(--ease-out);
}
.cat-card:hover .cat-visual { transform: translateY(-6px); }
.cat-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 70%, rgba(255,255,255,.5), transparent 60%);
}
.cat-shape {
  position: relative;
  z-index: 1;
  transform: scale(1.1);
  transition: transform .6s var(--ease-out);
}
.cat-card:hover .cat-shape { transform: scale(1.18) rotate(-3deg); }
.cat-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 20px 4px 0;
}
.cat-n {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.cat-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.cat-count {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Compact (makeup) */
.compact {
  width: 140px; height: 140px;
  background: radial-gradient(circle at 40% 40%, #FDFBF5, #F0CAB7);
  border-radius: 50%;
  box-shadow: 0 12px 36px rgba(201,130,100,.3), inset 0 4px 8px rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
}
.compact-inner {
  width: 74%; height: 74%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #F0CAB7, #C98264);
  box-shadow: inset 0 -4px 12px rgba(120,60,40,.25);
}

/* Flacon (fragrance) */
.flacon { width: 120px; height: 170px; display:flex; flex-direction:column; align-items:center; }
.flacon-cap {
  width: 28px; height: 34px;
  background: linear-gradient(180deg, #EADA9C, #9A7A2D);
  border-radius: 3px;
}
.flacon-body {
  width: 100%; height: 130px;
  margin-top: -4px;
  background: linear-gradient(180deg, rgba(253,251,245,.9), rgba(217,192,106,.5));
  border-radius: 14px;
  box-shadow: inset -6px 0 14px rgba(255,255,255,.5), inset 6px 0 14px rgba(150,110,40,.15), 0 12px 30px rgba(150,110,40,.2);
  position: relative;
}
.flacon-body::after {
  content: 'NOVA';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--gold-600);
  padding-left: 4px;
}

/* Jar (body) */
.jar { width: 160px; height: 130px; display: flex; flex-direction:column; align-items:center; }
.jar-lid {
  width: 84%;
  height: 28px;
  background: linear-gradient(180deg, #3E7248, #1E3A2F);
  border-radius: 12px 12px 2px 2px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.15);
}
.jar-body {
  width: 100%;
  height: 100px;
  margin-top: -2px;
  background: linear-gradient(180deg, var(--cream-50), var(--brand-100));
  border-radius: 6px 6px 16px 16px;
  box-shadow: inset -6px 0 14px rgba(255,255,255,.4), inset 6px 0 14px rgba(30,58,47,.12), 0 14px 30px rgba(30,58,47,.15);
  position: relative;
}
.jar-body::after {
  content: '✦ NOVA';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--brand-700);
}

/* ══════════════ CAROUSEL ══════════════ */
.products-carousel { position: relative; }
.products-track-wrap { overflow: hidden; }
.bestsellers .products {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  will-change: transform;
}
.bestsellers .product { flex-shrink: 0; cursor: default; }
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.carousel-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
  color: var(--ink-900);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
  box-shadow: 0 8px 24px rgba(20,19,17,.15);
}

/* ══════════════ PRODUCTS ══════════════ */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .4s var(--ease-out);
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ink-900);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 100px;
  z-index: 2;
}
.product-badge.gold { background: var(--gold-500); }
.product-badge.brand { background: var(--brand-700); }
.product-wish {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  display: flex; align-items:center; justify-content:center;
  z-index: 2;
  transition: background .2s;
  color: var(--ink-900);
}
.product-wish:hover { background: #fff; }
.product-visual {
  aspect-ratio: 1;
  background: var(--bgc, var(--cream-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-visual::before {
  content:'';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 85%, rgba(255,255,255,.5), transparent 50%);
}
.product-visual .bottle, .product-visual .jar, .product-visual .flacon, .product-visual .compact {
  transform: scale(.95);
  transition: transform .6s var(--ease-out);
  z-index: 1;
}
.product:hover .product-visual > * { transform: scale(1.05); }
.product-meta { padding: 20px 22px 22px; }
.product-cat {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: inline-block;
}
.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.product-price s { font-size: 14px; color: var(--text-muted); margin-right: 6px; font-weight: 400; }
.product-add {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  display: inline-flex; align-items:center; justify-content:center;
  transition: all .3s;
}
.product-add:hover { background: var(--brand-700); transform: rotate(90deg); }
.product-stars {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--text-muted);
  margin-top: 4px;
}
.product-stars .s { color: var(--gold-500); }

/* ══════════════ FEATURE ══════════════ */
.feature {
  background: linear-gradient(180deg, var(--bg) 0%, var(--brand-50) 100%);
  padding: 120px 0;
  overflow: hidden;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 200;
  letter-spacing: -0.045em;
  font-size: clamp(52px, 6.6vw, 96px);
  line-height: .98;
  margin: 20px 0 28px;
}
.feature-title em { font-style: normal; font-weight: 500; color: var(--brand-500); }
.feature-title .line { display: block; }
.feature-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 460px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 48px;
  border-top: 1px solid var(--border);
}
.feature-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.feature-list .n {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-500);
}
.feature-list strong { display: block; font-weight: 500; font-size: 15px; margin-bottom: 2px; }
.feature-list span { font-size: 14px; color: var(--text-muted); }
.feature-cta { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

.feature-stage {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--cream-50), var(--brand-100));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 80px rgba(30,58,47,.18);
}
.feature-stage .orbit { position: absolute; inset: 0; width: 100%; height: 100%; }
.big-bottle {
  position: relative;
  z-index: 2;
}
.stage-ingredient {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 14px 8px 10px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-900);
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.ing-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ing-1 { top: 12%; right: 6%; }
.ing-1 .ing-dot { background: var(--brand-500); }
.ing-2 { top: 44%; right: -6%; }
.ing-2 .ing-dot { background: var(--gold-500); }
.ing-3 { bottom: 16%; left: 4%; }
.ing-3 .ing-dot { background: var(--blush-300); }

/* ══════════════ INGREDIENTS ══════════════ */
.ingredients { padding: 100px 0; }
.ing-head { text-align: center; padding-bottom: 56px; }
.ing-head .overline { display: inline-block; }
.ing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.ing-item {
  text-align: center;
}
.ing-icon {
  width: 120px; height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex; align-items:center; justify-content:center;
  transition: all .4s var(--ease-out);
}
.ing-item:hover .ing-icon { background: var(--brand-50); transform: translateY(-4px); }
.ing-icon svg { width: 60%; height: 60%; }
.ing-text h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.ing-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ══════════════ STORY ══════════════ */
.story {
  padding: 120px 0;
  background: var(--bg);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-art {
  position: relative;
  aspect-ratio: 1;
}
.story-img {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img svg { width: 100%; height: 100%; }
.story-img-1 {
  top: 0; left: 0;
  width: 70%;
  aspect-ratio: 4/5;
}
.story-img-2 {
  bottom: 0; right: 0;
  width: 55%;
  aspect-ratio: 3/4;
}
.story-copy .section-title { margin-bottom: 28px; }
.story-lede {
  font-size: 17px;
  color: var(--ink-900);
  line-height: 1.7;
  margin-bottom: 20px;
}
.story-copy p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ══════════════ JOURNAL ══════════════ */
.journal { padding: 40px 0 120px; }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.journal-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.j-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--bg, var(--cream-100));
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  transition: transform .5s var(--ease-out);
}
.journal-card:hover .j-img { transform: translateY(-6px); }
.j-img svg { width: 100%; height: 100%; background: var(--bg); }
.j-meta { padding: 0 4px; }
.j-cat {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-600);
  display: inline-block;
  margin-bottom: 12px;
}
.j-meta h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink-900);
  margin-bottom: 10px;
}
.j-meta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.j-date {
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* ══════════════ NEWSLETTER ══════════════ */
.newsletter {
  position: relative;
  margin: 60px 0;
  padding: 120px 0;
  background: var(--brand-700);
  color: var(--cream-50);
  overflow: hidden;
}
.news-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.news-copy p { margin-top: 24px; font-size: 16px; }
.news-form {
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  padding: 10px;
  border-radius: 100px;
  border: 1px solid rgba(253,251,245,.2);
}
.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}
.news-form input::placeholder { color: rgba(253,251,245,.55); }
.news-form button {
  background: var(--gold-500);
  color: var(--ink-900);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .3s;
  position: relative;
}
.news-form button:hover { background: var(--gold-400); }
.news-form button .sent-label { display: none; }
.news-form.sent input { opacity: .5; pointer-events: none; }
.news-form.sent button .label { display: none; }
.news-form.sent button .sent-label { display: inline; }
.news-form.sent button { background: var(--brand-300); color: var(--brand-800); }

.news-star {
  position: absolute;
  color: var(--gold-400);
  opacity: .35;
  font-family: var(--font-display);
}
.news-star-1 { top: 40px; left: 6%; font-size: 120px; }
.news-star-2 { bottom: 40px; right: 8%; font-size: 160px; }
.news-star-3 { top: 50%; right: 40%; font-size: 80px; }

/* ══════════════ FOOTER ══════════════ */
.site-footer {
  background: var(--cream-100);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.foot-brand .brand { margin-bottom: 18px; }
.foot-tag {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.foot-social { display: flex; gap: 16px; }
.foot-social a {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink-900);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.foot-col h5 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 20px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color .2s;
}
.foot-col a:hover { color: var(--ink-900); }
.foot-base {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ══════════════ TWEAKS ══════════════ */
.tweaks {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 300px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 100;
  overflow: hidden;
  font-family: var(--font-body);
}
.tweaks[hidden] { display: none; }
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tweaks-body { padding: 16px 18px 20px; max-height: 60vh; overflow-y: auto; }
.tweak { margin-bottom: 20px; }
.tweak label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.tweak-opts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tweak-opts button {
  text-align: left;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  transition: all .15s;
  background: #fff;
}
.tweak-opts button:hover { border-color: var(--ink-400); }
.tweak-opts button.is-active {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}

/* ══════════════ PALETTE VARIANTS ══════════════ */
body[data-palette="blush"] {
  --brand-50: #FDF5F1;
  --brand-100: #F9E6DC;
  --brand-200: #F0CAB7;
  --brand-300: #E2A88B;
  --brand-400: #C98264;
  --brand-500: #A96547;
  --brand-600: #8A4A2D;
  --brand-700: #5E2F1C;
  --brand-800: #3E1D10;
}
body[data-palette="noir"] {
  --brand-50: #F2F2F0;
  --brand-100: #E5E5E2;
  --brand-200: #CACAC5;
  --brand-300: #8E8E87;
  --brand-400: #5A5A53;
  --brand-500: #3E3E37;
  --brand-600: #272724;
  --brand-700: #141311;
  --brand-800: #0A0A09;
}
body[data-palette="gold"] {
  --brand-50: #FBF7EE;
  --brand-100: #F5EDD6;
  --brand-200: #EADA9C;
  --brand-300: #D9C06A;
  --brand-400: #C8A645;
  --brand-500: #B8923A;
  --brand-600: #9A7A2D;
  --brand-700: #7C6222;
  --brand-800: #5D481A;
}

body[data-bg="pure"] { --bg: #FFFFFF; --cream-50: #FFFFFF; --cream-100: #FAF9F7; }
body[data-bg="ivory"] { --bg: #F6F0E6; --cream-50: #F6F0E6; --cream-100: #EEE6D7; }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1200px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .products { grid-template-columns: repeat(3, 1fr); }
  .journal-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .ing-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}
@media (max-width: 960px) {
  .header-grid { padding: 18px 24px; grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .nav-right a { display: none; }
  .menu-btn { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; min-height: auto; padding-top: 20px; }
  .hero-visual { height: 520px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero-scroll { display: none; }
  .feature-grid, .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-art { max-width: 520px; margin: 0 auto; width: 100%; }
  .news-inner { grid-template-columns: 1fr; gap: 40px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-brand { grid-column: 1 / -1; }
  .section-head.with-actions { flex-direction: column; align-items: flex-start; }
  .hero-meta { gap: 28px; flex-wrap: wrap; }
  .hero-meta strong { font-size: 26px; }
  .tweaks { bottom: 12px; right: 12px; width: calc(100vw - 24px); max-width: 320px; }
}
@media (max-width: 600px) {
  .announce { font-size: 14px; }
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .products { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-meta { padding: 14px 14px 16px; }
  .product-name { font-size: 17px; }
  .product-price { font-size: 16px; }
  .ing-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 440px; }
  .hero-card-main { width: 82%; height: 420px; border-radius: 220px 220px 20px 20px; }
  .hero-card-sub { width: 52%; height: 200px; }
  .hero-card-badge { width: 92px; height: 92px; top: 12px; left: 12px; }
  .price-tag { right: -12px; padding: 12px 16px; }
  .price-tag-price { font-size: 18px; }
  .hero-meta { gap: 20px 28px; }
  .bottle { width: 130px; height: 240px; }
  .bottle.lg { width: 160px; height: 300px; }
  .section-head { padding: 64px 0 40px; }
  .feature, .story, .ingredients, .newsletter { padding: 72px 0; }
  .news-form { flex-direction: column; background: transparent; backdrop-filter: none; padding: 0; border: none; gap: 12px; }
  .news-form input { background: rgba(255,255,255,.08); border-radius: 12px; border: 1px solid rgba(253,251,245,.2); }
  .news-form button { border-radius: 12px; padding: 16px; }
}

/* ─── Material Symbols Outlined 공통 설정 ─────────────────────────── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  /* Variable Font 세부 조정: 선 두께 300, 속 채움 없음 */
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 20;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  user-select: none;
  vertical-align: middle;
}

/* 컨텍스트별 아이콘 크기 */
.icon-btn .material-symbols-outlined {
  font-size: 20px;
}

.carousel-btn .material-symbols-outlined {
  font-size: 22px;
}

.product-wish .material-symbols-outlined {
  font-size: 16px;
}

.product-add .material-symbols-outlined {
  font-size: 16px;
}

.cart-check .material-symbols-outlined {
  font-size: 14px;
}

.cart-remove .material-symbols-outlined {
  font-size: 18px;
}

.search-close .material-symbols-outlined {
  font-size: 24px;
}

.search-form .material-symbols-outlined {
  font-size: 18px;
}

/* 마이위시리스트 삭제 버튼 */
.wl-remove .material-symbols-outlined {
  font-size: 18px;
}
