/* ============================================================
   EXCENTS — Stylesheet v4
   Palette: true white / near-black ink / vivid burnt-orange accent
   Type: Fraunces (display, soft-serif with character) + Sora (body/utility)
   Motion: drifting gradient blobs, infinite scent marquee, scroll-reveal,
   an animated perfume-bottle illustration with mist + shimmer.
   ============================================================ */

:root {
  --noir: #ffffff;
  --noir-2: #f4f1fa;
  --card: #ffffff;
  --oud: #170f26;
  --oud-deep: #0a0613;
  --gold: #6d28d9;
  --gold-bright: #8b5cf6;
  --parchment: #17141f;
  --parchment-dim: #6b6478;
  --ink: #f8f6fc;
  --line: rgba(109, 40, 217, 0.18);
  --shadow: 0 20px 44px rgba(23, 15, 38, 0.1);
  --radius: 10px;
  --serif: 'Fraunces', 'Georgia', serif;
  --sans: 'Sora', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--noir);
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--sans);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0;
  color: var(--parchment);
}

h1 { font-size: clamp(40px, 6vw, 80px); line-height: 1.03; letter-spacing: 0.01em; }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 22px; }

p { color: var(--parchment-dim); }

.reveal { transition: opacity .7s ease, transform .7s ease; }
.js-anim .reveal { opacity: 0; transform: translateY(22px); }
.js-anim .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .05s; }
.reveal-2 { transition-delay: .15s; }
.reveal-3 { transition-delay: .25s; }
.reveal-4 { transition-delay: .35s; }

/* ============================================================ HEADER + MOBILE NAV ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  position: relative;
}
.logo {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.14em;
  color: var(--parchment);
  font-weight: 600;
}
.logo span { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
}
.btn-nav-cta:hover { background: var(--gold-bright); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--parchment);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 22px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn-nav-cta { margin-top: 14px; text-align: center; }
}

/* ============================================================ HERO + ANIMATED GRADIENT BLOBS ============================================================ */
.hero {
  position: relative;
  padding: 76px 0 56px;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.hero-blob-1 {
  width: 480px; height: 480px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(109,40,217,0.20), transparent 70%);
  animation: blobDrift1 16s ease-in-out infinite;
}
.hero-blob-2 {
  width: 380px; height: 380px;
  bottom: -160px; left: -100px;
  background: radial-gradient(circle, rgba(20,18,14,0.10), transparent 70%);
  animation: blobDrift2 20s ease-in-out infinite;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.12); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { margin: 18px 0 22px; }
.hero .lede { font-size: 18px; max-width: 460px; margin-bottom: 34px; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--ink); box-shadow: 0 10px 24px rgba(109,40,217,0.26); }
.btn-primary:hover { background: linear-gradient(135deg, var(--gold), var(--gold-bright)); box-shadow: 0 14px 30px rgba(109,40,217,0.34); }
.btn-outline { border-color: var(--line); color: var(--parchment); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { display: block; width: 100%; text-align: center; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.hero-visual svg { width: 100%; max-width: 260px; height: auto; }

.bottle-glow { animation: glowPulse 4.5s ease-in-out infinite; }
@keyframes glowPulse {
  0%, 100% { opacity: 0.32; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.08); }
}

.liquid-wave { animation: liquidWave 5.5s ease-in-out infinite; transform-origin: center; }
@keyframes liquidWave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
}

.bottle-shimmer { animation: shimmerSweep 3.8s ease-in-out infinite; }
@keyframes shimmerSweep {
  0% { transform: translateX(-50px) rotate(18deg); opacity: 0; }
  12% { opacity: .45; }
  88% { opacity: .45; }
  100% { transform: translateX(140px) rotate(18deg); opacity: 0; }
}

.mist-drop { animation: mistRise 3s ease-in infinite; }
@keyframes mistRise {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  25% { opacity: .9; }
  100% { opacity: 0; transform: translate(var(--dx, 0px), -68px) scale(1.7); }
}

.bottle-float { animation: bottleFloat 6s ease-in-out infinite; }
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--oud);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "\2726";
  color: var(--gold-bright);
  font-size: 12px;
  margin-left: 28px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================ COMBO / OFFER CARDS ============================================================ */
.section { padding: 84px 0; }
.section-alt {
  background: var(--oud);
  background-image: radial-gradient(ellipse 800px 400px at 15% 0%, rgba(139,92,246,0.16), transparent 60%);
}
.section-alt .eyebrow { color: var(--gold-bright); }
.section-alt h2 { color: var(--ink); }
.section-alt p { color: rgba(248, 246, 252, 0.62); }
.section-alt .scent-card {
  background: rgba(248, 246, 252, 0.04);
  border-color: rgba(248, 246, 252, 0.12);
}
.section-alt .scent-card:hover { border-color: var(--gold-bright); transform: translateY(-6px) scale(1.02); }
.section-alt .scent-card h3 { color: var(--ink); }
.section-alt .scent-card p { color: rgba(248, 246, 252, 0.55); }
.section-alt .scent-card .num { color: var(--gold-bright); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head p { margin-top: 14px; }

.scent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.scent-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 26px 22px 32px;
  text-align: center;
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .2s, box-shadow .25s ease;
  overflow: hidden;
}
.scent-card:hover { transform: translateY(-8px) scale(1.02); border-color: var(--gold); box-shadow: var(--shadow); }
.scent-card:hover .scent-bottle-img { transform: translateY(-6px) scale(1.04); }
.scent-card .num { font-family: var(--serif); color: var(--gold); font-size: 14px; letter-spacing: .1em; }
.scent-card h3 { margin: 14px 0 10px; letter-spacing: .05em; }
.scent-card p { font-size: 14px; margin: 0; }

.scent-bottle-frame {
  position: relative;
  height: 168px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 4px 0 6px;
}
.scent-bottle-glow {
  position: absolute;
  bottom: 6px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright) 0%, rgba(139,92,246,0) 72%);
  opacity: 0.35;
  filter: blur(2px);
  transition: opacity .25s ease;
}
.scent-card:hover .scent-bottle-glow { opacity: 0.55; }
.scent-bottle-img {
  position: relative;
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(23, 15, 38, 0.22));
  transition: transform .3s ease;
}
.section-alt .scent-bottle-img { filter: drop-shadow(0 14px 20px rgba(0,0,0,0.45)); }
.section-alt .scent-bottle-glow { opacity: 0.45; }
.scent-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--noir-2);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.section-alt .scent-badge { background: rgba(248,246,252,0.08); color: var(--gold-bright); border-color: rgba(248,246,252,0.16); }

.offer-panel {
  margin-top: 56px;
  background:
    radial-gradient(ellipse 500px 300px at 100% 0%, rgba(109,40,217,0.07), transparent 65%),
    linear-gradient(135deg, var(--noir-2), var(--card) 55%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
}
.offer-panel .eyebrow { color: var(--gold); }
.offer-panel h2 { margin: 12px 0 16px; }
.price-row { display: flex; align-items: baseline; gap: 14px; margin: 20px 0 26px; flex-wrap: wrap; }
.price-now { font-family: var(--serif); font-size: 46px; color: var(--gold); }
.price-note { font-size: 13px; color: var(--parchment-dim); }
.offer-list { list-style: none; padding: 0; margin: 0 0 28px; }
.offer-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  color: var(--parchment);
  display: flex;
  justify-content: space-between;
}
.offer-side {
  background: rgba(109, 40, 217, 0.06);
  border: 1px solid var(--line);
  padding: 26px;
  border-radius: 14px;
}
.offer-side h4 { font-family: var(--serif); font-size: 18px; margin-bottom: 10px; }
.offer-side p { font-size: 13px; }

/* ============================================================ FOOTER ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  background: var(--noir);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-note { font-size: 12px; color: var(--parchment-dim); letter-spacing: 0.04em; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--parchment-dim); }
.footer-links a:hover { color: var(--gold); }

/* ============================================================ ORDER PAGE ============================================================ */
.order-page { padding: 52px 0 96px; }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--noir-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 16px;
}
textarea { resize: vertical; min-height: 90px; }
input::placeholder, textarea::placeholder { color: #948a78; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
.hint { font-size: 12px; color: var(--parchment-dim); margin-top: 6px; }
.error-text { font-size: 12px; color: #a13a3a; margin-top: 6px; display: none; }
.field-error input, .field-error select, .field-error textarea { border-color: #b25454; }
.field-error .error-text { display: block; }

.qty-control { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.qty-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--noir-2);
  color: var(--gold);
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
}
.qty-btn:hover { border-color: var(--gold); }
.qty-value { min-width: 30px; text-align: center; font-family: var(--serif); font-size: 18px; }

.addon-toggle {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: rgba(109,40,217,0.06);
}
.addon-toggle-head { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.addon-toggle-head input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--gold); }
.addon-toggle-head strong { font-family: var(--serif); font-size: 17px; color: var(--parchment); }
.addon-scent-select { margin-top: 14px; display: none; }
.addon-scent-select.active { display: block; }

/* ============================================================ SCENT LIST (SMALLER BOTTLES) ============================================================ */
.scent-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scent-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 2px solid var(--line);
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--card);
  position: relative;
}
.scent-item:hover {
  border-color: var(--gold-bright);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.scent-item.is-selected {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: rgba(212, 175, 55, 0.04);
  transform: translateX(4px);
}
.scent-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.scent-item-img-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 60px;
}
.scent-item-img-wrap img {
  width: auto;
  height: 100%;
  max-height: 60px;
  max-width: 44px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}
.scent-item.is-selected .scent-item-img-wrap img {
  transform: scale(1.06);
}
.scent-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.scent-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--parchment);
}
.scent-item-desc {
  font-size: 0.8rem;
  color: var(--parchment-dim);
  line-height: 1.4;
}
.scent-item-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.scent-item.is-selected .scent-item-check {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.scent-item.is-selected .scent-item-check::after {
  content: '✓';
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* ============================================================ RETURNING CUSTOMER TOGGLE ============================================================ */
.returning-toggle {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: rgba(109,40,217,0.06);
}
.returning-toggle-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin: 0;
}
.returning-toggle-head input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.returning-toggle-head strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--parchment);
}
.returning-id-field {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}
.returning-id-field.active {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
}
.returning-id-field label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--parchment);
}

/* ============================================================ HERO SLIDER ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 220 / 380;
  background: transparent !important;
}
.hero-slider .slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slider .slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  padding: 8px;
  box-sizing: border-box;
}
.hero-slider .bottle-image {
  width: auto;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.15));
  transition: transform 0.5s ease;
  image-rendering: auto;
  background: transparent !important;
}
.hero-slider .slide.active .bottle-image {
  animation: bottleReveal 0.6s ease forwards;
}
@keyframes bottleReveal {
  0% { transform: scale(0.85) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.hero-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}
.hero-slider .slider-btn:hover {
  background: rgba(0,0,0,0.7);
  transform: translateY(-50%) scale(1.05);
}
.hero-slider .slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.hero-slider .slider-btn-prev { left: 6px; }
.hero-slider .slider-btn-next { right: 6px; }
.hero-slider .slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-slider .slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 0;
}
.hero-slider .slider-dot.active {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.hero-slider .slider-dot:hover {
  background: rgba(255,255,255,0.8);
}

/* ============================================================ SCENT SLIDER (one-by-one view) ============================================================ */
.scent-slider {
  max-width: 420px;
  margin: 0 auto;
}
.slider-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.scent-slider .slider-track {
  display: flex;
  transition: transform .45s cubic-bezier(.65,0,.35,1);
}
.slider-slide {
  flex: 0 0 100%;
  max-width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px 34px;
  text-align: center;
}
.slider-slide .scent-bottle-frame { height: 220px; }
.slider-slide .scent-bottle-glow { width: 110px; height: 110px; }
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}
.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--gold);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.slider-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.slider-arrow:active { transform: scale(0.92); }
.scent-slider .slider-dots {
  display: flex;
  gap: 8px;
}
.scent-slider .slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .2s, width .2s;
}
.scent-slider .slider-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 999px;
}

/* ============================================================ SUMMARY CARD ============================================================ */
.summary-card {
  position: sticky;
  top: 96px;
}
.summary-card h3 { margin-bottom: 18px; }
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--parchment);
}
.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
}
.payment-note {
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--parchment-dim);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.price-was {
  font-size: 15px;
  color: var(--parchment-dim);
  text-decoration: line-through;
  margin-right: 8px;
}
.price-badge-returning {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(109,40,217,0.1);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 8px;
}

/* ============================================================ ALERTS ============================================================ */
.alert {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 24px;
}
.alert-error { background: rgba(178,64,54,0.08); border: 1px solid #c47a6e; color: #8a2c22; }
.alert-success { background: rgba(74,124,52,0.08); border: 1px solid #8cb26e; color: #3a6b28; }

/* ============================================================ SUCCESS PAGE ============================================================ */
.success-page { padding: 100px 0; text-align: center; }
.success-icon { font-size: 52px; color: var(--gold); margin-bottom: 20px; animation: successPop .6s ease; }
@keyframes successPop {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
.order-number-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 10px 26px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 22px 0 32px;
}

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width: 1024px) {
  .order-grid {
    grid-template-columns: 1fr 320px;
    gap: 24px;
  }
  .card { padding: 28px 20px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 280px; }
  .hero-visual svg { max-width: 200px; }
  .scent-grid { gap: 12px; }
  .offer-panel { grid-template-columns: 1fr; padding: 30px; }
  .order-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  
  .scent-item {
    padding: 8px 12px;
    gap: 12px;
  }
  .scent-item-img-wrap {
    width: 38px;
    height: 52px;
  }
  .scent-item-img-wrap img {
    max-height: 52px;
    max-width: 38px;
  }
  .scent-item-name { font-size: 0.9rem; }
  .scent-item-desc { font-size: 0.75rem; }
  .scent-item-check {
    width: 20px;
    height: 20px;
  }
  .scent-item.is-selected .scent-item-check::after { font-size: 11px; }
  
  .hero-slider {
    max-width: 240px;
  }
}

@media (max-width: 720px) {
  .hero-slider {
    max-width: 200px;
  }
  .hero-slider .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .hero-slider .slider-btn-prev { left: 4px; }
  .hero-slider .slider-btn-next { right: 4px; }
  .hero-slider .slider-dot {
    width: 8px;
    height: 8px;
  }
  .hero-slider .slide { padding: 6px; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .site-footer .container { flex-direction: column; text-align: center; }
  .hero { padding: 48px 0 40px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { text-align: center; }
  .section { padding: 56px 0; }
  .offer-panel { border-radius: 14px; padding: 24px; }
  .marquee-track span { font-size: 16px; padding: 0 18px; }
  .order-page { padding: 20px 0 60px; }
  .card { padding: 20px 16px; border-radius: 16px; }
  
  .scent-list { gap: 8px; }
  .scent-item {
    padding: 8px 10px;
    gap: 10px;
    border-radius: 10px;
  }
  .scent-item:hover { transform: translateX(2px); }
  .scent-item.is-selected { transform: translateX(2px); }
  .scent-item-img-wrap {
    width: 34px;
    height: 46px;
  }
  .scent-item-img-wrap img {
    max-height: 46px;
    max-width: 34px;
  }
  .scent-item-name { font-size: 0.85rem; }
  .scent-item-desc { font-size: 0.7rem; }
  .scent-item-check {
    width: 18px;
    height: 18px;
  }
  .scent-item.is-selected .scent-item-check::after { font-size: 10px; }
  
  .hero-slider {
    max-width: 180px;
  }
  .hero-slider .slider-btn {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .hero-slider .slider-dot {
    width: 7px;
    height: 7px;
  }

  /* keep all four testers in one small horizontal row, centered */
  .scent-grid { gap: 8px; }
  .scent-card { padding: 12px 6px 14px; border-radius: 8px; }
  .scent-badge { top: 6px; right: 6px; font-size: 7px; padding: 2px 5px; letter-spacing: 0.02em; }
  .scent-bottle-frame { height: 70px; margin: 2px 0 4px; }
  .scent-bottle-glow { width: 40px; height: 40px; }
  .scent-card .num { font-size: 10px; }
  .scent-card h3 { font-size: 12px; margin: 6px 0 4px; letter-spacing: 0.02em; }
  .scent-card p { display: none; }
}

@media (max-width: 480px) {
  .hero-slider {
    max-width: 150px;
  }
  .hero-slider .slider-btn {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
  .hero-slider .slider-btn-prev { left: 2px; }
  .hero-slider .slider-btn-next { right: 2px; }
  .hero-slider .slider-dot {
    width: 6px;
    height: 6px;
  }
  .hero-slider .slide { padding: 3px; }
  
  .scent-item {
    padding: 6px 8px;
    gap: 8px;
  }
  .scent-item-img-wrap {
    width: 28px;
    height: 38px;
  }
  .scent-item-img-wrap img {
    max-height: 38px;
    max-width: 28px;
  }
  .scent-item-name { font-size: 0.78rem; }
  .scent-item-desc { display: none; }
  .scent-item-check {
    width: 16px;
    height: 16px;
  }
  .scent-item.is-selected .scent-item-check::after { font-size: 8px; }
}

@media (max-width: 420px) {
  h1 { font-size: 38px; }
  .scent-grid { gap: 6px; }
  .scent-card { padding: 8px 4px 10px; }
  .scent-bottle-frame { height: 56px; }
  .scent-bottle-glow { width: 32px; height: 32px; }
  .scent-card h3 { font-size: 10.5px; }
  .scent-badge { display: none; }
}

@media (max-width: 380px) {
  .hero-slider {
    max-width: 120px;
  }
  .hero-slider .slider-btn {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  .hero-slider .slider-dot {
    width: 5px;
    height: 5px;
  }
  .hero-slider .slide { padding: 2px; }
}

/* ============================================================ REDUCED MOTION ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================ DARK MODE SUPPORT ============================================================ */
@media (prefers-color-scheme: dark) {
  .card {
    background: var(--card-dark, #1a1a1a);
    border-color: var(--line-dark, #333);
  }
  .scent-item {
    background: var(--card-dark, #1a1a1a);
    border-color: var(--line-dark, #333);
  }
  .scent-item.is-selected {
    background: rgba(212, 175, 55, 0.08);
  }
  .scent-item-name {
    color: var(--ink-light, #eee);
  }
  .scent-item-desc {
    color: var(--ink-faded-dark, #999);
  }
  .scent-item-check {
    border-color: var(--line-dark, #444);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--input-dark, #222);
    border-color: var(--line-dark, #444);
    color: var(--ink-light, #eee);
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  }
  .summary-line {
    border-color: var(--line-dark, #333);
  }
  .summary-total {
    border-color: var(--line-dark, #333);
  }
  .section-head p {
    color: var(--ink-faded-dark, #999);
  }
  .alert-error {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
  }
  .returning-toggle {
    background: rgba(109,40,217,0.08);
    border-color: var(--line-dark, #333);
  }
  .returning-toggle-head strong {
    color: var(--ink-light, #eee);
  }
}