/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 50%, #f8f9ff 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(65,117,252,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); color: var(--blue);
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
}
.hero-eyebrow .lucide { width: 13px; height: 13px; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.1; color: var(--dark);
  letter-spacing: -.02em; margin-bottom: 20px;
}
.hero-title .accent { color: var(--blue); }
.hero-sub { font-size: 1.08rem; color: var(--gray-mid); line-height: 1.75; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-safety { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--gray-mid); }
.hero-safety .lucide { width: 14px; height: 14px; color: var(--blue); }
.hero-stats { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid var(--gray-line); }
.hero-stat-val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--blue); }
.hero-stat-val span { color: var(--blue); }
.hero-stat-label { font-size: .78rem; color: var(--gray-mid); margin-top: 2px; }

/* Right visual — store mockup */
.hero-visual { position: relative; }
.store-card {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 20px 60px rgba(65,117,252,.14), 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden; border: 1px solid var(--gray-line);
}
.store-topbar {
  background: var(--dark); padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.store-topbar-dots { display: flex; gap: 5px; }
.store-topbar-dot { width: 10px; height: 10px; border-radius: 50%; }
.store-topbar-url {
  flex: 1; margin: 0 12px; background: rgba(255,255,255,.1);
  border-radius: 50px; padding: 4px 14px;
  font-size: .68rem; color: rgba(255,255,255,.5); text-align: center;
}
.store-topbar-icon { color: rgba(255,255,255,.4); display: flex; }
.store-topbar-icon .lucide { width: 14px; height: 14px; }

.store-nav {
  background: var(--white); padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--gray-line);
}
.store-nav-logo { font-family: var(--font-head); font-size: .85rem; font-weight: 800; color: var(--dark); }
.store-nav-logo span { color: var(--blue); }
.store-nav-links { display: flex; gap: 14px; }
.store-nav-link { font-size: .65rem; color: var(--gray-mid); }
.store-nav-right { display: flex; align-items: center; gap: 8px; }
.store-cart-btn {
  position: relative; width: 28px; height: 28px; border-radius: 8px;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
}
.store-cart-btn .lucide { width: 13px; height: 13px; color: #fff; }
.store-cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #f59e0b; color: #fff; font-size: .55rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--white);
}

.store-hero-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 16px 16px 12px; display: flex; align-items: center; justify-content: space-between;
}
.store-banner-text { color: #fff; }
.store-banner-title { font-family: var(--font-head); font-size: .85rem; font-weight: 800; margin-bottom: 2px; }
.store-banner-sub { font-size: .65rem; opacity: .75; }
.store-banner-btn {
  background: rgba(255,255,255,.2); color: #fff;
  font-size: .65rem; font-weight: 700; padding: 5px 12px;
  border-radius: 50px; white-space: nowrap;
}

.store-products { padding: 10px 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.store-product {
  background: var(--white); border-radius: 8px;
  border: 1px solid var(--gray-line); overflow: hidden;
}
.store-product-img {
  height: 44px; display: flex; align-items: center; justify-content: center;
}
.store-product-info { padding: 5px 7px 7px; }
.store-product-name { font-size: .6rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.store-product-price { font-family: var(--font-head); font-size: .72rem; font-weight: 800; color: var(--blue); }
.store-product-old { font-size: .6rem; color: var(--gray-mid); text-decoration: line-through; margin-left: 4px; }
.store-add-btn {
  width: 100%; margin-top: 4px; background: var(--blue); color: #fff;
  font-size: .58rem; font-weight: 700; padding: 4px 0;
  border-radius: 5px; text-align: center;
}

.store-stats { padding: 8px 12px 14px; display: flex; gap: 6px; }
.store-stat {
  flex: 1; border-radius: 8px; padding: 8px 10px; text-align: center;
}
.store-stat.blue  { background: var(--blue); }
.store-stat.green { background: #d1fae5; }
.store-stat.amber { background: #fef3c7; }
.store-stat-val { font-family: var(--font-head); font-size: .9rem; font-weight: 800; }
.store-stat.blue  .store-stat-val { color: #fff; }
.store-stat.green .store-stat-val { color: #059669; }
.store-stat.amber .store-stat-val { color: #d97706; }
.store-stat-label { font-size: .6rem; margin-top: 1px; }
.store-stat.blue  .store-stat-label { color: rgba(255,255,255,.65); }
.store-stat.green .store-stat-label { color: #059669; opacity: .7; }
.store-stat.amber .store-stat-label { color: #d97706; opacity: .7; }

/* Floating badges */
.fv-badge {
  position: absolute; background: var(--white);
  border-radius: 10px; padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; border: 1px solid var(--gray-line);
}
.fv-badge-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fv-badge-val { font-family: var(--font-head); font-size: .88rem; font-weight: 800; color: var(--dark); }
.fv-badge-label { font-size: .68rem; color: var(--gray-mid); }
.fv-badge-1 { top: -18px; right: 16px; }
.fv-badge-2 { bottom: -16px; left: 12px; }

