/* ============================================
   UrHighness — Pure. Potent. Perfect.
   Cannabis Dispensary — Johannesburg, SA
   Dark Luxury Theme

   Follows African Essence structure & class names
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --pink: #E91E8C;
  --pink-light: #FF4DB8;
  --pink-glow: rgba(233, 30, 140, 0.3);
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --bg-dark: #0A0A0A;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;
  --border: #2A2A2A;
  --white: #FFFFFF;
  --text-body: #CCCCCC;
  --text-muted: #999999;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ---------- 1. Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--pink-light);
}

ul, ol {
  list-style: none;
}

/* ---------- 2. Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 60px 0;
}

section {
  padding: 60px 0;
}

/* ---------- 3. Utility Classes ---------- */
.bg-white {
  background-color: #0F0F0F;
}

.bg-cream {
  background-color: #0A0A0A;
}

.bg-green {
  background-color: var(--green-deep);
  color: var(--white);
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-pink {
  color: var(--pink);
}

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }

p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---------- 5. Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  margin-bottom: 48px;
}

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
  text-align: center;
}

.btn-primary:hover {
  background: var(--pink-light);
  color: var(--white);
  box-shadow: 0 0 24px var(--pink-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--pink);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 0 24px var(--pink-glow);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-block;
  padding: 14px 32px;
  background: var(--white);
  color: var(--bg-dark);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
  text-align: center;
}

.btn-white:hover {
  background: #f0f0f0;
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #25D366;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: var(--white);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(197, 165, 90, 0.3);
  transform: translateY(-2px);
}

.btn-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  width: 100%;
}

.btn-add-cart:hover {
  background: var(--pink-light);
  box-shadow: 0 0 16px var(--pink-glow);
}

.btn-add-cart.added {
  background: var(--green-mid);
}

/* ---------- 7. Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), box-shadow var(--transition);
  overflow: visible;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  height: 100%;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.logo,
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo img,
.nav-logo img {
  height: var(--nav-height);
  width: auto;
  display: block;
  object-fit: contain;
}

.logo .crown,
.nav-logo .crown {
  color: var(--gold);
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cart {
  position: relative;
  cursor: pointer;
  color: var(--white);
  font-size: 1.2rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.cart-badge.bump {
  transform: scale(1.3);
}

.cart-badge:empty,
.cart-badge[data-count="0"] {
  display: none;
}

/* Hamburger / Menu Toggle */
.menu-toggle,
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}

.menu-toggle span,
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.active span:nth-child(1),
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2),
.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3),
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay,
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.mobile-overlay.active,
.mobile-menu-overlay.active {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--bg-card);
  z-index: 1050;
  padding: 100px 24px 40px;
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--text-body);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-menu a:hover {
  color: var(--pink);
  padding-left: 8px;
}

/* ---------- 8. Age Gate ---------- */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.age-gate-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.age-gate-modal {
  background: var(--bg-card);
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px var(--pink-glow), 0 0 120px rgba(233, 30, 140, 0.15);
  animation: ageGateIn 0.5s ease;
}

@keyframes ageGateIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.age-gate-modal .age-gate-crown {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.age-gate-logo {
  max-width: 200px;
  margin: 0 auto 24px;
  display: block;
}

.age-gate-modal .age-gate-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 24px;
}

.age-gate-modal .age-gate-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.age-gate-modal .age-gate-question {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 24px;
}

.age-gate-modal .age-gate-logo {
  max-width: 120px;
  margin: 0 auto 20px;
}

.age-gate-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.age-gate-btn {
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid var(--pink);
  font-family: var(--font-body);
}

.age-gate-confirm {
  background: var(--pink);
  color: var(--white);
}

.age-gate-confirm:hover {
  background: var(--pink-light);
  border-color: var(--pink-light);
  box-shadow: 0 0 20px var(--pink-glow);
}

.age-gate-deny {
  background: transparent;
  color: var(--pink);
}

.age-gate-deny:hover {
  background: rgba(233, 30, 140, 0.1);
}

/* ---------- 9. Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 24px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.4) 40%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 10s ease;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.4) 40%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(233, 30, 140, 0.15);
  border: 1px solid rgba(233, 30, 140, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}

.hero-crown {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-title span {
  color: var(--pink);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-body);
  margin-bottom: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 32px;
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--pink);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--pink-light);
  color: var(--white);
  box-shadow: 0 0 30px var(--pink-glow);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
  text-decoration: none;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 24px;
  background: var(--text-muted);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- 10. Stats Bar ---------- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 48px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- 11. Step Cards ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.1);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- 12. Category Cards ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  transition: transform var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.category-card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
}

.category-card-overlay .category-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- 13. Product Cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--pink);
  box-shadow: 0 8px 40px rgba(233, 30, 140, 0.12);
  transform: translateY(-4px);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-shipping,
.product-shipping {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(197, 165, 90, 0.3);
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.product-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.product-card-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-card-price,
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 16px;
  margin-top: auto;
}

/* ---------- 14. Category Filters (shop page pills) ---------- */
.category-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover {
  border-color: var(--pink);
  color: var(--white);
}

.filter-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* ---------- 15. Bundle Card ---------- */
.bundle-card {
  background: linear-gradient(135deg, var(--pink) 0%, #9B1B8C 50%, #6B21A8 100%);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  margin: 40px 0;
}

.bundle-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.bundle-content {
  padding: 48px;
  position: relative;
  z-index: 1;
}

.bundle-content .bundle-label {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.bundle-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.bundle-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.bundle-image {
  position: relative;
  z-index: 1;
  height: 100%;
}

.bundle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Promo Card (alias for bundle) */
.promo-card {
  background: linear-gradient(135deg, var(--pink) 0%, #9B1B8C 50%, #6B21A8 100%);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.promo-card-text {
  position: relative;
  z-index: 1;
}

.promo-card-text .promo-label {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.promo-card-text h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.promo-card-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.promo-card-image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.promo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
}

/* ---------- 16. Review Cards ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}

.review-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.1);
}

.quote-mark {
  font-size: 3rem;
  color: var(--pink);
  line-height: 1;
  font-family: var(--font-heading);
  opacity: 0.4;
  margin-bottom: 12px;
  display: block;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.review-author .author-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.review-author .author-title {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- 17. CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--pink) 0%, #9B1B8C 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ---------- 18. Page Hero (inner pages) ---------- */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(233, 30, 140, 0.08) 0%, var(--bg-dark) 100%);
  position: relative;
}

.page-hero-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ---------- 19. FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--pink);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--pink);
}

.faq-question .faq-icon {
  font-size: 1.2rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--pink);
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- 20. Cart Drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: var(--bg-card);
  z-index: 2001;
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.cart-drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px;
}

.cart-drawer-close:hover {
  color: var(--white);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-drawer-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}

.cart-drawer-empty .empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.cart-item,
.cart-drawer-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.cart-item-image {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--pink);
  font-weight: 600;
}

.cart-item-shipping-note {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-dark);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.cart-item-qty button:hover {
  border-color: var(--pink);
  background: var(--pink);
}

.cart-item-qty span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: #ff4444;
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cart-totals {
  margin-bottom: 16px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.cart-total-row.grand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-drawer-actions .btn-primary,
.cart-drawer-actions .btn-whatsapp {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* ---------- 21. Checkout ---------- */
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
}

/* Only show mobile pay button on small screens, desktop button on large */
.checkout-pay-mobile {
  display: none;
}

.checkout-pay-desktop {
  display: inline-flex;
}

.checkout-secure-note {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.checkout-section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

.checkout-section-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.shipping-option:hover,
.shipping-option.selected {
  border-color: var(--pink);
}

.shipping-option input[type="radio"] {
  accent-color: var(--pink);
  width: 18px;
  height: 18px;
}

.shipping-option-label,
.shipping-option-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shipping-option-label .method-name,
.shipping-option-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.shipping-option-label .method-desc,
.shipping-option-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.shipping-option .method-price,
.shipping-option-price {
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.order-summary-card {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.order-summary-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.order-summary-item .item-name {
  color: var(--white);
  font-weight: 500;
}

.order-summary-item .item-qty {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.order-summary-item .item-price {
  color: var(--text-body);
  font-weight: 600;
}

.order-summary-totals {
  margin-top: 16px;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
}

.order-summary-row.total {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

.btn-pay {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  background: var(--pink);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.btn-pay:hover {
  background: var(--pink-light);
  box-shadow: 0 0 24px var(--pink-glow);
}

/* Payment Modal Placeholder */
.payment-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.payment-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.payment-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.payment-modal h3 {
  font-family: var(--font-heading);
  margin-bottom: 12px;
}

.payment-modal p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.payment-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- 22. Confirmation ---------- */
.confirmation-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.confirmation-content {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.confirmation-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.confirmation-checkmark svg {
  width: 100%;
  height: 100%;
}

.confirmation-checkmark .check-circle {
  stroke: var(--green-light);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawCircle 0.6s ease forwards;
}

.confirmation-checkmark .check-mark {
  stroke: var(--green-light);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.4s 0.5s ease forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.confirmation-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 8px;
}

.confirmation-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.confirmation-order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  margin-bottom: 24px;
}

.confirmation-order-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.confirmation-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.confirmation-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

/* ---------- 23. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form h3 {
  font-family: var(--font-heading);
  margin-bottom: 24px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(233, 30, 140, 0.1);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--pink);
}

.contact-info-text h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-text p {
  color: var(--white);
  margin-bottom: 0;
}

/* ---------- Showcase Grid (About / Story) ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.showcase-image {
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 400px;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- 24. About Section ---------- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--pink);
  border-radius: var(--radius);
  opacity: 0.3;
  pointer-events: none;
}

.about-text .section-subtitle {
  margin-bottom: 8px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.about-stat-item {
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--pink);
  font-weight: 700;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- 25. How It Works ---------- */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.how-it-works-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.how-it-works-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.1);
}

.how-it-works-number {
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.how-it-works-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.how-it-works-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- 26. Trust Badges ---------- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.trust-badge-icon {
  width: 56px;
  height: 56px;
  background: rgba(233, 30, 140, 0.08);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--pink);
}

.trust-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- 27. WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ---------- 28. Footer ---------- */
.footer {
  background: #050505;
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .footer-logo .crown {
  color: var(--gold);
}

.footer-brand .footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 1rem;
}

.footer-social-links a:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(233, 30, 140, 0.1);
}

.footer-column h4,
.footer-links h4,
.footer-grid > div > h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-column ul li,
.footer-links ul li {
  margin-bottom: 10px;
}

.footer-column ul li a,
.footer-links ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-column ul li a:hover,
.footer-links ul li a:hover {
  color: var(--pink);
  padding-left: 4px;
}

.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-item .icon {
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--pink);
  font-size: 0.8rem;
}

/* ---------- Private Menu Section ---------- */
.private-menu-block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.private-menu-block h2 {
  margin-bottom: 8px;
}

.private-menu-subtitle {
  color: var(--pink);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 24px;
}

.private-menu-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.private-menu-disclaimer {
  margin-top: 28px;
  font-size: 0.72rem;
  color: #666;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

@media (max-width: 480px) {
  .private-menu-block {
    padding: 32px 20px;
  }
}

/* ---------- 29. Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ---------- 30. Responsive ---------- */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkout-container {
    grid-template-columns: 1fr;
  }

  .order-summary-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section {
    gap: 40px;
  }

  .promo-card,
  .bundle-card {
    padding: 32px;
  }

  .bundle-card {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 40px 0;
  }

  section {
    padding: 40px 0;
  }

  .navbar .container {
    justify-content: space-between;
    gap: 0;
  }

  .logo img,
  .nav-logo img {
    height: 48px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    padding: 24px;
    padding-top: calc(var(--nav-height) + 24px);
    z-index: 1050;
    border-left: 1px solid var(--border);
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-sizing: border-box;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links .nav-link,
  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--white);
    position: relative;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
    background: var(--pink);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
  }

  .nav-links .cart-trigger {
    padding: 14px 0;
    border-bottom: none;
  }

  .menu-toggle,
  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .showcase-image {
    max-height: 280px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    order: -1;
  }

  .promo-card,
  .bundle-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .trust-badges {
    gap: 24px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cart-drawer {
    width: 100vw;
    right: -100vw;
  }

  .checkout-container {
    grid-template-columns: 1fr;
  }

  .checkout-pay-mobile {
    display: block;
  }

  .checkout-pay-desktop {
    display: none;
  }

  .checkout-section-card {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 24px;
  }

  .age-gate-modal {
    padding: 36px 28px;
  }

  .age-gate-buttons {
    flex-direction: column;
  }

  .age-gate-btn {
    width: 100%;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .product-card-body {
    padding: 14px;
  }

  .product-card-body h3 {
    font-size: 1rem;
  }

  .btn-add-cart {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .about-stats {
    flex-direction: column;
    gap: 16px;
  }

  .page-hero {
    padding: 120px 0 40px;
  }

  .promo-card,
  .bundle-card {
    padding: 24px 20px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }
}
