/* ============================================
   Aurora Velas — Hi-Fi Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  /* Paper tones */
  --paper: #FAF2EE;
  --paper-warm: #F4E3DD;
  --paper-soft: #FDF8F5;
  --cream: #FBF6F1;
  /* Ink */
  --ink: #2A2420;
  --ink-soft: #6B5F57;
  --ink-faint: #A89F97;
  --line: #E8DCD5;
  --line-soft: #F0E6E0;
  /* Rose */
  --rose: #E8B4C0;
  --rose-deep: #D48AA0;
  --rose-soft: #F5DDE3;
  --rose-pale: #FBEEF1;
  /* Gold */
  --gold: #B89968;
  --gold-deep: #8C6F3E;
  --gold-soft: #E4D4B5;
  --gold-pale: #F4EBD9;
  /* Accents */
  --sage: #A8B89F;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(42,36,32,0.04), 0 2px 4px rgba(42,36,32,0.04);
  --shadow: 0 2px 4px rgba(42,36,32,0.05), 0 8px 24px rgba(42,36,32,0.08);
  --shadow-lg: 0 8px 16px rgba(42,36,32,0.08), 0 24px 48px rgba(42,36,32,0.12);
  --shadow-rose: 0 8px 24px rgba(212,138,160,0.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
.serif { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; letter-spacing: -0.01em; }
.serif-i { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 400; }
.cormorant { font-family: 'Cormorant Garamond', Georgia, serif; }

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; letter-spacing: -0.015em; margin: 0; line-height: 1.1; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }
p  { margin: 0; }

.eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.script { font-family: 'Playfair Display'; font-style: italic; color: var(--rose-deep); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
  text-decoration: none;
  color: inherit;
  background: transparent;
}
.btn-primary {
  background: linear-gradient(180deg, var(--rose-deep) 0%, #C77992 100%);
  color: #FFF;
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(212,138,160,0.38); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #FFF;
  box-shadow: 0 8px 24px rgba(140,111,62,0.25);
}
.btn-gold:hover { transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-ghost { padding: 8px 14px; color: var(--ink-soft); }
.btn-ghost:hover { color: var(--ink); }
.btn-sm { padding: 8px 14px; font-size: 12.5px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.chip:hover { color: var(--ink); border-color: var(--ink-faint); }
.chip.active {
  background: var(--rose-deep);
  color: #FFF;
  border-color: var(--rose-deep);
}

/* Cards */
.card {
  background: var(--paper-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  position: relative;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* Product placeholder — gradient "candle" */
.ph-candle {
  width: 100%;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.ph-candle[data-tone="rose"]     { background: linear-gradient(135deg, #F5DDE3 0%, #E8B4C0 60%, #D48AA0 100%); }
.ph-candle[data-tone="cream"]    { background: linear-gradient(135deg, #FBF6F1 0%, #F4E3DD 55%, #E8D4C9 100%); }
.ph-candle[data-tone="gold"]     { background: linear-gradient(135deg, #F4EBD9 0%, #E4D4B5 55%, #B89968 100%); }
.ph-candle[data-tone="blue"]     { background: linear-gradient(135deg, #E8F0F4 0%, #C8DFEA 60%, #9AB8C7 100%); }
.ph-candle[data-tone="lavender"] { background: linear-gradient(135deg, #EDE5F3 0%, #D4C1E0 60%, #A88DC0 100%); }
.ph-candle[data-tone="sage"]     { background: linear-gradient(135deg, #E4EADE 0%, #C2D0B8 60%, #8A9A80 100%); }
.ph-candle[data-tone="white"]    { background: linear-gradient(135deg, #FFFFFF 0%, #F5F0EC 60%, #E8DED8 100%); }
.ph-candle[data-tone="coral"]    { background: linear-gradient(135deg, #FCE4D6 0%, #F5B19C 60%, #E07A5F 100%); }
.ph-candle[data-tone="red"]      { background: linear-gradient(135deg, #F9D4D4 0%, #E89A9A 60%, #B84545 100%); }

.ph-candle::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.45), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.08), transparent 50%);
  pointer-events: none;
}
.ph-candle .label {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(42,36,32,0.55);
  padding: 6px 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.ribbon {
  position: absolute;
  pointer-events: none;
}

/* Price */
.price {
  font-family: 'Playfair Display';
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
}
.price-old { color: var(--ink-faint); text-decoration: line-through; font-size: 0.85em; margin-right: 6px; }

/* Quantity steppers */
.qty {
  display: inline-flex; align-items: center;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty button {
  width: 32px; height: 32px;
  border: none; background: transparent; cursor: pointer;
  color: var(--ink);
  font-size: 16px; line-height: 1;
}
.qty button:hover { background: var(--paper-warm); }
.qty .val { padding: 0 10px; font-weight: 600; min-width: 30px; text-align: center; }

/* Scroll bars (subtle) */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-faint); }

.sticky-top { position: sticky; top: 0; z-index: 20; }

/* ============ Layout ============ */
.app {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
@media (max-width: 900px) {
  .app { grid-template-columns: 1fr; }
}

/* Sidebar */
.sidebar {
  background: var(--cream);
  border-right: 1px solid var(--line-soft);
  padding: 28px 22px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 22px;
}
@media (max-width: 900px) {
  .sidebar {
    position: fixed; inset: 0 auto 0 0;
    width: 82%; max-width: 320px;
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 1000;
    height: 100vh;
  }
  .sidebar.open { transform: translateX(0); box-shadow: var(--shadow-lg); }
}

.sidebar-backdrop {
  position: fixed; inset: 0;
  background: rgba(42,36,32,0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.sidebar-backdrop.open { opacity: 1; pointer-events: auto; }

.sidebar-logo {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding-bottom: 8px;
}
.sidebar-logo .name {
  font-family: 'Playfair Display';
  font-size: 22px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--gold-deep);
  margin-top: 4px;
}
.sidebar-logo .tag {
  font-family: 'Playfair Display';
  font-style: italic;
  font-size: 11px;
  color: var(--ink-soft);
}

.sidebar-group { display: flex; flex-direction: column; gap: 2px; }
.sidebar-group .group-title {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
  font-weight: 600;
}
.nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
  position: relative;
}
.nav-link:hover { background: var(--paper); color: var(--ink); }
.nav-link.active {
  background: var(--rose-pale);
  color: var(--rose-deep);
  font-weight: 600;
}
.nav-link.active::before {
  content: '';
  position: absolute; left: -22px; top: 50%; transform: translateY(-50%);
  width: 3px; height: 18px; border-radius: 0 3px 3px 0;
  background: var(--rose-deep);
}
.nav-link .count {
  margin-left: auto;
  font-size: 11px;
  color: var(--ink-faint);
  background: var(--paper);
  padding: 1px 8px; border-radius: 999px;
}

/* Main */
.main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.topbar {
  height: 64px;
  padding: 0 32px;
  display: flex; align-items: center; gap: 16px;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; z-index: 50;
}
@media (max-width: 900px) {
  .topbar { padding: 0 16px; }
}

.search-wrap {
  flex: 1;
  display: flex; align-items: center; gap: 8px;
  background: var(--paper-soft);
  border-radius: 999px;
  padding: 8px 16px;
  max-width: 420px;
  border: 1px solid transparent;
  transition: border-color .15s;
}
.search-wrap:focus-within { border-color: var(--rose); }
.search-wrap input {
  border: none; background: transparent; outline: none;
  flex: 1; font-family: inherit; font-size: 14px;
  color: var(--ink);
}
.search-wrap input::placeholder { color: var(--ink-faint); }

.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: none; background: transparent;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  transition: background .15s;
}
.icon-btn:hover { background: var(--paper-warm); }
.icon-btn .badge {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  display: flex; align-items: center; justify-content: center;
  background: var(--rose-deep); color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 999px;
  border: 2px solid var(--paper);
}

/* Page container */
.page { padding: 32px 40px 64px; max-width: 1400px; width: 100%; margin: 0 auto; }
@media (max-width: 900px) { .page { padding: 20px 16px 80px; } }

/* Hero */
.hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  background: linear-gradient(135deg, #F5DDE3 0%, #E8B4C0 55%, #D48AA0 100%);
}
.hero .hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(42,36,32,0.35) 0%, transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 60px;
  max-width: 560px;
  color: #fff;
  align-self: center;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.05;
}
.hero-content .tag {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11.5px;
}
.hero-content p.lead {
  font-size: 17px;
  margin: 22px 0 28px;
  color: rgba(255,255,255,0.92);
  max-width: 420px;
  line-height: 1.55;
}
.hero-content .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .hero { min-height: 420px; }
  .hero-content { padding: 40px 28px; }
}

/* Section headers */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px;
  margin: 48px 0 20px;
}
.section-head .title h2 { margin-bottom: 6px; }
.section-head .title p { color: var(--ink-soft); font-size: 14px; }
.section-head .actions { display: flex; gap: 8px; align-items: center; }

/* Occasion circles */
.occasions {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .occasions { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 500px) { .occasions { grid-template-columns: repeat(3, 1fr); gap: 12px; } }

.occasion {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer;
  text-align: center;
}
.occasion .circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--paper-soft);
  outline: 2px solid transparent;
  transition: outline-color .2s, transform .2s;
}
.occasion:hover .circle { outline-color: var(--rose-deep); transform: scale(1.03); }
.occasion .lab { font-size: 12px; color: var(--ink-soft); font-weight: 500; }

/* Product grid (masonry) */
.masonry {
  column-count: 4;
  column-gap: 20px;
}
@media (max-width: 1200px) { .masonry { column-count: 3; } }
@media (max-width: 800px)  { .masonry { column-count: 2; column-gap: 12px; } }

.product {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
}
.product .media {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: var(--ar, 1);
  background: var(--paper-warm);
  transition: transform .25s ease;
}
.product:hover .media { transform: translateY(-2px); box-shadow: var(--shadow); }
.product .info { padding: 10px 4px 4px; display: flex; justify-content: space-between; gap: 8px; align-items: flex-start; }
.product .info .name { font-family: 'Playfair Display'; font-size: 15px; font-weight: 500; line-height: 1.2; }
.product .info .cat { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.04em; margin-top: 2px; }
.product .info .right { text-align: right; flex-shrink: 0; }

.product .add-float {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s, background .15s;
  color: var(--ink);
  z-index: 2;
}
.product:hover .add-float { opacity: 1; transform: translateY(0); }
.product .add-float:hover { background: var(--rose-deep); color: #fff; }

.product .badge-tag {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--ink);
  text-transform: uppercase;
}
.product .badge-tag[data-kind="video"] { background: rgba(42,36,32,0.85); color: #fff; }
.product .badge-tag[data-kind="new"]   { background: var(--rose-deep); color: #fff; }
.product .badge-tag[data-kind="sale"]  { background: var(--gold-deep); color: #fff; }

/* Process band */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .process { grid-template-columns: repeat(2, 1fr); } }

.process-step {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  transition: background .2s;
  cursor: default;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--paper-soft); }
.process-step .n {
  font-family: 'Playfair Display';
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.process-step .name { font-family: 'Playfair Display'; font-size: 18px; }
.process-step .desc { font-size: 12px; color: var(--ink-soft); line-height: 1.4; }

/* IG strip */
.ig-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 16px;
}
@media (max-width: 900px) { .ig-strip { grid-template-columns: repeat(3, 1fr); } }
.ig-strip .ig {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .2s;
}
.ig-strip .ig:hover { transform: scale(1.03); }
.ig-strip .ig::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(42,36,32,0);
  transition: background .2s;
}
.ig-strip .ig:hover::after { background: rgba(42,36,32,0.15); }

/* Footer */
.footer {
  background: var(--cream);
  padding: 48px 40px 24px;
  margin-top: 60px;
  border-top: 1px solid var(--line-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.footer h4 { font-family: 'Nunito'; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; font-weight: 600; }
.footer a { display: block; color: var(--ink-soft); text-decoration: none; font-size: 14px; padding: 4px 0; cursor: pointer; }
.footer a:hover { color: var(--rose-deep); }

/* Cart drawer */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(42,36,32,0.4);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 420px; max-width: 100%;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
  z-index: 1101;
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 20px; }
.drawer-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  display: flex; flex-direction: column; gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item .thumb { width: 72px; height: 72px; border-radius: 10px; overflow: hidden; background: var(--paper-warm); }
.cart-item .name { font-family: 'Playfair Display'; font-size: 15px; line-height: 1.2; margin-bottom: 2px; }
.cart-item .meta { font-size: 11px; color: var(--ink-soft); }
.cart-item .right { text-align: right; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.cart-item .rm { background: none; border: none; cursor: pointer; color: var(--ink-faint); font-size: 16px; padding: 2px 6px; border-radius: 4px; }
.cart-item .rm:hover { color: var(--rose-deep); background: var(--rose-pale); }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .ok { color: var(--rose); }

/* ============ Product detail ============ */
.pdp { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 24px; } }

.pdp-gallery { display: flex; flex-direction: column; gap: 12px; }
.pdp-hero { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; position: relative; background: var(--paper-warm); }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pdp-thumb {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .15s;
}
.pdp-thumb.active { border-color: var(--rose-deep); }

.pdp-info { padding: 12px 0; }
.pdp-info .cat { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.pdp-info h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0 14px; }
.pdp-info .pdp-price { font-family: 'Playfair Display'; font-size: 28px; color: var(--rose-deep); margin: 8px 0 18px; }
.pdp-info .desc { color: var(--ink-soft); font-size: 15px; margin-bottom: 24px; }

.opt-group { margin-bottom: 20px; }
.opt-group .opt-lab { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-soft); margin-bottom: 8px; font-weight: 600; }
.opt-group .opt-row { display: flex; gap: 8px; flex-wrap: wrap; }
.opt { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper-soft); cursor: pointer; font-size: 13px; transition: all .15s; }
.opt:hover { border-color: var(--ink-faint); }
.opt.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.swatch { width: 36px; height: 36px; border-radius: 999px; border: 2px solid var(--paper-soft); outline: 2px solid transparent; cursor: pointer; transition: outline-color .15s; }
.swatch.active { outline-color: var(--ink); }

.pdp-ctas { display: flex; gap: 10px; margin: 24px 0; align-items: center; flex-wrap: wrap; }

.pdp-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding: 16px; background: var(--cream); border-radius: var(--radius);
  margin-top: 16px;
}
.pdp-meta .m-ic { font-size: 22px; }
.pdp-meta .m-title { font-size: 12px; font-weight: 700; margin-top: 4px; }
.pdp-meta .m-sub { font-size: 11px; color: var(--ink-soft); }

/* Checkout */
.checkout-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
@media (max-width: 900px) { .checkout-wrap { grid-template-columns: 1fr; } }

.step-row { display: flex; gap: 6px; margin-bottom: 32px; align-items: center; }
.step { display: flex; align-items: center; gap: 10px; color: var(--ink-faint); }
.step .num { width: 28px; height: 28px; border-radius: 50%; background: var(--paper-soft); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; border: 1px solid var(--line); }
.step.done .num { background: var(--rose-deep); color: #fff; border-color: var(--rose-deep); }
.step.active { color: var(--ink); }
.step.active .num { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.step-sep { width: 40px; height: 1px; background: var(--line); }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  font-family: inherit; font-size: 14px; color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rose-deep); background: #fff; }

.delivery-opt, .pay-opt {
  padding: 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--paper-soft);
  cursor: pointer;
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 10px;
  transition: all .15s;
}
.delivery-opt:hover, .pay-opt:hover { border-color: var(--ink-faint); }
.delivery-opt.active, .pay-opt.active { border-color: var(--rose-deep); background: var(--rose-pale); }
.delivery-opt .radio, .pay-opt .radio {
  width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; background: #fff;
}
.delivery-opt.active .radio, .pay-opt.active .radio { border-color: var(--rose-deep); }
.delivery-opt.active .radio::before, .pay-opt.active .radio::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--rose-deep); }
.delivery-opt .d-title, .pay-opt .p-title { font-weight: 600; font-size: 14px; }
.delivery-opt .d-sub, .pay-opt .p-sub { font-size: 12px; color: var(--ink-soft); }

.summary-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky; top: 84px;
}
.summary-card h3 { margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.summary-row.tot { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-size: 17px; font-weight: 600; font-family: 'Playfair Display'; }

.success {
  text-align: center; padding: 60px 20px;
  max-width: 560px; margin: 0 auto;
}
.success .ok-ic {
  width: 80px; height: 80px; margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 40px;
  box-shadow: var(--shadow-rose);
}
.success h1 { margin-bottom: 14px; }

/* About / Contact */
.about-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  padding: 20px 0 40px;
}
@media (max-width: 800px) { .about-hero { grid-template-columns: 1fr; } }
.about-hero .txt .eyebrow { display: block; margin-bottom: 14px; }
.about-hero .txt h1 { margin-bottom: 20px; }
.about-hero .txt p { color: var(--ink-soft); font-size: 15px; margin-bottom: 16px; line-height: 1.7; }
.about-hero .media { aspect-ratio: 0.9; border-radius: var(--radius-xl); overflow: hidden; }

.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 40px 0;
}
@media (max-width: 800px) { .values { grid-template-columns: 1fr; } }
.value { padding: 28px; background: var(--cream); border-radius: var(--radius-lg); }
.value h3 { margin-bottom: 8px; }
.value p { color: var(--ink-soft); font-size: 14px; }

.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .contact-wrap { grid-template-columns: 1fr; } }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  cursor: pointer;
}
.faq-item .q { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 600; font-size: 15px; }
.faq-item .q .ic { transition: transform .2s; color: var(--rose-deep); }
.faq-item.open .q .ic { transform: rotate(45deg); }
.faq-item .a { color: var(--ink-soft); font-size: 14px; line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; }
.faq-item.open .a { max-height: 300px; padding-top: 12px; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .45s ease both; }
.fade-up-2 { animation: fadeUp .45s ease both .08s; }
.fade-up-3 { animation: fadeUp .45s ease both .16s; }

@keyframes flicker {
  0%,100% { opacity: 1; transform: scaleY(1); }
  45% { opacity: 0.9; transform: scaleY(0.98) translateX(0.5px); }
  55% { opacity: 0.95; transform: scaleY(1.02) translateX(-0.5px); }
}
.flame { animation: flicker 2.6s ease-in-out infinite; transform-origin: center bottom; }

/* Featured banner */
.featured-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream);
  margin: 48px 0;
  min-height: 380px;
}
@media (max-width: 800px) { .featured-banner { grid-template-columns: 1fr; } }
.featured-banner .fb-text { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.featured-banner .fb-media { position: relative; overflow: hidden; min-height: 300px; }

/* Divider with icon */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 20px 0;
  color: var(--gold);
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; max-width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

/* Responsive hide */
@media (max-width: 900px) { .hide-mobile { display: none !important; } }
@media (min-width: 901px) { .show-mobile { display: none !important; } }

.mobile-tabbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: none;
  z-index: 40;
  padding-bottom: env(safe-area-inset-bottom);
}
@media (max-width: 900px) { .mobile-tabbar { display: flex; } }
.mobile-tabbar a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  color: var(--ink-faint);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  cursor: pointer;
}
.mobile-tabbar a.active { color: var(--rose-deep); }
.mobile-tabbar a .tcount {
  position: absolute; top: 8px; right: calc(50% - 20px);
  min-width: 16px; height: 16px;
  background: var(--rose-deep); color: #fff;
  border-radius: 999px;
  font-size: 9px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
