/* =============================================================
   Aura Perfumes — Public Website CSS
   Theme: Luxury Black + Champagne Gold
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');
:root {
  --black:    #080808;
  --surface:  #111111;
  --card:     #161616;
  --border:   #252525;
  --gold:     #c9a84c;
  --gold-lt:  #e8d5a0;
  --text:     #f5f0e8;
  --muted:    #888;
  --radius:   12px;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--black); color: var(--text); line-height: 1.7; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-lt); }
img { max-width: 100%; display: block; }

/* Nav */
nav.main-nav { position: sticky; top: 0; z-index: 100; background: rgba(8,8,8,.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo   { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: .5px; }
.nav-logo span { font-size: .65rem; display: block; color: var(--muted); font-family: var(--sans); letter-spacing: 3px; text-transform: uppercase; margin-top: -2px; }
.nav-links  { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: .875rem; color: var(--muted); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-wa { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; background: #25d366; color: #fff; border-radius: 99px; font-size: .82rem; font-weight: 700; transition: all .2s; }
.nav-wa:hover { background: #1fba59; color: #fff; transform: translateY(-1px); }

/* Hero */
.hero { min-height: 85vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.08) 0%, transparent 65%), radial-gradient(ellipse at 20% 80%, rgba(60,20,80,.15) 0%, transparent 60%); }
.hero-content { max-width: 1200px; margin: 0 auto; padding: 80px 24px; position: relative; z-index: 1; }
.hero-eyebrow { font-size: .75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; line-height: 1.1; color: var(--text); margin-bottom: 20px; max-width: 700px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p  { font-size: 1.05rem; color: var(--muted); max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-gold-pub { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: linear-gradient(135deg, var(--gold), #b8903a); color: #0d0a04; font-weight: 700; border-radius: 99px; font-size: .9rem; transition: all .2s; }
.btn-gold-pub:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); color: #0d0a04; }
.btn-outline-pub { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border: 1px solid var(--border); color: var(--text); font-size: .9rem; border-radius: 99px; transition: all .2s; }
.btn-outline-pub:hover { border-color: var(--gold); color: var(--gold); }

/* Section */
.section { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.section-label { font-size: .72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--text); margin-bottom: 40px; line-height: 1.2; }
.section-divider { border: none; border-top: 1px solid var(--border); }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; cursor: pointer; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.4); border-color: rgba(201,168,76,.3); }
.product-card-img { aspect-ratio: 1; overflow: hidden; background: #0d0d0d; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 16px; }
.product-brand { font-size: .7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 4px; }
.product-name  { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.product-tags  { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.product-tag   { font-size: .65rem; padding: 2px 8px; border-radius: 99px; border: 1px solid var(--border); color: var(--muted); }
.product-price { font-size: 1rem; font-weight: 700; color: var(--text); }
.product-price-old { font-size: .8rem; color: var(--muted); text-decoration: line-through; margin-left: 6px; }
.product-wa-btn { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; padding: 10px; background: rgba(37,211,102,.1); color: #25d366; border: 1px solid rgba(37,211,102,.25); border-radius: 8px; font-size: .82rem; font-weight: 600; margin-top: 10px; transition: all .2s; }
.product-wa-btn:hover { background: rgba(37,211,102,.2); color: #25d366; }

/* Family filter chips */
.family-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.family-chip { padding: 6px 16px; border-radius: 99px; border: 1px solid var(--border); color: var(--muted); font-size: .8rem; cursor: pointer; transition: all .2s; }
.family-chip:hover, .family-chip.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }

/* Rating visual */
.rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.rating-bar-label { font-size: .78rem; color: var(--muted); min-width: 80px; }
.rating-bar-track { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.rating-bar-fill  { height: 100%; background: linear-gradient(90deg, var(--gold), #e8d5a0); border-radius: 2px; transition: width .6s ease; }
.rating-bar-val   { font-size: .78rem; color: var(--gold); font-weight: 700; min-width: 28px; }

/* Footer */
footer { border-top: 1px solid var(--border); margin-top: 80px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 48px 24px 28px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); margin-bottom: 10px; }
.footer-tagline { font-size: .85rem; color: var(--muted); }
.footer-links h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 14px; }
.footer-links a  { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 8px; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { text-align: center; padding: 20px; border-top: 1px solid var(--border); font-size: .78rem; color: #444; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero { min-height: auto; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
