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

:root {
  --bg: #080808;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --border: #2a2a2a;
  --gold: #f5d78e;
  --gold2: #e8c56a;
  --orange: #ff9a3c;
  --text: #e8e8e8;
  --muted: #888;
  --white: #ffffff;
  --radius: 16px;
  --glow: 0 0 40px rgba(245,215,142,0.15);
  --glow-strong: 0 0 60px rgba(245,215,142,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

a { color: inherit; text-decoration: none; }

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

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; gap: 16px; align-items: center; }
.nav-cart {
  position: relative; padding: 8px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 50%; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.nav-cart:hover { border-color: var(--gold); box-shadow: var(--glow); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--orange); color: white;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-nav {
  padding: 10px 24px; border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000; font-weight: 700; font-size: 0.85rem;
  border: none; cursor: pointer; transition: all 0.2s;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,215,142,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.25s;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,215,142,0.35);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 18px 48px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 40px 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(245,215,142,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255,154,60,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  border: 1px solid rgba(245,215,142,0.3);
  background: rgba(245,215,142,0.05);
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  margin-bottom: 24px; letter-spacing: 0.5px; text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 24px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--muted);
  margin-bottom: 40px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.hero-stat-label { font-size: 0.8rem; color: var(--muted); }
.hero-visual { position: relative; }
.hero-lamp-container {
  position: relative; padding: 40px;
  background: radial-gradient(ellipse at center, rgba(245,215,142,0.08) 0%, transparent 70%);
}
.hero-lamp-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(245,215,142,0.15) 0%, transparent 60%);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero-lamp-img {
  position: relative; z-index: 1;
  border-radius: 24px;
  box-shadow: 0 0 80px rgba(245,215,142,0.2), 0 40px 80px rgba(0,0,0,0.5);
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  background: linear-gradient(145deg, #1a1a1a, #111);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.lamp-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-radius: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  box-shadow: 0 0 80px rgba(245,215,142,0.15), inset 0 0 60px rgba(245,215,142,0.05);
  position: relative; overflow: hidden;
}
.lamp-placeholder::before {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 40%;
  background: radial-gradient(ellipse at 50% 100%, rgba(245,215,142,0.3) 0%, transparent 70%);
}
.lamp-icon { font-size: 4rem; filter: drop-shadow(0 0 20px rgba(245,215,142,0.8)); }
.lamp-glow-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: rgba(245,215,142,0.7);
}

/* ── SECTIONS COMMUNES ───────────────────────────────────────── */
.section { padding: 100px 40px; }
.section-sm { padding: 60px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; padding: 4px 14px; border-radius: 100px;
  background: rgba(245,215,142,0.1); border: 1px solid rgba(245,215,142,0.2);
  font-size: 0.75rem; font-weight: 600; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--muted); max-width: 540px; margin: 0 auto; }

/* ── CATEGORIES ─────────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(245,215,142,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.category-card:hover { border-color: rgba(245,215,142,0.4); transform: translateY(-4px); box-shadow: var(--glow); }
.category-card:hover::before { opacity: 1; }
.category-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.category-name { font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.category-count { font-size: 0.8rem; color: var(--muted); }

/* ── PRODUCTS ────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s; cursor: pointer;
  text-decoration: none; color: inherit;
}
.product-card:hover { border-color: rgba(245,215,142,0.3); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.product-img {
  aspect-ratio: 1; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 700;
  background: var(--orange); color: #fff;
}
.product-info { padding: 20px; }
.product-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--gold); font-size: 0.85rem; }
.rating-count { font-size: 0.8rem; color: var(--muted); }
.product-price { display: flex; align-items: center; gap: 10px; }
.price-current { font-size: 1.2rem; font-weight: 800; color: var(--gold); }
.price-old { font-size: 0.9rem; color: var(--muted); text-decoration: line-through; }
.btn-add-cart {
  width: 100%; margin-top: 14px; padding: 12px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text);
  font-weight: 600; font-size: 0.85rem;
  cursor: pointer; transition: all 0.2s;
}
.btn-add-cart:hover { background: linear-gradient(135deg, var(--gold), var(--orange)); color: #000; border-color: transparent; }

/* ── BEFORE/AFTER ────────────────────────────────────────────── */
.ba-section { background: var(--bg2); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ba-visual {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
}
.ba-slider { display: grid; grid-template-columns: 1fr 1fr; height: 400px; }
.ba-before, .ba-after {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 40px;
}
.ba-before { background: var(--bg3); border-right: 2px solid var(--gold); }
.ba-after { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.ba-label {
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
}
.ba-before .ba-label { background: var(--border); color: var(--muted); }
.ba-after .ba-label { background: rgba(245,215,142,0.2); color: var(--gold); }
.ba-icon { font-size: 5rem; }
.ba-content .section-tag { display: inline-block; }
.ba-steps { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.ba-step { display: flex; gap: 16px; align-items: flex-start; }
.ba-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000; font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ba-step-text strong { display: block; margin-bottom: 2px; }
.ba-step-text span { font-size: 0.85rem; color: var(--muted); }

/* ── AI SECTION ──────────────────────────────────────────────── */
.ai-section {
  background: linear-gradient(135deg, #0d0d1a 0%, #0a0a0a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ai-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 24px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.ai-card::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,215,142,0.06) 0%, transparent 70%);
}
.ai-features { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.ai-feature {
  display: flex; gap: 12px; align-items: center;
  padding: 14px 20px; border-radius: 12px;
  background: var(--bg3); border: 1px solid var(--border);
}
.ai-feature-icon { font-size: 1.3rem; }
.ai-feature-text { font-size: 0.9rem; font-weight: 500; }
.ai-preview {
  background: var(--bg3); border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
}
.ai-preview-top {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.ai-dot { width: 10px; height: 10px; border-radius: 50%; }
.ai-preview-content {
  padding: 32px 24px; display: flex; align-items: center;
  justify-content: center; min-height: 280px;
  flex-direction: column; gap: 16px;
}
.ai-upload-zone {
  border: 2px dashed rgba(245,215,142,0.3); border-radius: 16px;
  padding: 40px; text-align: center; cursor: pointer;
  width: 100%; transition: all 0.2s;
}
.ai-upload-zone:hover { border-color: var(--gold); background: rgba(245,215,142,0.03); }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(245,215,142,0.2); box-shadow: var(--glow); }
.t-stars { color: var(--gold); margin-bottom: 16px; }
.t-text { font-size: 0.95rem; color: var(--muted); margin-bottom: 24px; line-height: 1.7; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: #000;
}
.t-name { font-weight: 600; font-size: 0.9rem; }
.t-date { font-size: 0.78rem; color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.faq-q {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; }
.faq-a {
  display: none; padding: 0 24px 20px;
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 40px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 60px; align-items: start;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin: 16px 0 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all 0.2s; cursor: pointer;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 20px; font-size: 0.9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--muted);
}
.footer-trust { display: flex; gap: 16px; align-items: center; }
.trust-badge {
  padding: 4px 12px; border-radius: 100px;
  border: 1px solid var(--border); font-size: 0.75rem;
}

/* ── CATALOGUE ───────────────────────────────────────────────── */
.page-header {
  padding: 120px 40px 60px;
  background: linear-gradient(to bottom, rgba(245,215,142,0.03) 0%, transparent 100%);
  border-bottom: 1px solid var(--border); text-align: center;
}
.catalogue-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 60px 40px; max-width: 1200px; margin: 0 auto; }
.filters-sidebar { }
.filter-section { margin-bottom: 32px; }
.filter-title { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 8px 0; cursor: pointer; }
.filter-option input { accent-color: var(--gold); }
.filter-option label { font-size: 0.9rem; cursor: pointer; }
.filter-range { width: 100%; accent-color: var(--gold); }
.sort-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.sort-select {
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--text); padding: 8px 16px; border-radius: 8px;
  font-size: 0.85rem; outline: none;
}

/* ── PRODUCT PAGE ────────────────────────────────────────────── */
.product-detail { padding: 100px 40px 80px; max-width: 1200px; margin: 0 auto; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.product-gallery { }
.gallery-main {
  aspect-ratio: 1; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative;
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.gallery-thumb {
  aspect-ratio: 1; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer; transition: all 0.2s;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); }
.product-info-side { }
.product-detail-name { font-size: 2rem; margin-bottom: 16px; }
.product-detail-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.product-detail-price { font-size: 2.4rem; font-weight: 800; color: var(--gold); margin-bottom: 32px; }
.option-group { margin-bottom: 28px; }
.option-label { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; color: var(--muted); }
.option-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.option-chip {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--bg2);
  font-size: 0.85rem; cursor: pointer; transition: all 0.2s;
}
.option-chip:hover, .option-chip.selected {
  border-color: var(--gold); color: var(--gold);
  background: rgba(245,215,142,0.05);
}
.color-chips { display: flex; gap: 10px; }
.color-chip {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer; transition: all 0.2s;
}
.color-chip:hover, .color-chip.selected { border-color: white; transform: scale(1.1); }
.qty-selector { display: flex; align-items: center; gap: 16px; }
.qty-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: 1.2rem; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-input {
  width: 60px; text-align: center;
  background: transparent; border: none; color: var(--text);
  font-size: 1.2rem; font-weight: 700;
}
.product-ctas { display: flex; gap: 12px; margin-top: 32px; }
.product-ctas .btn { flex: 1; }
.product-features { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.product-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--muted);
}

/* ── AI UPLOAD PAGE ──────────────────────────────────────────── */
.ai-page { padding: 100px 40px 80px; max-width: 1000px; margin: 0 auto; }
.upload-zone {
  border: 2px dashed rgba(245,215,142,0.3); border-radius: 24px;
  padding: 60px 40px; text-align: center; cursor: pointer;
  transition: all 0.3s; background: var(--bg2);
}
.upload-zone.dragover { border-color: var(--gold); background: rgba(245,215,142,0.03); }
.upload-zone:hover { border-color: rgba(245,215,142,0.5); }
.upload-icon { font-size: 3rem; margin-bottom: 16px; }
.upload-text { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.upload-hint { font-size: 0.85rem; color: var(--muted); }
.ai-steps-bar {
  display: flex; align-items: flex-start; gap: 0; margin: 32px 0;
  overflow: hidden;
}
.ai-step-item { flex: 1; text-align: center; position: relative; min-width: 0; }
.ai-step-item::after {
  content: ''; position: absolute; top: 17px; left: 50%; right: -50%;
  height: 2px; background: var(--border);
}
.ai-step-item:last-child::after { display: none; }
.ai-step-item.active::after { background: var(--gold); }
.ai-step-circle {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px; font-size: 0.82rem; font-weight: 700;
  position: relative; z-index: 1; transition: all 0.3s;
  flex-shrink: 0;
}
.ai-step-item.active .ai-step-circle, .ai-step-item.done .ai-step-circle {
  border-color: var(--gold); background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #000;
}
.ai-step-label {
  font-size: 0.72rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: block; padding: 0 4px;
}
@media (max-width: 480px) {
  .ai-step-label { display: none; }
  .ai-steps-bar  { margin: 20px 0; }
}
.ai-processing {
  display: none; flex-direction: column; align-items: center; gap: 20px;
  padding: 60px; background: var(--bg2); border-radius: 24px;
  border: 1px solid var(--border);
}
.ai-spinner {
  width: 60px; height: 60px; border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.ai-result {
  display: none; gap: 32px;
  grid-template-columns: 1fr 1fr;
}
.ai-result-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}

/* ── CART & CHECKOUT ─────────────────────────────────────────── */
.cart-page { padding: 100px 40px 80px; max-width: 1000px; margin: 0 auto; }
.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 16px;
  min-width: 0;
}
.cart-item-img {
  width: 72px; height: 72px; border-radius: 10px;
  background: var(--bg3); display: flex; align-items: center;
  justify-content: center; font-size: 2rem; flex-shrink: 0;
  overflow: hidden;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; margin-bottom: 4px; }
.cart-item-opts { font-size: 0.82rem; color: var(--muted); }
.cart-item-price { font-weight: 800; color: var(--gold); font-size: 1.1rem; }
.cart-item-remove { color: var(--muted); cursor: pointer; transition: color 0.2s; background: none; border: none; }
.cart-item-remove:hover { color: #ff4444; }
.order-summary {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; height: fit-content;
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.9rem; }
.summary-row.total { font-size: 1.2rem; font-weight: 800; color: var(--gold); border-top: 1px solid var(--border); padding-top: 16px; margin-top: 8px; }
.coupon-form { display: flex; gap: 10px; margin: 20px 0; }
.coupon-input {
  flex: 1; background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); padding: 10px 16px; border-radius: 10px;
  font-size: 0.85rem; outline: none;
}

/* ── DASHBOARD / AUTH ────────────────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 80px 20px;
}
.auth-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 24px; padding: 48px; width: 100%; max-width: 440px;
}
.auth-title { font-size: 1.8rem; margin-bottom: 8px; }
.auth-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; }
.form-input {
  width: 100%; background: var(--bg3);
  border: 1.5px solid var(--border); color: var(--text);
  padding: 13px 16px; border-radius: 12px; font-size: 0.95rem;
  outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--muted); }

/* ── ADMIN ───────────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--bg2); border-right: 1px solid var(--border);
  padding: 32px 24px; position: fixed; left: 0; top: 0;
  bottom: 0; width: 260px; overflow-y: auto;
}
.admin-logo { margin-bottom: 40px; }
.admin-nav { display: flex; flex-direction: column; gap: 4px; }
.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.admin-nav-item:hover, .admin-nav-item.active { background: var(--bg3); color: var(--text); }
.admin-nav-item.active { border-left: 3px solid var(--gold); padding-left: 13px; }
.admin-main { margin-left: 260px; padding: 40px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.admin-title { font-size: 1.8rem; }
.stats-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; }
.stat-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
}
.stat-card-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.stat-card-value { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.stat-card-change { font-size: 0.8rem; color: #4ade80; margin-top: 4px; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  padding: 12px 16px; text-align: left;
  font-size: 0.78rem; color: var(--muted); text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.data-table td { padding: 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.data-table tr:hover td { background: var(--bg3); }
.status-badge {
  padding: 4px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 700;
}
.status-pending { background: rgba(255,154,60,0.15); color: var(--orange); }
.status-paid { background: rgba(74,222,128,0.15); color: #4ade80; }
.status-shipped { background: rgba(96,165,250,0.15); color: #60a5fa; }

/* ── ALERTS ──────────────────────────────────────────────────── */
.alert { padding: 14px 20px; border-radius: 12px; margin-bottom: 20px; font-size: 0.9rem; }
.alert-success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); color: #4ade80; }
.alert-error { background: rgba(255,68,68,0.1); border: 1px solid rgba(255,68,68,0.3); color: #ff6b6b; }
.alert-info { background: rgba(245,215,142,0.1); border: 1px solid rgba(245,215,142,0.3); color: var(--gold); }

/* ── UTILS ───────────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--border); font-size: 0.8rem;
}

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .ba-grid { grid-template-columns: 1fr; }
  .ai-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-cards { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 16px; justify-content: space-between; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; order: 1; }
  .navbar .nav-logo { order: 2; position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-actions { order: 3; gap: 8px; }
  .nav-cart { width: 34px; height: 34px; font-size: 0.85rem; }
  .nav-cart .cart-badge { font-size: 0.55rem; width: 15px; height: 15px; top: -3px; right: -3px; }
  .hero { padding: 100px 20px 60px; }
  .section { padding: 60px 20px; }
  .categories-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .cart-page { padding: 80px 16px 40px; }
  .cart-grid { grid-template-columns: 1fr; gap: 20px; }
  .cart-item { padding: 14px; gap: 12px; }
  .cart-item-img { width: 60px; height: 60px; font-size: 1.5rem; }
  .cart-item-info { min-width: 0; }
  .cart-item-name { font-size: 0.88rem; word-break: break-word; }
  .order-summary { padding: 20px; }
  .catalogue-layout { grid-template-columns: 1fr; }
  .filters-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .stats-cards { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
  .ai-result { grid-template-columns: 1fr; }
}

/* ── MOBILE MENU ─────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg); padding: 80px 24px 40px;
  display: none; flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px; border-radius: 12px;
  font-size: 1.1rem; font-weight: 600;
  border-bottom: 1px solid var(--border);
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
.fade-in { animation: fadeIn 0.6s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.glow-text {
  text-shadow: 0 0 40px rgba(245,215,142,0.4);
}

.skeleton {
  background: linear-gradient(90deg, var(--bg2) 0%, var(--bg3) 50%, var(--bg2) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
}
@keyframes skeleton-shimmer { to { background-position: -200% 0; } }
