/* ===== SkyBolt Hub NZ - Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --yellow-glow: #FFE600;
  --yellow-mid: #FFB800;
  --yellow-deep: #FF8C00;
  --purple-dark: #0d0820;
  --purple-mid: #1a0a3e;
  --purple-light: #2a1060;
  --purple-card: #1e0f45;
  --gold: #c9a84c;
  --text-main: #f0e6ff;
  --text-sub: #b0a0cc;
  --white: #ffffff;
  --glow-sm: 0 0 8px rgba(255,230,0,0.5), 0 0 20px rgba(255,184,0,0.3);
  --glow-md: 0 0 15px rgba(255,230,0,0.6), 0 0 40px rgba(255,184,0,0.4);
  --glow-lg: 0 0 25px rgba(255,230,0,0.8), 0 0 60px rgba(255,184,0,0.5);
  --border-glow: 1px solid rgba(255,230,0,0.3);
  --transition: 0.3s ease;
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--purple-dark);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== ANIMATED BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255,230,0,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(139,0,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,140,0,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* ===== PARTICLES ===== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--yellow-glow);
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Cinzel', serif; }

.glow-text {
  color: var(--yellow-glow);
  text-shadow: var(--glow-md);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--yellow-glow);
  text-shadow: var(--glow-sm);
}

.section-subtitle {
  text-align: center;
  color: var(--text-sub);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; position: relative; z-index: 1; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 8, 32, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,230,0,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img { width: 36px; height: 36px; }

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--yellow-glow), var(--yellow-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--yellow-glow);
  background: rgba(255,230,0,0.08);
  text-shadow: var(--glow-sm);
}

.nav-cart-btn {
  position: relative;
  background: linear-gradient(135deg, var(--yellow-glow), var(--yellow-mid));
  color: var(--purple-dark) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 25px !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--glow-sm);
  transition: var(--transition) !important;
}

.nav-cart-btn:hover {
  box-shadow: var(--glow-md) !important;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fff176, var(--yellow-glow)) !important;
  color: var(--purple-dark) !important;
  text-shadow: none !important;
}

.cart-badge {
  background: var(--purple-dark);
  color: var(--yellow-glow);
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow-glow);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow-glow), var(--yellow-mid));
  color: var(--purple-dark);
  box-shadow: var(--glow-sm);
}

.btn-primary:hover {
  box-shadow: var(--glow-md);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #fff59d, var(--yellow-glow));
}

.btn-outline {
  background: transparent;
  color: var(--yellow-glow);
  border: 2px solid var(--yellow-glow);
  box-shadow: var(--glow-sm);
}

.btn-outline:hover {
  background: rgba(255,230,0,0.1);
  box-shadow: var(--glow-md);
  transform: translateY(-3px);
}

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

/* ===== CARDS ===== */
.card {
  background: var(--purple-card);
  border: var(--border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(255,230,0,0.6);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,8,32,0.85) 0%, rgba(26,10,62,0.6) 60%, rgba(13,8,32,0.9) 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.45;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,230,0,0.12);
  border: 1px solid rgba(255,230,0,0.4);
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--yellow-glow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255,230,0,0.3); }
  50% { box-shadow: 0 0 25px rgba(255,230,0,0.6); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #fff, var(--yellow-glow), var(--yellow-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 4s ease-in-out infinite alternate;
}

@keyframes titleShimmer {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.2); }
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: scrollBounce 2s ease-in-out infinite;
  text-decoration: none;
  color: var(--yellow-glow);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

/* ===== STATS BAR ===== */
.stats-bar {
  background: rgba(255,230,0,0.05);
  border-top: 1px solid rgba(255,230,0,0.15);
  border-bottom: 1px solid rgba(255,230,0,0.15);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow-glow);
  text-shadow: var(--glow-sm);
  margin-bottom: 0.3rem;
}

.stat-item p {
  color: var(--text-sub);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--purple-card);
  border: var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(255,230,0,0.6);
  box-shadow: var(--glow-sm);
  transform: translateY(-6px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: rgba(255,230,0,0.1);
  border: 1px solid rgba(255,230,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(255,230,0,0.2);
  box-shadow: var(--glow-sm);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow-glow);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--purple-card);
  border: var(--border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  border-color: rgba(255,230,0,0.6);
  box-shadow: 0 8px 40px rgba(255,230,0,0.15);
  transform: translateY(-6px);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--yellow-glow), var(--yellow-mid));
  color: var(--purple-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-info { padding: 1.4rem; }

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  font-family: 'Cinzel', serif;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow-glow);
  text-shadow: var(--glow-sm);
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--purple-card);
  border: var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(255,230,0,0.5);
  box-shadow: var(--glow-sm);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,230,0,0.4);
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.reviewer-loc {
  font-size: 0.78rem;
  color: var(--text-sub);
}

.review-stars { color: var(--yellow-glow); font-size: 0.85rem; margin-bottom: 0.5rem; }

.review-text {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.6;
  font-style: italic;
}

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(5,3,15,0.95);
  border-top: 1px solid rgba(255,230,0,0.12);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-top: 0.8rem;
}

.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--yellow-glow);
  text-shadow: var(--glow-sm);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--yellow-glow);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col a {
  text-decoration: none;
  color: var(--text-sub);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--yellow-glow); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.footer-contact-item span:first-child { color: var(--yellow-glow); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-sub);
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-sub);
  text-decoration: none;
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--yellow-glow); }

.age-disclaimer {
  background: rgba(255,140,0,0.08);
  border: 1px solid rgba(255,140,0,0.25);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 0.82rem;
  color: #c4a880;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ===== COOKIES BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13,8,32,0.97);
  border-top: 1px solid rgba(255,230,0,0.25);
  backdrop-filter: blur(16px);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  flex-wrap: wrap;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a { color: var(--yellow-glow); text-decoration: none; }

.cookie-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5,3,15,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.age-gate-box {
  background: var(--purple-card);
  border: 2px solid rgba(255,230,0,0.35);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--glow-md);
  animation: ageGateIn 0.5s ease;
}

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

.age-gate-icon { font-size: 3.5rem; margin-bottom: 1.2rem; }

.age-gate-box h2 {
  font-size: 1.8rem;
  color: var(--yellow-glow);
  text-shadow: var(--glow-sm);
  margin-bottom: 0.8rem;
}

.age-gate-box p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.age-gate-actions { display: flex; gap: 1rem; justify-content: center; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,230,0,0.08) 0%, transparent 70%);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--yellow-glow);
  text-shadow: var(--glow-sm);
  margin-bottom: 0.8rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 3rem;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,230,0,0.3), transparent);
}

.divider-icon {
  font-size: 1.2rem;
  color: var(--yellow-glow);
  opacity: 0.7;
}

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  top: 80px;
  right: 1.5rem;
  z-index: 500;
  background: var(--purple-card);
  border: 1px solid rgba(255,230,0,0.4);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--glow-sm);
  animation: notifSlide 0.4s ease;
  min-width: 260px;
  transform: translateX(120%);
  transition: transform 0.4s ease;
}

.notification.show { transform: translateX(0); }

.notification-icon { font-size: 1.3rem; }

.notification p { font-size: 0.88rem; color: var(--text-main); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-sub);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--yellow-glow);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,230,0,0.2);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255,230,0,0.6);
  box-shadow: 0 0 0 3px rgba(255,230,0,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(176,160,204,0.5); }

/* ===== LOADING ===== */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,3,15,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.loader-ring {
  width: 70px;
  height: 70px;
  border: 4px solid rgba(255,230,0,0.15);
  border-top: 4px solid var(--yellow-glow);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  box-shadow: var(--glow-sm);
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
  font-size: 1rem;
  color: var(--yellow-glow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13,8,32,0.98);
    flex-direction: column;
    padding: 1rem;
    gap: 0.3rem;
    border-bottom: 1px solid rgba(255,230,0,0.15);
    display: none;
  }
  
  .nav-menu.open { display: flex; }
  
  .nav-menu a {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
  }
  
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  section { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.float-anim {
  animation: floatItem 4s ease-in-out infinite;
}

@keyframes floatItem {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.spin-slow { animation: spin 12s linear infinite; }

.glow-pulse {
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: var(--glow-sm); }
  50% { box-shadow: var(--glow-lg); }
}

/* ===== LIGHTNING DECORATION ===== */
.lightning-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  font-size: 8rem;
  color: var(--yellow-glow);
  animation: lightningFlash 6s ease-in-out infinite;
}

@keyframes lightningFlash {
  0%, 90%, 100% { opacity: 0.06; }
  92%, 96% { opacity: 0.18; }
  94% { opacity: 0.06; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-yellow { color: var(--yellow-glow); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
