/* ============================================================
   NN BLACK MAGIC — Main Stylesheet
   Design: Midnight Mystical • Cinzel + Crimson Text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --midnight:    #0D0A1A;
  --void:        #080612;
  --deep:        #130820;
  --panel:       #1a0533;
  --border:      rgba(107,33,168,0.25);
  --border-gold: rgba(212,160,23,0.3);

  --mystic:      #6B21A8;
  --mystic-lite: #9333EA;
  --gold:        #D4A017;
  --gold-lite:   #F0C040;
  --crimson:     #8B0000;
  --scarlet:     #C0392B;

  --smoke:       #E8E0F0;
  --muted:       #9999AA;
  --ghost:       #5a5a6e;

  --ff-display: 'Cinzel', 'Times New Roman', serif;
  --ff-body:    'Crimson Text', Georgia, serif;
  --ff-ui:      'Inter', system-ui, sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-gold:  0 0 30px rgba(212,160,23,0.25), 0 0 60px rgba(212,160,23,0.1);
  --glow-mystic:0 0 30px rgba(107,33,168,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--midnight);
  color: var(--smoke);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: rgba(107,33,168,0.5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--mystic); }

/* ── AMBIENT BACKGROUND ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 10%, rgba(107,33,168,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 85% 85%, rgba(139,0,0,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(212,160,23,0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.2; }

.section-eyebrow {
  font-family: var(--ff-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--smoke);
  margin-bottom: 16px;
}

.section-title span { color: var(--gold); }

.section-desc {
  color: var(--muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── DIVIDER ─────────────────────────────────────────────── */
.sacred-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 48px;
  justify-content: center;
}
.sacred-divider::before,
.sacred-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.sacred-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.sacred-divider span { color: var(--gold); font-size: 18px; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { position: relative; padding: 90px 0; z-index: 1; }
.section-dark { background: rgba(8,6,18,0.6); }
.section-panel { background: rgba(26,5,51,0.4); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(212,160,23,0.4));
  transition: filter var(--transition), transform var(--transition);
}
.nav-brand:hover .nav-logo-img {
  filter: drop-shadow(0 0 16px rgba(212,160,23,0.7));
  transform: scale(1.04);
}
.site-nav.scrolled .nav-logo-img { height: 144px!important; }

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.site-nav.scrolled {
  background: rgba(8,6,18,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand-symbol { font-size: 28px; line-height: 1; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1.1;
}
.nav-brand-sub {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--smoke); background: rgba(107,33,168,0.15); }
.nav-cta {
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--mystic), var(--mystic-lite));
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(107,33,168,0.4); color: #fff; }

.cart-count {
  background: var(--gold);
  color: var(--void);
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--smoke);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,6,18,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 12px 16px; font-size: 15px; }
.nav-mobile .nav-cta { margin-top: 8px; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Sacred geometry mandala */
.mandala-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.mandala-bg svg {
  width: min(90vw, 900px);
  height: min(90vw, 900px);
  opacity: 0.06;
  animation: mandala-spin 120s linear infinite;
}
@keyframes mandala-spin { to { transform: rotate(360deg); } }

.mandala-inner {
  position: absolute;
  width: min(60vw, 600px);
  height: min(60vw, 600px);
  opacity: 0.04;
  animation: mandala-spin 80s linear infinite reverse;
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.hero-symbol {
  font-size: clamp(48px, 8vw, 80px);
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(212,160,23,0.6));
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(212,160,23,0.6)); }
  50%       { filter: drop-shadow(0 0 40px rgba(212,160,23,0.9)) drop-shadow(0 0 80px rgba(107,33,168,0.4)); }
}

.hero-eyebrow {
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-size: clamp(40px, 8vw, 90px);
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1.05;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--smoke) 0%, var(--gold) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--ff-display);
  font-size: clamp(14px, 2.5vw, 22px);
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-desc {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  font-family: var(--ff-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--mystic), var(--mystic-lite));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(107,33,168,0.5); color: #fff; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: var(--void);
  font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); color: var(--void); }

.btn-outline {
  background: transparent;
  color: var(--smoke);
  border: 1px solid rgba(212,160,23,0.4);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(212,160,23,0.08); color: var(--smoke); }

.btn-ghost {
  background: rgba(107,33,168,0.15);
  color: var(--smoke);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(107,33,168,0.25); color: var(--smoke); }

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 18px 44px; font-size: 15px; border-radius: 10px; }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: rgba(26,5,51,0.8);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 32px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border-gold);
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(26,5,51,0.5);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,33,168,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), var(--glow-gold);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(107,33,168,0.3), rgba(139,0,0,0.2));
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.service-title {
  font-size: 18px;
  color: var(--smoke);
  margin-bottom: 10px;
}
.service-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border-gold);
  position: relative;
}
.about-image-frame img { width: 100%; height: 480px; object-fit: cover; }
.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(13,10,26,0.8));
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--mystic), var(--crimson));
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 30px rgba(107,33,168,0.5);
}
.about-badge-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-badge-text { font-size: 10px; color: #fff; letter-spacing: 1px; text-transform: uppercase; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { color: var(--muted); margin-bottom: 20px; font-size: 17px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-ui);
  font-size: 14px;
  color: var(--smoke);
}
.about-feature-icon { color: var(--gold); font-size: 16px; flex-shrink: 0; }

/* ── PRODUCTS ─────────────────────────────────────────────── */
.products-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--mystic);
  border-color: var(--mystic);
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: rgba(26,5,51,0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,160,23,0.5);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 40px rgba(212,160,23,0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--deep);
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}
.badge-featured { background: var(--gold); color: var(--void); }
.badge-sale     { background: var(--scarlet); color: #fff; }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,10,26,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 3;
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(13,10,26,0.8);
  color: var(--gold);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.overlay-btn:hover { background: var(--gold); color: var(--void); }

.product-body { padding: 20px; }
.product-category {
  font-family: var(--ff-ui);
  font-size: 10px;
  color: var(--mystic-lite);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.product-name {
  font-size: 17px;
  color: var(--smoke);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-price { display: flex; align-items: baseline; gap: 8px; }
.price-current {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}
.price-original {
  font-size: 14px;
  color: var(--ghost);
  text-decoration: line-through;
}
.btn-add-cart {
  background: linear-gradient(135deg, var(--mystic), var(--mystic-lite));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-add-cart:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(107,33,168,0.4); }
.btn-add-cart.added { background: linear-gradient(135deg, #2d6a4f, #40916c); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(26,5,51,0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testimonial-text { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mystic), var(--crimson));
  border: 2px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 16px;
  color: var(--gold);
  font-weight: 700;
}
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--smoke); }
.testimonial-loc  { font-size: 12px; color: var(--ghost); font-family: var(--ff-ui); }

/* ── CART SIDEBAR ─────────────────────────────────────────── */
.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);
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

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

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-title {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 1px;
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(107,33,168,0.2);
  border: 1px solid var(--border);
  color: var(--smoke);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cart-close:hover { background: rgba(139,0,0,0.3); color: #FF6B6B; }

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

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 64px; height: 64px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--panel);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 15px; color: var(--smoke); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-family: var(--ff-display); font-size: 16px; color: var(--gold); }
.cart-qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(107,33,168,0.2);
  border: 1px solid var(--border);
  color: var(--smoke);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--mystic); }
.qty-num { font-family: var(--ff-ui); font-size: 14px; color: var(--smoke); min-width: 20px; text-align: center; }
.cart-item-remove { color: #FF6B6B; background: none; border: none; font-size: 18px; cursor: pointer; padding: 4px; opacity: 0.6; transition: opacity 0.2s; align-self: flex-start; }
.cart-item-remove:hover { opacity: 1; }

.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.4; }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-gold);
  background: rgba(26,5,51,0.4);
}
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; color: var(--muted); }
.cart-grand-total { display: flex; justify-content: space-between; margin-bottom: 20px; }
.cart-grand-total span:first-child { font-family: var(--ff-display); font-size: 15px; color: var(--smoke); }
.cart-grand-total span:last-child { font-family: var(--ff-display); font-size: 22px; color: var(--gold); font-weight: 700; }
.btn-checkout { width: 100%; justify-content: center; font-size: 15px; padding: 16px; border-radius: 10px; }

/* ── VIDEOS SECTION ──────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  background: rgba(26,5,51,0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--transition);
}
.video-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,10,26,0.4);
  transition: background var(--transition);
}
.video-card:hover .video-play { background: rgba(13,10,26,0.6); }
.play-btn-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(212,160,23,0.9);
  border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--void);
  transition: all var(--transition);
  padding-left: 4px;
}
.video-card:hover .play-btn-icon { transform: scale(1.1); background: var(--gold); }
.video-body { padding: 16px 18px; }
.video-title { font-size: 15px; color: var(--smoke); margin-bottom: 6px; line-height: 1.4; }
.video-cat { font-family: var(--ff-ui); font-size: 11px; color: var(--mystic-lite); text-transform: uppercase; letter-spacing: 1px; }

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(8px);
}
.video-modal.open { opacity: 1; pointer-events: auto; }
.video-modal-inner {
  width: 90%;
  max-width: 900px;
  position: relative;
}
.video-modal-close {
  position: absolute;
  top: -48px; right: 0;
  background: none; border: none;
  color: #fff; font-size: 28px; cursor: pointer;
  opacity: 0.7; transition: opacity 0.2s;
}
.video-modal-close:hover { opacity: 1; }
.video-modal-frame {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; }

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(107,33,168,0.2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-label { font-family: var(--ff-ui); font-size: 11px; color: var(--mystic-lite); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-value { font-size: 16px; color: var(--smoke); }
.contact-form-card {
  background: rgba(26,5,51,0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-label { font-family: var(--ff-ui); font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; display: block; }
.form-input {
  width: 100%;
  background: rgba(13,10,26,0.8);
  border: 1px solid rgba(107,33,168,0.3);
  color: var(--smoke);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.1); }
.form-input::placeholder { color: #555; }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--void);
  border-top: 1px solid var(--border-gold);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--ff-display);
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer-brand p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 280px; }
.footer-title { font-family: var(--ff-display); font-size: 14px; color: var(--gold); letter-spacing: 2px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--muted); transition: color var(--transition); font-family: var(--ff-ui); }
.footer-link:hover { color: var(--smoke); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(107,33,168,0.15);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--muted);
  transition: all var(--transition);
}
.social-icon:hover { background: rgba(107,33,168,0.3); color: var(--smoke); border-color: rgba(107,33,168,0.5); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy { font-family: var(--ff-ui); font-size: 13px; color: var(--ghost); }

/* ── TOAST ────────────────────────────────────────────────── */
.toast-wrap {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 5000;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  background: rgba(26,5,51,0.96);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--ff-ui);
  font-size: 14px;
  color: var(--smoke);
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: slide-in 0.3s ease, fade-out 0.4s ease 2.5s forwards;
  max-width: 300px;
  backdrop-filter: blur(10px);
}
@keyframes slide-in { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fade-out { to { opacity: 0; transform: translateX(20px); } }
.toast-icon { font-size: 18px; }
.toast.success .toast-icon::before { content: '✅'; }
.toast.error   .toast-icon::before { content: '❌'; }
.toast.info    .toast-icon::before { content: '🔱'; }

/* ── PRODUCT DETAIL ───────────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery { position: relative; }
.gallery-main {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-gold);
  aspect-ratio: 1;
  background: var(--deep);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.meta-item { background: rgba(26,5,51,0.5); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.meta-label { font-family: var(--ff-ui); font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.meta-value { font-size: 16px; color: var(--smoke); font-weight: 500; }
.benefits-list { list-style: none; padding: 0; }
.benefits-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 15px; color: var(--muted); }
.benefits-list li::before { content: '✦'; color: var(--gold); flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 130px 0 60px;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 16px; font-family: var(--ff-ui); font-size: 12px; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--ghost); }
.breadcrumb-current { color: var(--gold); }

/* ── UTILITIES ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

.whatsapp-float {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 1000;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-height: 340px; overflow: hidden; border-radius: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item + .stat-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .section { padding: 60px 0; }
  .about-features { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cart-drawer { width: 100vw; }
}

/* ── LOADING STATE ─────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, rgba(107,33,168,0.1) 25%, rgba(107,33,168,0.2) 50%, rgba(107,33,168,0.1) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}
@keyframes shimmer { to { background-position: -200% 0; } }
