/* Honeybee Delivery — New Design System (2026) */
:root {
  --bg: #0a0d14;
  --bg-2: #11151f;
  --bg-3: #1a1f2e;
  --bg-4: #232a3d;
  --line: #2a3144;
  --line-bright: #3b4661;
  --text: #e6e9f2;
  --text-dim: #a8b0c4;
  --text-mute: #6b7287;
  --honey: #f5b400;
  --honey-bright: #ffd34d;
  --honey-dim: #b88600;
  --walmart: #0071dc;
  --walmart-yellow: #ffc220;
  --green: #22c55e;
  --red: #ef4444;
  --amber: #f59e0b;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --shadow-honey: 0 12px 36px rgba(245,180,0,.18);
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--honey); text-decoration: none; transition: color .15s; }
a:hover { color: var(--honey-bright); }
h1,h2,h3,h4,h5 { color: #fff; letter-spacing: -.02em; line-height: 1.15; }
img { max-width: 100%; }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,13,20,.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  position: relative;
  max-width: 1220px; margin: 0 auto; padding: 14px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 1.05rem; }
.brand b { color: var(--honey); }
.brand-logo { height: 38px; width: auto; max-width: 180px; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--text-dim); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: #fff; }

.nav-burger {
  display: none;
  background: transparent; border: 0; color: #fff;
  font-size: 24px; line-height: 1; cursor: pointer; padding: 6px 10px;
  margin-left: 8px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 16px; border-radius: 8px; font-weight: 700; font-size: 14px;
  border: 0; cursor: pointer; transition: all .15s; text-decoration: none;
  white-space: nowrap;
}
.btn-honey { background: var(--honey); color: #1a1300; }
.btn-honey:hover { background: var(--honey-bright); color: #1a1300; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-bright); }
.btn-ghost:hover { border-color: var(--honey); color: var(--honey); }
.btn-honey-big, .btn-ghost-big {
  padding: 14px 24px; font-size: 15px; border-radius: 10px;
}
.btn-honey-big { background: var(--honey); color: #1a1300; box-shadow: var(--shadow-honey); }
.btn-honey-big:hover { background: var(--honey-bright); transform: translateY(-1px); color: #1a1300; }
.btn-ghost-big { background: transparent; color: var(--text); border: 1.5px solid var(--line-bright); }
.btn-ghost-big:hover { border-color: var(--honey); color: var(--honey); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 70px 24px 90px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(245,180,0,.12), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(0,113,220,.08), transparent 55%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  max-width: 1220px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.eyebrow {
  display: inline-block; padding: 6px 14px;
  background: rgba(245,180,0,.12); border: 1px solid rgba(245,180,0,.25);
  color: var(--honey); border-radius: 999px; font-size: 12px; font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  font-weight: 800; margin: 0 0 22px;
}
.hl-walmart { color: var(--walmart); position: relative; }
.hl-walmart::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 8px;
  background: var(--walmart-yellow); opacity: .25; border-radius: 4px; z-index: -1;
}
.hl-honey { color: var(--honey); }
.lede { font-size: 1.1rem; color: var(--text-dim); margin: 0 0 28px; max-width: 580px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-meta {
  display: flex; gap: 22px; flex-wrap: wrap; padding-top: 26px;
  border-top: 1px solid var(--line); color: var(--text-mute); font-size: 13px;
}
.hero-meta b { color: #fff; }

/* Preview window */
.preview-window {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.preview-bar {
  background: var(--bg-3); padding: 10px 14px;
  display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--line);
}
.preview-bar > span { width: 11px; height: 11px; border-radius: 50%; background: #444; }
.preview-bar > span:nth-child(1) { background: #ff5f57; }
.preview-bar > span:nth-child(2) { background: #ffbd2e; }
.preview-bar > span:nth-child(3) { background: #28c840; }
.preview-url {
  margin-left: auto; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 6px; padding: 4px 14px; font-size: 11.5px; color: var(--text-mute);
  font-family: ui-monospace, monospace;
}
.preview-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.preview-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px;
}
.preview-card.slim { padding: 11px 14px; font-size: 13px; }
.preview-card.ai { background: linear-gradient(135deg, rgba(245,180,0,.08), rgba(0,113,220,.05)); border-color: rgba(245,180,0,.18); }
.pc-row { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-dim); margin-bottom: 12px; }
.pc-dot { width: 8px; height: 8px; border-radius: 50%; }
.pc-green { background: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,.15); }
.pc-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.pc-n { color: #fff; font-size: 1.3rem; font-weight: 800; }
.pc-l { color: var(--text-mute); font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; }
.pill { padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.pill-amber { background: rgba(245,158,11,.16); color: var(--amber); }
.pill-green { background: rgba(34,197,94,.16); color: var(--green); }
.pill-red { background: rgba(239,68,68,.16); color: var(--red); }
.pill-walmart { background: rgba(0,113,220,.16); color: #5ba8ff; }
.ai-avatar { width: 26px; height: 26px; border-radius: 50%; background: rgba(245,180,0,.18); display:flex;align-items:center;justify-content:center; font-size: 14px; }

/* ===================== BAR LOGOS ===================== */
.bar-logos { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 24px; }
.bar-inner {
  max-width: 1220px; margin: 0 auto;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  color: var(--text-mute); font-size: 13px;
}
.logo-pill {
  background: var(--bg-3); border: 1px solid var(--line); padding: 6px 14px;
  border-radius: 999px; font-size: 12.5px; color: var(--text-dim); font-weight: 600;
}

/* ===================== FEATURES ===================== */
.features { padding: 90px 24px; }
.features-inner { max-width: 1220px; margin: 0 auto; }
.features h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 0 0 12px; text-align: center; }
.section-sub { text-align: center; color: var(--text-dim); font-size: 1.05rem; margin: 0 auto 50px; max-width: 640px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; display: block; text-decoration: none; color: inherit;
  transition: all .2s; position: relative;
}
.feature-card:hover { border-color: var(--honey); transform: translateY(-3px); box-shadow: var(--shadow-honey); }
.fc-icon { font-size: 30px; margin-bottom: 14px; }
.feature-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.feature-card p { color: var(--text-dim); font-size: 14px; margin: 0 0 14px; line-height: 1.55; }
.fc-link { color: var(--honey); font-size: 13px; font-weight: 700; }
.fc-badge {
  display: inline-block; background: rgba(245,180,0,.12); border: 1px solid rgba(245,180,0,.3);
  color: var(--honey); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
}

/* ===================== HOW ===================== */
.how { background: var(--bg-2); padding: 80px 24px; border-top: 1px solid var(--line); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how h2 { text-align: center; font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 0 0 50px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how-step { text-align: center; padding: 20px; }
.step-n {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--honey); color: #1a1300; font-weight: 900; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  box-shadow: var(--shadow-honey);
}
.how-step h4 { margin: 0 0 10px; font-size: 1.2rem; }
.how-step p { color: var(--text-dim); font-size: 14px; margin: 0; }
.how-step b { color: #fff; }

/* ===================== PRICING STRIP ===================== */
.pricing-strip { padding: 90px 24px 100px; }
.ps-inner { max-width: 1180px; margin: 0 auto; }
.pricing-strip h2 { text-align: center; font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 0 0 40px; }
.ps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ps-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; transition: all .2s;
}
.ps-card:hover { border-color: var(--line-bright); }
.ps-card.highlight { border: 2px solid var(--honey); box-shadow: var(--shadow-honey); transform: scale(1.03); }
.ps-tier { color: var(--text-dim); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.ps-price { color: #fff; font-size: 2.3rem; font-weight: 900; margin-bottom: 4px; }
.ps-price span { color: var(--text-mute); font-size: .9rem; font-weight: 500; margin-left: 6px; }
.ps-mo { color: var(--honey); font-size: 1.15rem; font-weight: 700; margin-bottom: 22px; }
.ps-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.ps-card li { color: var(--text-dim); font-size: 14px; padding: 6px 0; border-bottom: 1px dashed var(--line); }
.ps-card li:last-child { border-bottom: 0; }
.ps-card li::before { content: "✓"; color: var(--honey); margin-right: 10px; font-weight: 900; }
.ps-badge {
  position: absolute; top: -12px; right: 22px; background: var(--honey); color: #1a1300;
  padding: 5px 14px; border-radius: 999px; font-size: 11px; font-weight: 900;
  letter-spacing: .05em; text-transform: uppercase;
}
.ps-foot { text-align: center; color: var(--text-mute); font-size: 13px; margin: 36px 0 24px; }
.ps-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
.foot { background: #06080d; padding: 60px 24px 24px; border-top: 1px solid var(--line); }
.foot-inner { max-width: 1220px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.foot-tag { color: var(--text-mute); font-size: 14px; margin-top: 10px; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.foot h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .07em; margin: 0 0 14px; }
.foot a { display: block; color: var(--text-dim); font-size: 13.5px; padding: 4px 0; }
.foot a:hover { color: var(--honey); }
.foot-bottom { max-width: 1220px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--line); color: var(--text-mute); font-size: 12px; }

/* ===================== DASHBOARD ===================== */
.dash-shell { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 60px); }
.dash-side { background: var(--bg-2); border-right: 1px solid var(--line); padding: 22px 18px; }
.dash-side h6 { color: var(--text-mute); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; margin: 18px 0 8px; }
.dash-side a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; color: var(--text-dim); font-size: 14px; }
.dash-side a:hover { background: var(--bg-3); color: #fff; }
.dash-side a.active { background: rgba(245,180,0,.12); color: var(--honey); }
.dash-main { padding: 30px 36px 60px; }
.dash-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; flex-wrap: wrap; gap: 16px; }
.dash-head h1 { font-size: 1.7rem; margin: 0 0 6px; }
.dash-head .sub { color: var(--text-dim); font-size: 14px; margin: 0; }
.dash-head .meta { color: var(--text-mute); font-size: 12.5px; display: flex; align-items: center; gap: 8px; }

.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.kpi { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.kpi .l { color: var(--text-mute); font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.kpi .v { color: #fff; font-size: 1.7rem; font-weight: 800; margin: 6px 0 2px; }
.kpi .d { font-size: 12.5px; font-weight: 700; }
.kpi .d.up { color: var(--green); }
.kpi .d.down { color: var(--red); }

.panel-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 18px; margin-bottom: 24px; }
.panel { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px; }
.panel h3 { margin: 0 0 6px; font-size: 1.05rem; }
.panel .ph-sub { color: var(--text-dim); font-size: 12.5px; margin: 0 0 16px; }
.panel-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }

table.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.tbl th { text-align: left; color: var(--text-mute); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; padding: 8px 10px; border-bottom: 1px solid var(--line); font-weight: 700; }
.tbl td { padding: 11px 10px; border-bottom: 1px solid var(--line); color: var(--text); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl tr:hover td { background: rgba(255,255,255,.02); }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; }
.tbl .pos { color: var(--green); font-weight: 700; }
.tbl .neg { color: var(--red); font-weight: 700; }
.tbl .img { width: 36px; height: 36px; border-radius: 6px; background: var(--bg-3); display:inline-flex;align-items:center;justify-content:center; font-size: 18px; }
.tbl .name { display: flex; align-items: center; gap: 10px; }
.tbl .name .meta { color: var(--text-mute); font-size: 11.5px; }

.chart {
  height: 220px; background: linear-gradient(180deg, rgba(245,180,0,.05) 0%, transparent 100%);
  border-radius: 8px; padding: 14px; display: flex; align-items: flex-end; gap: 8px;
}
.chart .bar { flex: 1; background: linear-gradient(180deg, var(--honey), var(--honey-dim)); border-radius: 3px 3px 0 0; min-height: 8px; transition: all .25s; position: relative; }
.chart .bar:hover { background: linear-gradient(180deg, var(--honey-bright), var(--honey)); }
.chart .bar .lbl { position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); font-size: 10.5px; color: var(--text-mute); }

.alert-list { display: flex; flex-direction: column; gap: 10px; }
.alert { display: flex; gap: 12px; padding: 12px 14px; border-radius: 10px; background: var(--bg-3); border-left: 3px solid var(--amber); }
.alert.green { border-left-color: var(--green); }
.alert.red { border-left-color: var(--red); }
.alert .a-i { font-size: 18px; flex-shrink: 0; }
.alert .a-t { color: #fff; font-size: 13px; font-weight: 700; margin: 0 0 2px; }
.alert .a-d { color: var(--text-dim); font-size: 12px; margin: 0; }

/* ===================== ACCOUNT (UNLOCK CARDS) ===================== */
.acct-shell { max-width: 1100px; margin: 30px auto; padding: 0 24px 80px; }
.acct-head { background: linear-gradient(135deg, var(--bg-2), var(--bg-3)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 28px; }
.acct-head h1 { margin: 0 0 6px; font-size: 1.6rem; }
.acct-head p { color: var(--text-dim); margin: 0; }
.acct-plan { display: inline-block; background: rgba(245,180,0,.12); border: 1px solid rgba(245,180,0,.3); color: var(--honey); padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; margin-top: 10px; }

.acct-section { margin-bottom: 36px; }
.acct-section h2 { font-size: 1.15rem; margin: 0 0 18px; color: #fff; text-transform: uppercase; letter-spacing: .06em; font-size: 13px; }
.unlock-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.active-card, .lock-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px;
  position: relative; transition: all .2s;
}
.active-card { border-left: 3px solid var(--green); }
.active-card h3 { margin: 0 0 4px; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.active-card .check { color: var(--green); font-weight: 900; }
.active-card p { color: var(--text-dim); font-size: 13px; margin: 0; }

.lock-card { border: 1px dashed var(--line-bright); background: var(--bg-2); }
.lock-card:hover { border-color: var(--honey); border-style: solid; background: linear-gradient(135deg, var(--bg-2), rgba(245,180,0,.04)); }
.lock-card .lock-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; gap: 12px; }
.lock-card h3 { margin: 0 0 4px; font-size: 1.05rem; }
.lock-card .lock-icon { color: var(--text-mute); font-size: 16px; }
.lock-card p { color: var(--text-dim); font-size: 13px; margin: 0 0 16px; line-height: 1.5; }
.lock-card .lock-price { color: var(--honey); font-size: 1.4rem; font-weight: 900; margin-bottom: 14px; }
.lock-card .lock-price span { color: var(--text-mute); font-size: .85rem; font-weight: 500; }
.lock-card .lock-cta { display: flex; gap: 8px; }
.lock-card .lock-cta .btn { flex: 1; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .hero-grid, .feature-grid, .how-grid, .ps-grid, .panel-grid, .kpi-grid, .acct-shell .unlock-grid, .foot-inner { grid-template-columns: 1fr; }
  .nav-burger { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,13,20,.98); backdrop-filter: blur(14px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 6px 0; border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block !important; padding: 14px 24px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a.btn { margin: 10px 24px; border-radius: 8px; text-align: center; }
  .ps-card.highlight { transform: none; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-shell { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .dash-main { padding: 20px 18px 40px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}

/* ========================================================
   NASIR'S BEVERAGES � Tier-2 site additions
   ======================================================== */

/* Demo-mode banner (top of every page, hides after activation) */
.demo-bar {
  background: linear-gradient(90deg, var(--honey), var(--honey-bright));
  color: #1a1300; text-align: center; padding: 9px 16px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.demo-bar b { font-weight: 900; }
.demo-bar a.btn-mini {
  background: #1a1300; color: var(--honey); padding: 5px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 800; text-decoration: none;
}
.demo-bar a.btn-mini:hover { background: #000; color: var(--honey-bright); }

/* Site-wide section wrapper */
.section { max-width: 1220px; margin: 0 auto; padding: 70px 24px; }
.section.tight { padding: 50px 24px; }
.section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 14px; }
.section .sub { color: var(--text-dim); font-size: 1.05rem; margin: 0 0 30px; max-width: 680px; }
.section.center { text-align: center; }
.section.center .sub { margin-left: auto; margin-right: auto; }

/* Generic content container (mirrors .section widths without vertical padding) */
.container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .container { padding: 0 18px; } }

/* Storefront hero (different from SaaS hero) */
.store-hero {
  position: relative; padding: 80px 24px 70px; overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(0,113,220,.10), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(245,180,0,.08), transparent 50%);
}
.store-hero-grid {
  max-width: 1220px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.store-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem); font-weight: 800; margin: 0 0 20px;
}
.store-hero .lede { font-size: 1.1rem; color: var(--text-dim); max-width: 540px; margin: 0 0 28px; }
.store-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 24px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
}
.store-hero-stats .num { color: var(--honey); font-size: 1.8rem; font-weight: 800; line-height: 1; }
.store-hero-stats .lbl { color: var(--text-mute); font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; }

/* Product grid */
.prod-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px;
}
.prod-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; transition: all .15s; display: flex; flex-direction: column; gap: 10px;
}
.prod-card:hover { border-color: var(--honey); transform: translateY(-2px); box-shadow: var(--shadow); }
.prod-img {
  font-size: 56px; line-height: 1; height: 80px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-3); border-radius: 10px;
}
.prod-name { color: #fff; font-weight: 700; font-size: 15px; margin: 0; }
.prod-meta { color: var(--text-mute); font-size: 12.5px; margin: 0; }
.prod-price { color: var(--honey); font-size: 1.4rem; font-weight: 800; }
.prod-price .unit { color: var(--text-mute); font-size: .7em; font-weight: 600; }

/* Feature 3-up grid (services/why-us) */
.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.svc-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px;
}
.svc-icon { font-size: 36px; margin-bottom: 14px; }
.svc-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.svc-card p { color: var(--text-dim); margin: 0; font-size: 14px; }

/* Site footer */
.footer {
  border-top: 1px solid var(--line); background: var(--bg-2);
  padding: 50px 24px 30px; margin-top: 60px;
}
.footer-inner {
  max-width: 1220px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer h4 { color: #fff; font-size: 13px; margin: 0 0 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a { color: var(--text-dim); font-size: 13.5px; }
.footer a:hover { color: var(--honey); }
.footer-bottom {
  max-width: 1220px; margin: 30px auto 0; padding-top: 20px; border-top: 1px solid var(--line);
  color: var(--text-mute); font-size: 12px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--text-mute); }
.footer-bottom a:hover { color: var(--honey); }

/* Activate page */
.activate-card {
  max-width: 580px; margin: 60px auto;
  background: var(--bg-2); border: 1px solid var(--honey); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-honey); text-align: center;
}
.activate-card h1 { font-size: 1.8rem; margin: 0 0 10px; }
.activate-card .price { color: var(--honey); font-size: 3rem; font-weight: 900; margin: 14px 0 4px; }
.activate-card .price-sub { color: var(--text-dim); font-size: 14px; margin-bottom: 24px; }
.activate-card .incl {
  text-align: left; background: var(--bg-3); border-radius: 10px; padding: 18px 22px; margin: 20px 0;
}
.activate-card .incl li { color: var(--text-dim); font-size: 13.5px; padding: 5px 0; list-style: none; }
.activate-card .incl li::before { content: "?"; color: var(--green); margin-right: 10px; font-weight: 900; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form label { color: var(--text-dim); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line); color: #fff;
  padding: 12px 14px; border-radius: 8px; font-size: 14px; font-family: inherit; box-sizing: border-box;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info-box {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.contact-info-box h4 { color: #fff; font-size: 14px; margin: 0 0 6px; }
.contact-info-box p { color: var(--text-dim); font-size: 13.5px; margin: 0 0 18px; }

@media (max-width: 980px) {
  .store-hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Product accordion (placed-in retailers) */
.prod-row {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.prod-row:hover { border-color: rgba(245,180,0,.35); }
.prod-row summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; display: flex; align-items: center; gap: 18px;
}
.prod-row summary::-webkit-details-marker { display:none; }
.prod-row summary::after {
  content: ""; width: 10px; height: 10px; margin-left: 18px; flex-shrink: 0;
  border-right: 2px solid var(--text-mute); border-bottom: 2px solid var(--text-mute);
  transform: rotate(45deg); transition: transform .25s, border-color .2s;
}
.prod-row[open] summary::after { transform: rotate(-135deg); border-color: var(--honey); }
.prod-row[open] { border-color: var(--honey); box-shadow: 0 6px 24px rgba(245,180,0,.08); }
.prod-row .pr-img {
  width: 60px; height: 60px; border-radius: 12px; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center; font-size: 30px; flex-shrink: 0;
  border: 1px solid var(--line);
}
.prod-row .pr-main { flex: 1; min-width: 0; }
.prod-row .pr-name { color: #fff; font-weight: 700; font-size: 16px; margin: 0; }
.prod-row .pr-meta { color: var(--text-mute); font-size: 12.5px; margin: 4px 0 0; }
.prod-row .pr-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px; font-weight: 700; font-size: 12px;
  background: rgba(245,180,0,.10); color: var(--honey); border: 1px solid rgba(245,180,0,.25);
  white-space: nowrap;
}
.prod-row .pr-status.live { background: rgba(34,197,94,.10); color: var(--green); border-color: rgba(34,197,94,.28); }
.prod-row .pr-status.pilot { background: rgba(0,113,220,.10); color: var(--walmart); border-color: rgba(0,113,220,.28); }
.prod-body { padding: 4px 24px 24px; border-top: 1px solid var(--line); }
.prod-body h5 { color: var(--text-dim); font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; margin: 20px 0 12px; font-weight: 700; }
.prod-desc { color: var(--text-dim); font-size: 14px; line-height: 1.6; margin: 16px 0 0; }
.placed-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px;
}
.placed-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; display: flex; align-items: center; gap: 12px;
}
.placed-card .pl-icon { font-size: 22px; }
.placed-card .pl-name { color: #fff; font-size: 13.5px; font-weight: 600; margin: 0; }
.placed-card .pl-loc { color: var(--text-mute); font-size: 11.5px; margin: 2px 0 0; }

/* Aligned checkbox grid (used in forms) */
.check-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px; margin: 8px 0 18px;
}
.check-grid label {
  display: flex; align-items: center; gap: 10px; margin: 0;
  padding: 12px 14px; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 10px; color: var(--text-dim); font-size: 13.5px; font-weight: 500;
  cursor: pointer; transition: border-color .15s, background .15s; line-height: 1.2;
}
.check-grid label:hover { border-color: rgba(245,180,0,.4); }
.check-grid label:has(input:checked) { border-color: var(--honey); background: rgba(245,180,0,.06); color: #fff; }
.check-grid input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--honey); flex-shrink: 0; margin: 0; }
