/* =============================================
   JupiterBamboo — Streaming Equipment
   Forest & Amber Design — Deep Green + Gold
   ============================================= */

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

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

:root {
  --primary:      #16a34a;
  --primary-dark: #15803d;
  --primary-light: #4ade80;
  --accent:       #f59e0b;
  --accent-dark:  #d97706;
  --accent-light: #fcd34d;
  --green:        #22c55e;
  --red:          #ef4444;
  --text:         #f0fdf4;
  --text-muted:   #86efac;
  --text-dim:     #4ade80;
  --border:       rgba(255,255,255,0.09);
  --border-glow:  rgba(22,163,74,0.45);
  --bg:           #071210;
  --bg2:          #0d1f18;
  --surface:      rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.08);
  --glass:        rgba(13,31,24,0.75);
  --white:        #ffffff;
  --card-shadow:  0 4px 24px rgba(0,0,0,0.45);
  --card-shadow-hover: 0 12px 48px rgba(22,163,74,0.28);
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --transition:   all 0.28s cubic-bezier(.4,0,.2,1);
  --container:    1240px;
  --grad: linear-gradient(135deg, #16a34a 0%, #f59e0b 100%);
  --grad-dark: linear-gradient(135deg, #15803d 0%, #d97706 100%);
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(22,163,74,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245,158,11,0.08) 0%, transparent 60%);
  min-height: 100vh;
}

a { color: var(--accent-light); text-decoration: none; }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.topbar {
  background: rgba(7,7,20,0.95);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  padding: 7px 0;
  backdrop-filter: blur(12px);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  min-height: 24px;
}
.topbar-left { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex-shrink: 1; }
.topbar-right { display: flex; gap: 16px; flex-shrink: 0; white-space: nowrap; }
.topbar a { color: var(--text-muted); transition: var(--transition); }
.topbar a:hover { color: var(--accent-light); }

/* ===== HEADER ===== */
.header {
  background: rgba(7,7,20,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: 0.02em;
  box-shadow: 0 0 20px rgba(124,58,237,0.5);
}
.logo-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.2;
}
nav.main-nav { display: flex; align-items: center; gap: 4px; }
nav.main-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--white); background: var(--surface-hover); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.cart-btn:hover { background: rgba(22,163,74,0.28); color: var(--white); border-color: var(--primary); }
.cart-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 20px;
  min-width: 18px;
  text-align: center;
}

/* ===== MOBILE NAV ===== */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  background: rgba(13,31,24,0.98);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 16px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--white); padding-left: 8px; }

/* ===== HERO ===== */
.hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(22,163,74,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.35);
  color: var(--primary-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(22,163,74,0.4);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.55);
  color: #fff;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-secondary:hover { background: var(--surface-hover); border-color: rgba(255,255,255,0.2); color: var(--white); }
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(124,58,237,0.2);
}
.hero-image img { width: 100%; height: 340px; object-fit: cover; }

/* Hero layout */
@media (min-width: 768px) {
  .hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
}

/* ===== TRUST BADGES ===== */
.trust-bar {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-items { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(22,163,74,0.13);
  border: 1px solid rgba(22,163,74,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.trust-item strong { color: var(--text); display: block; font-size: 0.85rem; }

/* ===== SECTION HEADER ===== */
.section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.2;
}
.section-sub { color: var(--text-muted); margin-top: 10px; font-size: 0.95rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== CATEGORIES GRID ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius);
}
.category-card:hover { border-color: rgba(124,58,237,0.5); transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.category-card:hover::before { opacity: 0.07; }
.cat-emoji { font-size: 2.2rem; line-height: 1; position: relative; z-index: 1; }
.cat-name { font-weight: 800; font-size: 1rem; color: var(--white); position: relative; z-index: 1; }
.cat-label {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.cat-count { font-size: 0.78rem; color: var(--accent); font-weight: 600; position: relative; z-index: 1; }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: rgba(22,163,74,0.4); transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.product-img-wrap { position: relative; background: rgba(255,255,255,0.03); overflow: hidden; }
.product-img-wrap img { width: 100%; height: 200px; object-fit: contain; padding: 20px; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
}
.badge-bestseller { background: var(--grad); color: #fff; }
.badge-new { background: rgba(16,185,129,0.9); color: #fff; }
.badge-sale { background: rgba(244,63,94,0.9); color: #fff; }
.product-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: 0.72rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.product-name { font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 6px; line-height: 1.3; }
.product-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; flex: 1; margin-bottom: 14px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.product-price { font-size: 1.15rem; font-weight: 900; color: var(--white); }
.btn-add {
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-add:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(22,163,74,0.4); }

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: var(--grad);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 0 64px;
  position: relative;
  overflow: hidden;
}
.promo-banner::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.promo-text { position: relative; z-index: 1; }
.promo-text .icon { font-size: 1.5rem; margin-bottom: 8px; }
.promo-text h3 { font-size: 1.35rem; font-weight: 900; color: #fff; margin-bottom: 6px; letter-spacing: -0.02em; }
.promo-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.btn-promo {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
}
.btn-promo:hover { background: rgba(255,255,255,0.25); border-color: #fff; color: #fff; }

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: rgba(6,182,212,0.4); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(6,182,212,0.15); }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag { font-size: 0.72rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.blog-card-title { font-weight: 700; font-size: 0.95rem; color: var(--white); line-height: 1.35; margin-bottom: 10px; flex: 1; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: auto; }
.blog-card-cta { color: var(--accent-light); font-size: 0.82rem; font-weight: 600; margin-top: 10px; display: inline-flex; align-items: center; gap: 4px; }

/* ===== FOOTER ===== */
.footer {
  background: rgba(7,7,20,0.98);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.footer-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
  color: #fff;
  box-shadow: 0 0 16px rgba(22,163,74,0.4);
}
.footer-logo-name { font-weight: 800; font-size: 1rem; color: var(--white); }
.footer-desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 14px; }
.footer-address { font-size: 0.78rem; color: var(--text-dim); line-height: 1.8; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.82rem; color: var(--text-dim); transition: var(--transition); }
.footer-col a:hover { color: var(--accent-light); }

/* ── FOOTER TRUST STRIP ── */
.footer-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}
.footer-trust-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  opacity: 0.75;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left { font-size: 0.78rem; color: var(--text-dim); }
.footer-bottom-right { display: flex; gap: 20px; }
.footer-bottom-right a { font-size: 0.78rem; color: var(--text-dim); }
.footer-bottom-right a:hover { color: var(--accent-light); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
}
.footer-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social-link:hover { background: rgba(255,255,255,0.12); color: var(--accent-light); }
.footer-social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===== COOKIE BANNER ===== */
.cookie-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,31,24,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 560px;
  width: calc(100% - 40px);
  z-index: 999;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.4);
}
.cookie-bar.hidden { display: none; }
.cookie-bar p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.cookie-bar a { color: var(--accent-light); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-cookie-reject {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-reject:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.btn-cookie-accept {
  background: var(--grad);
  border: none;
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover { opacity: 0.88; }

/* ── COOKIE BANNER (HTML class aliases) ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(21, 45, 74, 0.97);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 560px;
  width: calc(100% - 32px);
  z-index: 9999;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  font-family: "Poppins", -apple-system, sans-serif;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.5; margin: 0; }
.cookie-banner a { color: #ff6b35; }
.cookie-banner .cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.cookie-reject:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.cookie-accept {
  background: #ff6b35;
  border: none;
  color: #fff;
  padding: 7px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.cookie-accept:hover { background: #e85d2a; }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-banner .cookie-actions { justify-content: center; width: 100%; }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1e3a5f;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 10000;
  display: none;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: "Poppins", -apple-system, sans-serif;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.toast.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* ===== CART NOTIFICATION ===== */
.cart-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 998;
  box-shadow: 0 8px 32px rgba(16,185,129,0.4);
  display: none;
  animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }

/* ===== SHOP PAGE ===== */
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: rgba(124,58,237,0.15);
  border-color: rgba(22,163,74,0.4);
  color: var(--primary-light);
}

/* ===== CONTACT / FORMS ===== */
.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 600px;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 7px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  background: rgba(124,58,237,0.06);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ===== LEGAL / BLOG CONTENT ===== */
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}
.page-content h1 { font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 8px; letter-spacing: -0.03em; }
.page-content .lead { color: var(--text-muted); font-size: 1rem; margin-bottom: 40px; line-height: 1.7; }
.page-content h2 { font-size: 1.2rem; font-weight: 800; color: var(--white); margin: 32px 0 12px; }
.page-content h3 { font-size: 1rem; font-weight: 700; color: var(--primary-light); margin: 24px 0 8px; }
.page-content p, .page-content li { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.page-content ul { padding-left: 1.2em; list-style: disc; }
.page-content a { color: var(--accent-light); text-decoration: underline; }
.page-content .meta { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 32px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { margin: 0 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 52px 0 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  .promo-banner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .hero-stats { gap: 20px; }
  .cookie-bar { flex-direction: column; text-align: center; }
  .cookie-actions { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .header-inner { flex-wrap: wrap; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── BURGER BUTTON ── */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.burger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.2s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1099;
  backdrop-filter: blur(4px);
}
.nav-mobile-overlay.open { display: block; }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(280px, 80vw);
  background: #0d0d1f;
  border-left: 1px solid rgba(22,163,74,0.28);
  z-index: 1100;
  padding: 20px 0;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.nav-mobile.open { display: flex; flex-direction: column; }
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: all 0.15s;
}
.nav-mobile a:hover { background: rgba(22,163,74,0.13); color: #a78bfa; padding-left: 30px; }
.nav-mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 12px 12px;
  line-height: 1;
  margin-bottom: 8px;
}
.nav-mobile-close:hover { color: #fff; }
.nav-mobile-cart { padding: 16px 24px 0; margin-top: auto; }
.nav-mobile-cart a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 6px;
  color: #a78bfa;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

@media (max-width: 768px) {
  .burger-btn { display: flex !important; }
}
