@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim:   rgba(201,168,76,0.15);
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark2:      #1A1A1A;
  --dark3:      #222222;
  --white:      #F5F0E8;
  --gray:       #888888;
  --gray2:      #555555;
  --green:      #5DCAA5;
  --red:        #E24B4A;
  --blue:       #85B7EB;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── SCROLLBAR ────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── NAVIGATION ───────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 22px; letter-spacing: 5px;
  color: var(--gold); text-decoration: none;
  font-weight: 700;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--gray); text-decoration: none;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 600; transition: color .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-right {
  display: flex; align-items: center; gap: 20px;
}
.nav-icon-btn {
  background: transparent; border: none;
  color: var(--gray); cursor: pointer; font-size: 18px;
  position: relative; transition: color .3s;
  text-decoration: none; display: flex; align-items: center;
}
.nav-icon-btn:hover { color: var(--gold); }
.nav-cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: var(--black);
  font-size: 9px; font-weight: 700; font-family: 'Raleway', sans-serif;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.nav-cart-count.show { opacity: 1; }
.nav-hamburger {
  display: none; background: transparent; border: none;
  color: var(--white); font-size: 22px; cursor: pointer;
}
.nav-mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--black); border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 24px 40px; z-index: 999;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a {
  display: block; padding: 12px 0;
  color: var(--gray); text-decoration: none;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; border-bottom: 1px solid rgba(201,168,76,0.06);
  transition: color .3s;
}
.nav-mobile-menu a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

/* ── FOOTER ───────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 56px 40px 40px;
  text-align: center;
  margin-top: 0;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 28px; letter-spacing: 6px;
  color: var(--gold); display: block;
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 32px;
}
.footer-links {
  display: flex; justify-content: center; gap: 32px;
  flex-wrap: wrap; margin-bottom: 32px;
}
.footer-links a {
  color: var(--gray); text-decoration: none;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: var(--gray2); }

/* ── SECTION LABELS ───────────────────────── */
.section-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px;
}
.section-title {
  font-family: 'Cinzel', serif; font-size: clamp(24px, 4vw, 40px);
  color: var(--white); letter-spacing: 3px; line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 14px; color: var(--gray); line-height: 1.8;
  max-width: 520px;
}

/* ── TOAST ────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--gold); color: var(--black);
  padding: 12px 24px; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none; z-index: 9999;
  font-family: 'Raleway', sans-serif;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── GOLD DIVIDER ─────────────────────────── */
.gold-line {
  width: 40px; height: 2px; background: var(--gold);
  margin: 0 auto 24px;
}

/* ── BUTTONS ──────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--black);
  padding: 14px 32px; font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; border: none; cursor: pointer;
  text-decoration: none; transition: background .3s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--gold);
  padding: 13px 32px; font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; border: 1px solid rgba(201,168,76,0.4);
  cursor: pointer; text-decoration: none; transition: all .3s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ── PAGE HERO ────────────────────────────── */
.page-hero {
  padding: 120px 40px 60px;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
@media (max-width: 600px) {
  .page-hero { padding: 100px 20px 48px; }
  .footer-links { gap: 20px; }
  .site-footer { padding: 40px 20px 32px; }
}

/* WhatsApp pulse */
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-btn { animation: waPulse 2s infinite; }

/* Social follow bar */
.social-follow {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 40px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px; font-family: 'Raleway', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; text-decoration: none; transition: all .3s;
  border: 1px solid rgba(201,168,76,0.25); color: var(--gray);
}
.social-btn:hover { border-color: var(--gold); color: var(--white); }
.social-btn svg { flex-shrink: 0; }
