/* ── TOKENS ── */
:root {
  --bg: #050505;
  --bg2: #0a0a0a;
  --bg3: #0f0f0f;
  --surface: #111111;
  --surface2: #181818;
  --accent: #39FF14;
  --accent2: #7fff5f;
  --accent-glow: rgba(57,255,20,0.18);
  --accent-dim: rgba(57,255,20,0.08);
  --text: #f0f0f0;
  --text2: #888888;
  --text3: #444444;
  --border: rgba(57,255,20,0.12);
  --border2: rgba(57,255,20,0.25);
  --radius: 10px;
  --font-body: 'Space Grotesk', sans-serif;
  --font-display: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 2rem;
  padding: 1rem 2.5rem;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-body);
  font-weight: 700; font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex; gap: 2rem; list-style: none; margin-left: auto;
}
.nav-links a {
  color: var(--text2); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
  box-shadow: 0 0 8px var(--accent);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.cart-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text); padding: 0.5rem 1rem;
  border-radius: 999px; cursor: pointer; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.cart-btn:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  color: var(--accent);
}
.cart-count {
  background: var(--accent); color: #000;
  border-radius: 999px; padding: 0 6px; font-size: 0.75rem;
  min-width: 18px; text-align: center; font-weight: 700;
}

.menu-btn {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.4rem; cursor: pointer;
}

.mobile-menu {
  display: none; flex-direction: column; gap: 1rem;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: var(--bg2); padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: var(--text2); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 2.5rem 4rem;
  position: relative; overflow: hidden;
  gap: 4rem;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.25;
}
.orb1 { width: 500px; height: 500px; background: #39FF14; top: -120px; right: -60px; }
.orb2 { width: 300px; height: 300px; background: #1a8c00; bottom: 0; left: 20%; }
.orb3 { width: 200px; height: 200px; background: #39FF14; top: 40%; left: -50px; opacity: 0.12; }

.hero-content { flex: 1; max-width: 600px; position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1; margin-bottom: 1.5rem;
  color: var(--text);
}
.hero-title em { color: var(--accent); font-style: italic; text-shadow: 0 0 30px rgba(57,255,20,0.4); }

.hero-sub {
  font-size: 1.05rem; color: var(--text2);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.7;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--accent); color: #000;
  padding: 0.8rem 1.8rem; border-radius: 6px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(57,255,20,0.3);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(57,255,20,0.5);
}

.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--text2);
  padding: 0.8rem 1.8rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15); font-size: 0.9rem;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.35); }

.hero-visual {
  flex: 0 0 auto; position: relative; z-index: 1;
}

.art-frame {
  width: 320px; height: 400px;
  border: 1px solid var(--border2);
  border-radius: 14px; overflow: hidden;
  background: #0a0a0a;
  position: relative;
  box-shadow: 0 0 60px rgba(57,255,20,0.12), 0 40px 80px rgba(0,0,0,0.7);
}

.art-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; position: relative;
}

.art-lines {
  width: 200px; height: 200px;
  background:
    radial-gradient(circle at 50% 50%, rgba(57,255,20,0.25) 0%, transparent 70%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(57,255,20,0.06) 10px, rgba(57,255,20,0.06) 11px);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 40px rgba(57,255,20,0.3); }
}

.art-label {
  font-size: 0.75rem; color: var(--text3); letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2.5rem;
  display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .s-num {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(57,255,20,0.4);
  display: block; line-height: 1.1;
}
.stat-item .s-label {
  font-size: 0.78rem; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2); padding: 0.9rem 0;
}
.marquee-track {
  display: flex; gap: 2rem; width: max-content;
  animation: marquee 20s linear infinite;
  font-size: 0.8rem; color: var(--text3); font-weight: 500;
  letter-spacing: 0.05em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── PRODUCTS ── */
.products {
  padding: 6rem 2.5rem;
  max-width: 1200px; margin: 0 auto;
}

.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.filter-tabs { display: flex; gap: 0.5rem; }
.tab {
  padding: 0.5rem 1.2rem; border-radius: 6px;
  border: 1px solid var(--border2); background: transparent;
  color: var(--text2); font-family: var(--font-body);
  font-size: 0.85rem; cursor: pointer;
  transition: all 0.2s;
}
.tab.active, .tab:hover {
  background: var(--accent); border-color: var(--accent);
  color: #000; font-weight: 700;
  box-shadow: 0 0 16px rgba(57,255,20,0.35);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(57,255,20,0.2), 0 0 30px rgba(57,255,20,0.08);
  border-color: var(--border2);
}

.product-thumb {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-thumb-bg {
  position: absolute; inset: 0;
  transition: transform 0.4s;
}
.product-card:hover .product-thumb-bg { transform: scale(1.05); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #000;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 4px; letter-spacing: 0.05em; text-transform: uppercase;
}

.product-thumb-icon {
  position: relative; z-index: 1;
  font-size: 3rem; opacity: 0.9;
}

.product-info { padding: 1.2rem; }
.product-name {
  font-weight: 600; font-size: 1rem; margin-bottom: 0.3rem;
}
.product-desc {
  font-size: 0.82rem; color: var(--text2); margin-bottom: 1rem;
  line-height: 1.5;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-size: 1.1rem; font-weight: 700; color: var(--accent);
  text-shadow: 0 0 10px rgba(57,255,20,0.3);
}
.add-to-cart {
  background: var(--accent); color: #000;
  border: none; padding: 0.5rem 1rem;
  border-radius: 6px; font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700; cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 12px rgba(57,255,20,0.2);
}
.add-to-cart:hover {
  opacity: 0.85;
  box-shadow: 0 0 20px rgba(57,255,20,0.4);
}

/* ── ABOUT ── */
.about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2.5rem;
  display: flex; gap: 4rem; align-items: center;
  max-width: 100%;
}
.about-text { flex: 1; max-width: 560px; }
.section-label {
  font-size: 0.75rem; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.2rem; line-height: 1.2;
}
.about-text p {
  color: var(--text2); margin-bottom: 1rem; max-width: 480px;
}
.about-text .btn-primary { margin-top: 1rem; }

.about-stats {
  display: flex; flex-direction: column; gap: 2rem; flex: 0 0 auto;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700; color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 20px rgba(57,255,20,0.35);
}
.stat-label { font-size: 0.8rem; color: var(--text3); }

/* ── FOOTER ── */
.footer {
  background: var(--bg); padding: 4rem 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex; gap: 4rem; justify-content: space-between;
  margin-bottom: 3rem; flex-wrap: wrap;
}
.footer-brand p { color: var(--text3); margin-top: 0.8rem; max-width: 260px; font-size: 0.9rem; }
.footer-links { display: flex; gap: 4rem; }
.footer-links div { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4 { font-size: 0.8rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.footer-links a { color: var(--text2); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: var(--text3);
}

/* ── CART SIDEBAR ── */
.cart-overlay {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
}
.cart-overlay.open { display: block; }

.cart-sidebar {
  position: fixed; top: 0; right: -420px; bottom: 0; z-index: 200;
  width: 380px; background: var(--bg2);
  border-left: 1px solid var(--border2);
  display: flex; flex-direction: column;
  transition: right 0.3s ease;
  padding: 1.5rem;
}
.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.1rem; font-weight: 600; }
.cart-header button {
  background: none; border: none; color: var(--text2);
  font-size: 1.1rem; cursor: pointer;
}

.cart-items { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; }
.empty-cart { color: var(--text3); font-size: 0.9rem; text-align: center; margin-top: 2rem; }

.cart-item {
  display: flex; gap: 1rem; align-items: center;
  background: var(--surface); border-radius: var(--radius);
  padding: 0.8rem; border: 1px solid var(--border);
}
.cart-item-icon { font-size: 1.8rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 500; }
.cart-item-price { font-size: 0.85rem; color: var(--accent); }
.cart-item-remove {
  background: none; border: none; color: var(--text3);
  cursor: pointer; font-size: 1rem; transition: color 0.2s;
}
.cart-item-remove:hover { color: #ff4444; }

.cart-footer { padding-top: 1rem; border-top: 1px solid var(--border); }
.cart-total { font-size: 1.1rem; font-weight: 600; margin-bottom: 1rem; color: var(--accent); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--accent); color: #000;
  padding: 0.8rem 1.5rem; border-radius: 6px;
  font-size: 0.9rem; font-weight: 700;
  transition: transform 0.3s; z-index: 300;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(57,255,20,0.5);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── CONTACT PAGE ── */
.contact-page {
  min-height: 100vh; display: flex; gap: 4rem;
  padding: 10rem 2.5rem 4rem; align-items: flex-start;
  max-width: 1100px; margin: 0 auto;
}
.contact-left { flex: 1; }
.contact-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem; line-height: 1.2;
}
.contact-left h1 em { color: var(--accent); font-style: italic; }
.contact-left > p { color: var(--text2); max-width: 400px; margin-bottom: 2rem; }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.8rem;
  color: var(--text2); font-size: 0.9rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.contact-item:hover { border-color: var(--border2); color: var(--text); }
.contact-icon { font-size: 1.1rem; color: var(--accent); }

.contact-right { flex: 1; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text3); text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); padding: 0.8rem 1rem;
  border-radius: 8px; font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(57,255,20,0.1);
}
.form-group select option { background: var(--bg2); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text3); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .cart-btn { display: none; }
  .menu-btn { display: block; }

  .hero { flex-direction: column; padding-top: 6rem; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { display: none; }

  .about { flex-direction: column; }
  .about-stats { flex-direction: row; gap: 2rem; }

  .contact-page { flex-direction: column; padding-top: 7rem; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .stats-bar { gap: 2rem; }
}

@media (max-width: 480px) {
  .nav { padding: 1rem 1.2rem; }
  .hero { padding: 6rem 1.2rem 3rem; }
  .products, .about { padding: 4rem 1.2rem; }
  .footer { padding: 3rem 1.2rem 1.5rem; }
  .contact-page { padding: 6rem 1.2rem 3rem; }
  .cart-sidebar { width: 100%; }
  .section-header { flex-direction: column; align-items: flex-start; }
}