/* Amora — Juicys Date Night Drip
   Brand tokens, resets, base typography */

:root {
  --bg: #F7F3EC;
  --bg-dark: #1A0F14;
  --fg: #2C1A1E;
  --fg-light: #F7F3EC;
  --accent: #C8864A;
  --accent-soft: #D4A882;
  --burgundy: #3D1F2B;
  --cream: #F7F3EC;
  --warm: #C8864A;
  --rose: #8B4A6B;
  --text-muted: #7A5A62;
  --border: rgba(61, 31, 43, 0.12);
  --shadow: 0 2px 16px rgba(61, 31, 43, 0.10);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

::selection { background: var(--burgundy); color: var(--cream); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--burgundy);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  letter-spacing: 0.3px;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(61, 31, 43, 0.30);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(61, 31, 43, 0.40); }

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}
.btn-outline:hover { background: var(--burgundy); color: var(--cream); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  mix-blend-mode: difference;
}
.nav-inner { display: flex; align-items: baseline; gap: 20px; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg-light);
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.6);
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(247, 243, 236, 0.75);
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--cream); }
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(247, 243, 236, 0.75);
  text-transform: uppercase;
  cursor: pointer;
}
.cart-count {
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -12px;
}
.cart-count.hidden { display: none; }