:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --black: #1a1a1a;
  --gray-50: #f9f9f9;
  --gray-100: #f3f3f3;
  --gray-200: #e5e5e5;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); line-height: 1.6; }
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.1; }
h1 { font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ── Nav ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-200); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; color: var(--black); }
.logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--gray-600); transition: color .2s; }
.nav-links a:hover { color: var(--black); }
.btn-nav { background: var(--black); color: var(--white)!important; padding: .5rem 1.25rem; border-radius: 10px; }
.cart-btn { position: relative; cursor: pointer; padding: .5rem; background: var(--gray-100); border-radius: 10px; transition: background .2s; }
.cart-btn:hover { background: var(--gray-200); }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--gold); color: white; font-size: .65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ── Buttons ── */
.btn-primary { display: inline-flex; align-items: center; gap: .5rem; background: var(--black); color: white; padding: .9rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: .9rem; cursor: pointer; border: none; transition: all .2s; text-decoration: none; }
.btn-primary:hover { background: #333; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { display: inline-flex; align-items: center; gap: .5rem; border: 2px solid var(--gray-200); color: var(--black); padding: .9rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: .9rem; cursor: pointer; background: transparent; transition: all .2s; text-decoration: none; }
.btn-outline:hover { border-color: var(--black); background: var(--gray-50); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-light); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ── Hero ── */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 72px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; top: 0; right: 0; width: 55%; height: 100%; background: var(--gray-50); z-index: 0; }
.hero-content { max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; width: 100%; }
.hero-text { max-width: 540px; }
.badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); border: 1px solid rgba(201,168,76,.3); background: rgba(201,168,76,.06); padding: .5rem 1rem; border-radius: 999px; margin-bottom: 1.5rem; }
h1 .muted { color: var(--gray-400); }
.hero-text p { font-size: 1.1rem; color: var(--gray-600); margin: 1.5rem 0 2.5rem; max-width: 420px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; }
.stat strong { display: block; font-size: 1.25rem; font-weight: 700; }
.stat span { font-size: .8rem; color: var(--gray-600); }
.stat-div { width: 1px; height: 2.5rem; background: var(--gray-200); }

/* ── Hero Plate Demo ── */
.hero-img { display: flex; justify-content: center; }
.hero-plate { text-align: center; }
.plate-preview { background: var(--black); color: var(--gold); padding: 2.5rem 3.5rem; border-radius: var(--radius-lg); margin-bottom: 1.5rem; box-shadow: var(--shadow-lg); min-width: 280px; transition: all .4s ease; }
.plate-family { display: block; font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; letter-spacing: .05em; line-height: 1; }
.plate-sub { display: block; font-size: .85rem; letter-spacing: .3em; text-transform: uppercase; margin-top: .75rem; opacity: .7; }
.plate-controls { display: flex; gap: .75rem; justify-content: center; }
.plate-btn { padding: .5rem 1rem; border: 1px solid var(--gray-200); border-radius: 10px; background: white; font-size: .85rem; cursor: pointer; font-family: inherit; transition: all .2s; }
.plate-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── How It Works ── */
.how-it-works { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--gold); margin-bottom: .75rem; }
.section-header h2 { margin-bottom: 0; }
.section-header .see-all { font-size: .9rem; color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; margin-top: .5rem; }
.section-header .see-all:hover { gap: .8rem; }
.steps { display: flex; align-items: flex-start; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.step { text-align: center; max-width: 200px; }
.step-num { font-size: .7rem; font-weight: 800; color: var(--gold); letter-spacing: .15em; margin-bottom: .75rem; }
.step-icon { width: 64px; height: 64px; background: white; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); margin: 0 auto 1rem; box-shadow: var(--shadow); }
.step h3 { font-size: 1rem; margin-bottom: .4rem; }
.step p { font-size: .85rem; color: var(--gray-600); }
.step-arrow { color: var(--gray-200); font-size: 1.5rem; margin-top: 3rem; }

/* ── Products ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.product-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100); transition: all .3s; cursor: pointer; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gray-200); }
.product-img { aspect-ratio: 1; background: var(--gray-50); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-img-placeholder { font-size: 4rem; }
.product-badge { position: absolute; top: .75rem; left: .75rem; background: var(--gold); color: white; font-size: .7rem; font-weight: 700; padding: .25rem .75rem; border-radius: 999px; }
.product-info { padding: 1.25rem; }
.product-category { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 700; margin-bottom: .4rem; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.product-desc { font-size: .82rem; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.25rem; font-weight: 700; color: var(--black); }
.product-rating { font-size: .8rem; color: var(--gold); }
.btn-add { background: var(--black); color: white; padding: .5rem 1rem; border-radius: 10px; border: none; cursor: pointer; font-size: .82rem; font-weight: 600; transition: all .2s; }
.btn-add:hover { background: var(--gold); }

/* ── Testimonials ── */
.testimonials { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid var(--gray-100); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar { width: 40px; height: 40px; background: var(--black); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span { font-size: .75rem; color: var(--gray-400); }

/* ── CTA ── */
.cta-section { background: var(--gray-50); }
.cta-card { background: var(--black); color: white; border-radius: 24px; padding: 4rem 3rem; text-align: center; }
.cta-card h2 { color: white; margin-bottom: 1rem; }
.cta-card p { color: rgba(255,255,255,.7); margin-bottom: 2rem; font-size: 1.1rem; }

/* ── Footer ── */
.footer { background: var(--black); color: white; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { color: white; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.social-links { display: flex; gap: 1rem; margin-top: 1.25rem; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: .9rem; transition: background .2s; }
.social-links a:hover { background: var(--gold); }
.footer-links h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-links a { display: block; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: .5rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.payment-icons { display: flex; gap: .75rem; font-size: 1.2rem; color: rgba(255,255,255,.4); }

/* ── Cart Drawer ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 380px; max-width: 100vw; background: white; z-index: 201; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,.15); }
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 1.5rem; border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-size: 1.1rem; }
.cart-header button { background: none; border: none; cursor: pointer; color: var(--gray-600); font-size: 1.1rem; padding: .25rem; }
.cart-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--gray-400); }
.cart-empty i { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.cart-footer { padding: 1.5rem; border-top: 1px solid var(--gray-200); }
.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--gray-100); }
.cart-item-img { width: 64px; height: 64px; background: var(--gray-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: .9rem; margin-bottom: .25rem; }
.cart-item-price { color: var(--gold); font-weight: 700; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 1rem; font-size: 1.05rem; }

/* ── Toast ── */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--black); color: white; padding: .9rem 1.75rem; border-radius: 14px; font-size: .9rem; font-weight: 500; z-index: 999; transition: transform .3s; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .5rem; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-bg { width: 100%; height: 50%; top: auto; bottom: 0; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps { gap: .5rem; }
  .step-arrow { display: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
}
