/* ── 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; }

/* ── HERO VISUAL — Shopify dashboard mockup ─────────────── */
.hero-visual { position: relative; }

.shop-card {
  background: #fff;
  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);
}

/* Top bar */
.shop-topbar {
  background: #1a1a2e;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-topbar-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #96bf48;
}
.shop-topbar-name {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
}
.shop-topbar-status {
  font-size: .68rem;
  color: rgba(255,255,255,.55);
}

/* Stats row */
.shop-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--gray-line);
}
.shop-stat {
  padding: 16px 16px 14px;
  border-right: 1px solid var(--gray-line);
  text-align: center;
}
.shop-stat:last-child { border-right: none; }
.shop-stat-val {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.shop-stat-val.green  { color: #059669; }
.shop-stat-val.blue   { color: var(--blue); }
.shop-stat-val.orange { color: #d97706; }
.shop-stat-label {
  font-size: .65rem;
  color: var(--gray-mid);
}

/* Product grid */
.shop-products {
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.shop-product {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-line);
}
.shop-product-img {
  height: 56px;
}
.shop-product-img.blue-grad  { background: linear-gradient(135deg, #4175fc 0%, #2f5de8 100%); }
.shop-product-img.green-grad { background: linear-gradient(135deg, #96bf48 0%, #5a8a1e 100%); }
.shop-product-meta {
  padding: 6px 10px 8px;
  background: #fff;
}
.shop-product-name {
  width: 70%; height: 7px;
  background: #e5e7eb;
  border-radius: 4px;
  margin-bottom: 5px;
}
.shop-product-price {
  width: 45%; height: 7px;
  background: #d1fae5;
  border-radius: 4px;
}

/* Bottom badges row */
.shop-badges {
  padding: 10px 16px 14px;
  display: flex;
  gap: 8px;
}
.shop-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
}
.shop-badge-pill.green {
  background: #d1fae5;
  color: #059669;
}
.shop-badge-pill.blue {
  background: var(--blue-light);
  color: var(--blue);
}
.shop-badge-pill .lucide { width: 10px; height: 10px; }

/* 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; }
