/* ══════════════════════════════════════════════════════════════
   EVOLV — Loja · Stylesheet
   Paleta e tokens idênticos ao sistema EVOLV (admin/stock/landing)
   ══════════════════════════════════════════════════════════════ */

:root {
  /* Backgrounds */
  --navy:         #0a0e17;
  --navy-deep:    #111827;
  --navy-deeper:  #0d1117;
  --navy-darker:  #080c14;
  --navy-light:   #1e2736;

  /* Text */
  --cream:        #f1f5f9;
  --cream-dim:    #a1afc4;

  /* Accent — indigo primary, blue/cyan secondary (padrão EVOLV) */
  --gold:         #818cf8;
  --gold-light:   #a78bfa;
  --gold-dark:    #6366f1;
  --gold-glow:    rgba(129,140,248,0.18);

  /* Highlight colours */
  --accent-gold:  #fbbf24;
  --accent-blue:  #60a5fa;
  --accent-cyan:  #22d3ee;

  /* Neutral */
  --muted:        #7a8ba3;
  --muted-light:  #a1afc4;

  /* Semantic */
  --success:      #34d399;
  --warning:      #fbbf24;
  --danger:       #f87171;

  --border:       rgba(148,163,184,0.08);
  --border-light: rgba(148,163,184,0.12);

  /* Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'Space Mono', 'SF Mono', monospace;

  /* Easing */
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms;
  --t-mid:  300ms;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.2);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.35);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(129,140,248,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(96,165,250,0.02) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }
img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--accent-blue)); border-radius: 10px; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease-expo), transform 0.65s var(--ease-expo); }
.reveal.visible { opacity: 1; transform: none; }
.rv1 { transition-delay: 0.1s; }
.rv2 { transition-delay: 0.2s; }
.rv3 { transition-delay: 0.3s; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.eyebrow::before { content: ''; display: block; width: 22px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--accent-blue)); flex-shrink: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px;
  font-family: var(--font-body); font-size: 0.86rem; font-weight: 600;
  border-radius: var(--radius-sm); cursor: pointer; white-space: nowrap;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: transform var(--t-mid) var(--ease-expo), box-shadow var(--t-mid) var(--ease-expo), border-color var(--t-mid), color var(--t-mid);
  border: 1.5px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); transform: translateX(-100%); transition: transform 0.4s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(129,140,248,0.35); }
.btn-primary:hover::after { transform: translateX(0); }
.btn-ghost { background: transparent; color: var(--cream-dim); border-color: var(--border-light); backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); background: rgba(129,140,248,0.06); }
.btn-sm  { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg  { padding: 15px 36px; font-size: 0.92rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── BADGES ── */
.badge { display: inline-flex; padding: 3px 10px; border-radius: 100px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.badge-gold  { background: rgba(129,140,248,0.12); color: var(--gold); border: 1px solid rgba(129,140,248,0.3); }
.badge-green { background: rgba(52,211,153,0.1); color: var(--success); border: 1px solid rgba(52,211,153,0.25); }
.badge-new   { background: rgba(129,140,248,0.2); color: var(--gold-light); border: 1px solid rgba(129,140,248,0.45); }

/* ── HEADER ── */
#header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(10,14,23,0.9); backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: all var(--t-mid);
}
#header.scrolled { background: rgba(10,14,23,0.98); border-bottom-color: var(--border-light); box-shadow: 0 8px 48px rgba(0,0,0,0.45); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; letter-spacing: 0.2em; color: var(--cream); }
.logo-sub {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); padding: 2px 8px; border: 1px solid rgba(129,140,248,0.3);
  border-radius: 4px; margin-left: 4px;
}
.header-right { display: flex; align-items: center; gap: 8px; }
.nav-link-header {
  padding: 7px 13px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted-light); border-radius: 6px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link-header:hover { color: var(--cream); background: rgba(129,140,248,0.06); }
.cart-btn {
  display: flex; align-items: center; gap: 7px; padding: 9px 18px;
  background: rgba(129,140,248,0.1); border: 1px solid rgba(129,140,248,0.25);
  border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase;
  transition: all var(--t-mid); cursor: pointer;
}
.cart-btn:hover { background: rgba(129,140,248,0.18); border-color: rgba(129,140,248,0.5); transform: translateY(-1px); }
.cart-count {
  width: 20px; height: 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; font-size: 0.62rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ── HERO ── */
.store-hero {
  background: var(--navy-deep); padding: 80px 0 70px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.store-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 40%, rgba(129,140,248,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(96,165,250,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.store-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.store-hero-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800;
  color: var(--cream); line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.store-hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--accent-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.store-hero-sub { font-size: 1rem; font-weight: 400; color: var(--muted-light); line-height: 1.8; max-width: 520px; margin-bottom: 1.75rem; }
.store-hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-pill {
  display: flex; align-items: center; gap: 7px; padding: 8px 16px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 100px; font-size: 0.78rem; font-weight: 600; color: var(--cream-dim);
  transition: all var(--t-fast); cursor: pointer;
}
.hero-pill:hover,
.hero-pill.active {
  background: rgba(129,140,248,0.1); border-color: rgba(129,140,248,0.35); color: var(--gold);
}
.store-hero-stats {
  display: flex; flex-direction: column; gap: 16px; padding: 28px;
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: var(--radius-xl); min-width: 220px; flex-shrink: 0;
}
.store-stat { text-align: center; }
.store-stat-num {
  font-family: var(--font-mono); font-size: 1.9rem; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.store-stat-label { font-size: 0.7rem; color: var(--muted); margin-top: 4px; letter-spacing: 0.03em; }
.store-stat-div { height: 1px; background: var(--border); }

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(255,255,255,0.018);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; margin-bottom: 56px;
}
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.8rem; color: var(--muted-light); }
.trust-icon { font-size: 1rem; }
.trust-item strong { color: var(--cream); font-weight: 600; }

/* ── FILTERS ── */
.filters-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 0 1.5rem; flex-wrap: wrap; }
.filter-tabs {
  display: flex; gap: 6px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 5px;
}
.filter-tab {
  padding: 9px 20px; border-radius: var(--radius-sm); font-size: 0.78rem; font-weight: 600;
  color: var(--muted-light); cursor: pointer; transition: all var(--t-fast);
  display: flex; align-items: center; gap: 7px; white-space: nowrap; letter-spacing: 0.03em;
}
.filter-tab:hover { color: var(--cream); }
.filter-tab.active { background: rgba(129,140,248,0.15); color: var(--gold); }
.filter-count {
  font-size: 0.65rem; font-weight: 700; color: var(--muted);
  background: rgba(255,255,255,0.06); padding: 2px 7px; border-radius: 100px;
}
.filter-tab.active .filter-count { background: rgba(129,140,248,0.2); color: var(--gold-light); }
.filter-sort { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--muted-light); }
.filter-sort select {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 14px;
  font-family: var(--font-body); font-size: 0.8rem; color: var(--cream);
  outline: none; cursor: pointer; appearance: none; -webkit-appearance: none;
}
.filter-sort select:focus { border-color: rgba(129,140,248,0.4); }

/* ── PRODUCTS ── */
.products-section { padding: 80px 0; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.product-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden; display: flex; flex-direction: column;
  transition: all var(--t-mid) var(--ease-expo); position: relative;
}
.product-card:hover { border-color: rgba(129,140,248,0.3); transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.5); }
.product-card.hidden { display: none; }

/* Thumbnails */
.product-thumb {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-thumb.ebook-blue  { background: linear-gradient(135deg, #111c2e 0%, #0a1220 100%); }
.product-thumb.ebook-gold  { background: linear-gradient(135deg, #111c2e 0%, #141e30 100%); }
.product-thumb.ebook-green { background: linear-gradient(135deg, #0d1e1a 0%, #080f14 100%); }
.product-thumb.calc-dark   { background: linear-gradient(135deg, #0d1117 0%, #080c14 100%); }
.product-thumb.calc-navy   { background: linear-gradient(135deg, #111827 0%, #0a0e17 100%); }
.product-thumb.site-premium { background: linear-gradient(135deg, #11173b 0%, #0b0e27 100%); }
.product-thumb.site-ecom   { background: linear-gradient(135deg, #0f1c2e 0%, #08111d 100%); }

.thumb-content { display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 1; }
.thumb-icon { font-size: 3rem; filter: drop-shadow(0 4px 20px rgba(129,140,248,0.3)); }
.thumb-label { font-size: 0.63rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); opacity: 0.75; }
.thumb-deco { position: absolute; inset: 0; overflow: hidden; opacity: 0.25; pointer-events: none; }
.thumb-deco::before { content: ''; position: absolute; width: 200px; height: 200px; border: 1px solid rgba(129,140,248,0.35); border-radius: 50%; top: -80px; right: -60px; }
.thumb-deco::after  { content: ''; position: absolute; width: 120px; height: 120px; border: 1px solid rgba(96,165,250,0.25); border-radius: 50%; bottom: -40px; left: -30px; }
.card-badge { position: absolute; top: 14px; left: 14px; }
.card-wishlist {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(10,14,23,0.8); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 0.85rem; transition: all var(--t-fast); color: var(--muted);
}
.card-wishlist:hover { border-color: rgba(248,113,113,0.5); color: var(--danger); background: rgba(248,113,113,0.1); }
.card-wishlist.liked { color: var(--danger); border-color: rgba(248,113,113,0.4); }

/* Product body */
.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.product-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--cream); line-height: 1.25; margin-bottom: 0.6rem; }
.product-desc { font-size: 0.84rem; color: var(--muted-light); line-height: 1.7; flex: 1; margin-bottom: 1rem; }
.product-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 1.2rem; }
.meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: var(--muted); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 1rem; }
.stars { color: var(--accent-gold); font-size: 0.75rem; letter-spacing: 1px; }
.rating-num { font-size: 0.78rem; font-weight: 600; color: var(--cream-dim); }
.rating-count { font-size: 0.72rem; color: var(--muted); }
.product-pricing { display: flex; align-items: baseline; gap: 10px; margin-bottom: 1.25rem; }
.price-old { font-size: 0.82rem; color: var(--muted); text-decoration: line-through; }
.price-current { font-family: var(--font-mono); font-size: 1.65rem; font-weight: 700; color: var(--cream); line-height: 1; }
.price-current .price-currency { font-size: 0.85rem; font-family: var(--font-body); font-weight: 600; vertical-align: super; margin-right: 2px; color: var(--cream-dim); }
.price-discount {
  font-size: 0.7rem; font-weight: 700; padding: 3px 8px;
  background: rgba(52,211,153,0.1); color: var(--success); border-radius: 5px;
  border: 1px solid rgba(52,211,153,0.2);
}
.product-cta { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.btn-add-cart {
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all var(--t-mid) var(--ease-expo); border: none; letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.btn-add-cart::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.1); transform: translateX(-100%); transition: transform 0.35s; }
.btn-add-cart:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(129,140,248,0.35); }
.btn-add-cart:hover::after { transform: translateX(0); }
.btn-preview {
  display: flex; align-items: center; justify-content: center; width: 44px;
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); color: var(--muted-light);
  cursor: pointer; transition: all var(--t-fast); font-size: 1rem;
}
.btn-preview:hover { border-color: rgba(129,140,248,0.35); color: var(--gold); background: rgba(129,140,248,0.06); }

/* ── FEATURED BUNDLE ── */
.featured-banner {
  background: linear-gradient(135deg, rgba(129,140,248,0.12) 0%, rgba(129,140,248,0.04) 60%, rgba(10,14,23,0.6) 100%);
  border: 1px solid rgba(129,140,248,0.25); border-radius: var(--radius-xl); padding: 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  margin: 0 0 4rem; position: relative; overflow: hidden;
}
.featured-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--accent-blue), transparent);
}
.featured-banner::after {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(129,140,248,0.07) 0%, transparent 70%);
  top: -150px; right: -100px; pointer-events: none;
}
.featured-tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px;
  background: rgba(129,140,248,0.12); border: 1px solid rgba(129,140,248,0.35);
  border-radius: 100px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem;
}
.featured-tag::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.featured-title { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--cream); line-height: 1.2; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.featured-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--accent-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.featured-sub { font-size: 0.92rem; color: var(--muted-light); line-height: 1.75; margin-bottom: 1.75rem; }
.featured-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 2rem; }
.featured-include-item { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--cream-dim); }
.featured-include-item::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(129,140,248,0.12); color: var(--gold);
  font-size: 0.62rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.featured-pricing { display: flex; align-items: center; gap: 14px; margin-bottom: 1.75rem; }
.featured-price-old { font-size: 0.9rem; color: var(--muted); text-decoration: line-through; }
.featured-price-now { font-family: var(--font-mono); font-size: 2.6rem; font-weight: 700; color: var(--cream); line-height: 1; }
.featured-price-now small { font-size: 1rem; font-family: var(--font-body); font-weight: 600; color: var(--cream-dim); vertical-align: super; }
.featured-discount {
  padding: 5px 12px; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.25);
  border-radius: 6px; font-size: 0.78rem; font-weight: 700; color: var(--success);
}
.featured-btns { display: flex; gap: 12px; }
.featured-visual { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.featured-mockup {
  background: rgba(13,17,23,0.85); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; backdrop-filter: blur(10px);
}
.fmock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.fmock-title { font-size: 0.78rem; font-weight: 600; color: var(--cream); opacity: 0.8; }
.fmock-badge { font-size: 0.65rem; font-weight: 700; color: var(--success); }
.fmock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.fmock-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; }
.fmock-label { font-size: 0.63rem; color: var(--muted); margin-bottom: 4px; }
.fmock-val { font-size: 1rem; font-weight: 700; color: var(--cream); font-family: var(--font-mono); }
.fmock-val.gold  { color: var(--accent-gold); }
.fmock-val.green { color: var(--success); }
.fmock-bar-wrap { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; }
.fmock-bar-label { font-size: 0.63rem; color: var(--muted); margin-bottom: 8px; }
.fmock-bars { display: flex; align-items: flex-end; gap: 5px; height: 48px; }
.fmock-bar { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(to top, var(--gold-dark), var(--gold)); opacity: 0.55; }
.fmock-bar:last-child { opacity: 1; background: linear-gradient(to top, var(--gold), var(--gold-light)); }
.featured-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-card { background: rgba(13,17,23,0.7); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px; text-align: center; }
.mini-card-icon { font-size: 1.5rem; margin-bottom: 5px; }
.mini-card-label { font-size: 0.7rem; color: var(--muted-light); }

/* ── SITE CARDS browser mockup ── */
.mini-browser { width: 85%; background: rgba(13,17,23,0.95); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-xl); }
.mini-browser-bar { background: rgba(10,14,23,0.8); padding: 7px 10px; display: flex; align-items: center; gap: 5px; }
.mini-dot { width: 6px; height: 6px; border-radius: 50%; }
.mini-dot.r { background: #f87171; }
.mini-dot.y { background: #fbbf24; }
.mini-dot.g { background: #34d399; }
.mini-content { padding: 14px 12px; display: flex; flex-direction: column; gap: 6px; }
.mini-line { height: 5px; border-radius: 3px; background: var(--border-light); }
.mini-line.gold { background: rgba(129,140,248,0.4); }
.mini-line.w100 { width: 100%; } .mini-line.w80 { width: 80%; }
.mini-line.w60  { width: 60%;  } .mini-line.w40 { width: 40%; }
.mini-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 4px; }
.mini-block { height: 30px; border-radius: 5px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); }
.mini-block.accent { background: rgba(129,140,248,0.1); border-color: rgba(129,140,248,0.25); }

/* ── GUARANTEE ── */
.guarantee-section { padding: 60px 0; background: var(--navy-deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.guarantee-inner { display: flex; align-items: center; gap: 60px; justify-content: center; flex-wrap: wrap; }
.guarantee-badge {
  width: 110px; height: 110px; border-radius: 50%;
  border: 2px solid rgba(129,140,248,0.35);
  display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0;
  background: rgba(129,140,248,0.05); position: relative;
}
.guarantee-badge::before { content: ''; position: absolute; inset: 4px; border-radius: 50%; border: 1px dashed rgba(129,140,248,0.2); }
.guarantee-days { font-family: var(--font-mono); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.guarantee-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); opacity: 0.8; text-align: center; }
.guarantee-text h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.guarantee-text p { font-size: 0.88rem; color: var(--muted-light); line-height: 1.75; max-width: 420px; }
.guarantee-perks { display: flex; flex-direction: column; gap: 10px; }
.guarantee-perk { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--cream-dim); }
.guarantee-perk-icon {
  width: 28px; height: 28px; border-radius: var(--radius-sm);
  background: rgba(129,140,248,0.1); border: 1px solid rgba(129,140,248,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0;
}

/* ── CTA FINAL ── */
.store-cta { background: var(--navy-deep); padding: 80px 0; text-align: center; border-top: 1px solid var(--border); }
.store-cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--cream); margin-bottom: 1rem; line-height: 1.15; letter-spacing: -0.01em; }
.store-cta-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--accent-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.store-cta-sub { font-size: 0.95rem; color: var(--muted-light); line-height: 1.8; max-width: 500px; margin: 0 auto 2rem; }

/* ── CART DRAWER ── */
.cart-overlay { position: fixed; inset: 0; z-index: 1000; display: none; }
.cart-overlay.open { display: flex; }
.cart-backdrop { flex: 1; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); }
.cart-drawer {
  width: 400px; max-width: 100vw; background: var(--navy-darker);
  border-left: 1px solid var(--border); display: flex; flex-direction: column;
  animation: drawerSlide 0.4s var(--ease-expo);
}
@keyframes drawerSlide { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--border); }
.cart-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--cream); }
.cart-close {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--muted-light); display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: all var(--t-fast);
}
.cart-close:hover { background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.3); color: var(--danger); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); text-align: center; }
.cart-empty-icon { font-size: 2.5rem; opacity: 0.4; }
.cart-empty-text { font-size: 0.88rem; line-height: 1.6; }
.cart-item {
  display: flex; gap: 14px; align-items: flex-start; padding: 14px;
  background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: var(--radius-md);
}
.cart-item-icon {
  font-size: 1.5rem; width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(129,140,248,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.88rem; font-weight: 600; color: var(--cream); margin-bottom: 3px; }
.cart-item-price { font-size: 0.85rem; font-weight: 700; color: var(--gold); font-family: var(--font-mono); }
.cart-item-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.8rem; padding: 4px; transition: color var(--t-fast); flex-shrink: 0; }
.cart-item-remove:hover { color: var(--danger); }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-guarantee-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.73rem; color: var(--muted); margin-bottom: 14px; padding: 8px;
  background: rgba(255,255,255,0.02); border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-label { font-size: 0.85rem; color: var(--muted-light); }
.cart-total-val { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 700; color: var(--cream); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 1100;
  background: rgba(13,17,23,0.97); border: 1px solid rgba(129,140,248,0.35);
  border-radius: var(--radius-md); padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.87rem; color: var(--cream);
  backdrop-filter: blur(12px); box-shadow: var(--shadow-xl);
  transform: translateY(20px); opacity: 0;
  transition: all 0.4s var(--ease-expo); pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
footer { background: var(--navy-darker); border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.02em; }
.footer-back {
  display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600;
  color: var(--muted-light); transition: color var(--t-fast); letter-spacing: 0.02em; text-transform: uppercase;
}
.footer-back:hover { color: var(--gold); }

/* ── FOCUS VISIBLE ── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-banner { grid-template-columns: 1fr; gap: 40px; }
  .featured-visual { display: none; }
  .store-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .store-hero-stats { flex-direction: row; gap: 24px; }
  .guarantee-inner { flex-direction: column; text-align: center; gap: 32px; }
  .guarantee-text p { margin: 0 auto; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
  .filter-tabs { flex-wrap: wrap; }
  .featured-includes { grid-template-columns: 1fr; }
  .featured-btns { flex-direction: column; }
  .featured-banner { padding: 32px 24px; }
  .store-hero-stats { flex-direction: column; }
  .header-right .nav-link-header { display: none; }
  .trust-bar-inner { gap: 20px; }
}
