/* ================================================
   FOCUSLAB — Feuille de style principale
   Mobile-first · Productivité · Palette Focus
   Version 1.0 — Juin 2026
   ================================================ */

/* ---- Variables & Reset ---- */
:root {
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-light:  #3b82f6;
  --blue-pale:   #eff6ff;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --amber-pale:  #fffbeb;
  --dark:        #0f172a;
  --dark-med:    #1e293b;
  --text:        #111827;
  --text-med:    #374151;
  --text-light:  #6b7280;
  --border:      #e5e7eb;
  --bg:          #f8fafc;
  --bg-light:    #f1f5f9;
  --white:       #ffffff;
  --success:     #10b981;
  --danger:      #ef4444;

  --f-title: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --f-body:  'Inter', 'Segoe UI', system-ui, sans-serif;

  --shadow:  0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow2: 0 4px 6px rgba(0,0,0,.07), 0 10px 30px rgba(0,0,0,.1);
  --shadow3: 0 20px 60px rgba(37,99,235,.18);
  --r:       10px;
  --r2:      20px;
  --t:       .22s ease;
  --max-w:   1180px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a   { color:inherit; text-decoration:none; }
ul  { list-style:none; }
button { font-family:var(--f-body); cursor:pointer; border:none; }

/* ---- Typography ---- */
h1,h2,h3,h4 { font-family:var(--f-title); line-height:1.2; color:var(--text); }
h1 { font-size:clamp(1.9rem,5vw,3.2rem); font-weight:800; }
h2 { font-size:clamp(1.5rem,4vw,2.2rem); font-weight:700; }
h3 { font-size:clamp(1.1rem,3vw,1.45rem); font-weight:600; }
h4 { font-size:1rem; font-weight:600; }
p  { color:var(--text-med); line-height:1.75; }

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section        { padding:4.5rem 0; }
.section--light { background:var(--bg-light); }
.section--dark  { background:var(--dark); }
.section--dark h2,.section--dark h3 { color:#fff; }
.section--dark p { color:#94a3b8; }
.section--amber { background:var(--amber-pale); }
.section--blue  { background:var(--blue-pale); }
.text-center    { text-align:center; }
.section-tag {
  display:inline-block;
  background:var(--blue-pale);
  color:var(--blue);
  font-size:.78rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  padding:.3rem .8rem; border-radius:99px;
  margin-bottom:.9rem;
}
.section-title  { margin-bottom:.55rem; }
.section-sub {
  font-size:1.02rem; color:var(--text-light);
  margin-bottom:2.5rem; max-width:580px;
  margin-left:auto; margin-right:auto;
}

/* ---- Buttons ---- */
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem; padding:.85rem 1.75rem;
  border-radius:var(--r); font-size:.95rem; font-weight:600;
  cursor:pointer; border:none; transition:all var(--t);
  white-space:nowrap; text-decoration:none; font-family:var(--f-body);
}
.btn--primary { background:var(--blue); color:#fff; }
.btn--primary:hover { background:var(--blue-dark); transform:translateY(-2px); box-shadow:var(--shadow3); }
.btn--secondary { background:transparent; color:var(--blue); border:2px solid var(--blue); }
.btn--secondary:hover { background:var(--blue-pale); }
.btn--amber { background:var(--amber); color:#fff; }
.btn--amber:hover { background:var(--amber-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(245,158,11,.4); }
.btn--dark { background:var(--dark); color:#fff; }
.btn--dark:hover { background:var(--dark-med); transform:translateY(-2px); }
.btn--ghost { background:rgba(255,255,255,.15); color:#fff; border:2px solid rgba(255,255,255,.3); }
.btn--ghost:hover { background:rgba(255,255,255,.25); }
.btn--lg { padding:1.1rem 2.5rem; font-size:1.05rem; border-radius:var(--r2); }
.btn--full { width:100%; }
.btn--sm { padding:.55rem 1.1rem; font-size:.85rem; }

/* ---- TopBar ---- */
.topbar {
  background: var(--dark);
  color: #cbd5e1;
  text-align: center;
  font-size:.8rem; font-weight:500;
  padding:.5rem 1.25rem;
  letter-spacing:.02em;
}
.topbar a { color:var(--amber); text-decoration:underline; }

/* ---- Header ---- */
.header {
  position:sticky; top:0; z-index:1000;
  background:rgba(248,250,252,.97);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  transition:box-shadow var(--t);
}
.header.scrolled { box-shadow:var(--shadow); }
.header__inner {
  display:flex; align-items:center; justify-content:space-between;
  padding:.9rem 0; gap:1rem;
}
.logo {
  font-family:var(--f-title); font-size:1.45rem; font-weight:800;
  color:var(--dark); letter-spacing:-.02em;
  flex-shrink:0;
}
.logo em { color:var(--blue); font-style:normal; }
.logo span { color:var(--amber); }
.nav-list {
  display:flex; align-items:center; gap:.25rem;
}
.nav-link {
  font-size:.88rem; font-weight:500; color:var(--text-med);
  padding:.4rem .75rem; border-radius:6px;
  transition:all var(--t);
}
.nav-link:hover,.nav-link.active { color:var(--blue); background:var(--blue-pale); }
.header-actions { display:flex; align-items:center; gap:.75rem; }
.cart-btn {
  position:relative;
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  border-radius:8px; color:var(--text);
  transition:all var(--t); cursor:pointer;
  background:transparent; border:none;
}
.cart-btn:hover { background:var(--blue-pale); color:var(--blue); }
.cart-btn svg { width:22px; height:22px; }
.cart-count {
  position:absolute; top:-4px; right:-4px;
  background:var(--amber); color:#fff;
  font-size:.65rem; font-weight:700;
  width:18px; height:18px;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.hamburger {
  display:none; flex-direction:column; gap:5px;
  width:36px; height:36px; padding:6px;
  background:transparent; border:none; cursor:pointer;
}
.hamburger span {
  width:100%; height:2px;
  background:var(--text); border-radius:2px;
  transition:all var(--t);
}

/* Mobile menu */
.mobile-menu {
  position:fixed; inset:0; z-index:2000;
  background:var(--dark);
  display:flex; flex-direction:column;
  padding:2rem 1.5rem;
  transform:translateX(100%);
  transition:transform .3s ease;
}
.mobile-menu.open { transform:translateX(0); }
.mobile-menu__close {
  background:none; border:none; color:#fff;
  font-size:1.5rem; cursor:pointer;
  align-self:flex-end; margin-bottom:2rem;
}
.mobile-menu a {
  color:#e2e8f0; font-size:1.2rem; font-weight:500;
  padding:.85rem 0; border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-menu a:hover { color:var(--amber); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e3a8a 100%);
  padding:5rem 0 4rem;
  overflow:hidden; position:relative;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(37,99,235,.25) 0%, transparent 70%);
}
.hero-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center;
  position:relative;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(245,158,11,.15); color:var(--amber);
  font-size:.8rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  padding:.35rem .9rem; border-radius:99px; margin-bottom:1.25rem;
  border:1px solid rgba(245,158,11,.3);
}
.hero-title { color:#fff; margin-bottom:1.2rem; }
.hero-title em { color:var(--amber); font-style:normal; }
.hero-sub { color:#94a3b8; font-size:1.05rem; margin-bottom:2rem; max-width:480px; }
.hero-ctas { display:flex; gap:1rem; flex-wrap:wrap; }
.hero-trust {
  display:flex; align-items:center; gap:1.5rem;
  margin-top:2rem; flex-wrap:wrap;
}
.hero-trust-item {
  display:flex; align-items:center; gap:.4rem;
  color:#cbd5e1; font-size:.82rem; font-weight:500;
}
.hero-trust-item svg { width:16px; height:16px; color:var(--success); flex-shrink:0; }

/* Hero visual */
.hero-visual {
  display:flex; align-items:center; justify-content:center;
}
.hero-mockup {
  width:100%; max-width:420px;
  background:linear-gradient(145deg, #1e3a5f, #0f172a);
  border-radius:24px; padding:2.5rem;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(37,99,235,.3);
  position:relative;
}
.hero-product-icon {
  width:100%; aspect-ratio:1/1; max-width:200px;
  margin:0 auto 1.5rem;
  display:flex; align-items:center; justify-content:center;
}
.hero-product-icon svg { width:140px; height:140px; }
.hero-product-name { color:#fff; font-size:1.1rem; font-weight:700; margin-bottom:.4rem; text-align:center; }
.hero-product-price {
  text-align:center;
  display:flex; align-items:center; justify-content:center; gap:.75rem;
}
.hero-product-price .price-main { color:var(--amber); font-size:2rem; font-weight:800; }
.hero-product-price .price-old { color:#64748b; font-size:1rem; text-decoration:line-through; }
.hero-badges {
  display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.25rem; justify-content:center;
}
.hero-badge-mini {
  background:rgba(37,99,235,.2); color:#93c5fd;
  font-size:.72rem; padding:.25rem .65rem; border-radius:99px;
  font-weight:600; border:1px solid rgba(37,99,235,.3);
}

/* ---- Product Grid ---- */
.products-grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap:1.5rem;
}

/* ---- Product Card ---- */
.product-card {
  background:var(--white);
  border-radius:var(--r2); overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform var(--t), box-shadow var(--t);
  display:flex; flex-direction:column;
  border:1px solid var(--border);
}
.product-card:hover { transform:translateY(-4px); box-shadow:var(--shadow2); }
.product-card__img {
  aspect-ratio:1/1; width:100%;
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.product-card__img img {
  width:100%; height:100%; object-fit:cover;
}
.product-card__badge {
  position:absolute; top:12px; left:12px;
  background:var(--amber); color:#fff;
  font-size:.72rem; font-weight:700;
  padding:.25rem .65rem; border-radius:99px;
  text-transform:uppercase; letter-spacing:.05em;
}
.product-card__body {
  padding:1.4rem; flex:1; display:flex; flex-direction:column;
}
.product-card__name { margin-bottom:.4rem; font-size:1.05rem; }
.product-card__desc { font-size:.88rem; color:var(--text-light); margin-bottom:1rem; flex:1; }
.product-card__footer {
  display:flex; align-items:center; justify-content:space-between; gap:.75rem;
  flex-wrap:wrap;
}
.product-price { font-size:1.35rem; font-weight:800; color:var(--blue); }
.product-price-old { font-size:.9rem; color:var(--text-light); text-decoration:line-through; }

/* ---- Product Page ---- */
.product-page {
  padding:3rem 0 5rem;
}
.product-page__grid {
  display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:start;
}
.product-page__img-wrap {
  background:var(--bg-light); border-radius:var(--r2);
  aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.product-page__img-wrap img {
  width:100%; height:100%; object-fit:cover; border-radius:var(--r2);
}
.product-page__img-placeholder {
  width:100%; height:100%; border-radius:var(--r2);
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:1rem;
}
.product-page__info {}
.product-page__tag {
  display:inline-block;
  background:var(--amber-pale); color:var(--amber-dark);
  font-size:.78rem; font-weight:700;
  padding:.3rem .8rem; border-radius:99px;
  margin-bottom:.75rem; border:1px solid rgba(245,158,11,.3);
}
.product-page__name { margin-bottom:.75rem; }
.product-page__rating {
  display:flex; align-items:center; gap:.5rem;
  margin-bottom:1.25rem;
}
.stars { color:var(--amber); font-size:1rem; }
.rating-text { font-size:.85rem; color:var(--text-light); }
.product-page__price-wrap {
  display:flex; align-items:baseline; gap:.75rem;
  margin-bottom:1.25rem; flex-wrap:wrap;
}
.product-page__price { font-size:2.2rem; font-weight:800; color:var(--blue); }
.product-page__price-old { font-size:1.1rem; color:var(--text-light); text-decoration:line-through; }
.product-page__saving {
  background:var(--success); color:#fff;
  font-size:.75rem; font-weight:700; padding:.2rem .6rem; border-radius:99px;
}
.product-page__desc { font-size:.95rem; margin-bottom:1.5rem; color:var(--text-med); }
.product-features {
  background:var(--blue-pale); border-radius:var(--r); padding:1.25rem;
  margin-bottom:1.5rem;
}
.product-features h4 { color:var(--blue); margin-bottom:.75rem; font-size:.9rem; text-transform:uppercase; letter-spacing:.04em; }
.product-features ul { display:flex; flex-direction:column; gap:.5rem; }
.product-features li {
  display:flex; align-items:center; gap:.6rem;
  font-size:.9rem; color:var(--text-med);
}
.product-features li::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--blue); flex-shrink:0;
}
.product-page__delivery {
  display:flex; flex-direction:column; gap:.6rem;
  margin-bottom:1.5rem; font-size:.85rem; color:var(--text-light);
}
.product-page__delivery span {
  display:flex; align-items:center; gap:.5rem;
}
.product-page__delivery svg { width:16px; height:16px; color:var(--success); }
.qty-selector {
  display:flex; align-items:center; gap:1rem; margin-bottom:1.25rem;
}
.qty-selector label { font-size:.9rem; font-weight:600; color:var(--text); }
.qty-controls {
  display:flex; align-items:center; gap:.5rem;
}
.qty-btn {
  width:34px; height:34px; border-radius:8px;
  background:var(--bg-light); border:1px solid var(--border);
  font-size:1.1rem; font-weight:700; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:all var(--t); color:var(--text);
}
.qty-btn:hover { background:var(--blue-pale); color:var(--blue); border-color:var(--blue); }
#qty-value { width:40px; text-align:center; font-size:1rem; font-weight:700; color:var(--text); }
.product-ctas { display:flex; gap:.75rem; flex-direction:column; }
@media(min-width:480px) { .product-ctas { flex-direction:row; } }

/* ---- Features Section ---- */
.features-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:2rem;
}
.feature-card {
  background:var(--white); border-radius:var(--r2);
  padding:2rem; text-align:center;
  border:1px solid var(--border);
  transition:transform var(--t), box-shadow var(--t);
}
.feature-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.feature-icon {
  width:56px; height:56px; border-radius:16px;
  background:var(--blue-pale); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.25rem;
}
.feature-icon svg { width:28px; height:28px; }
.feature-card h3 { font-size:1rem; margin-bottom:.5rem; }
.feature-card p { font-size:.875rem; }

/* ---- Why Section ---- */
.why-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center;
}
.why-list { display:flex; flex-direction:column; gap:1.5rem; }
.why-item {
  display:flex; align-items:flex-start; gap:1rem;
}
.why-item__icon {
  width:44px; height:44px; border-radius:12px; flex-shrink:0;
  background:var(--blue-pale); color:var(--blue);
  display:flex; align-items:center; justify-content:center;
}
.why-item__icon svg { width:22px; height:22px; }
.why-item__content h4 { margin-bottom:.25rem; }
.why-item__content p { font-size:.88rem; }
.why-visual {
  background:var(--dark); border-radius:24px; padding:2rem;
  position:relative; overflow:hidden;
}
.why-visual::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 30% 30%, rgba(37,99,235,.3) 0%, transparent 60%);
}
.stat-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; position:relative;
}
.stat-card {
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:14px; padding:1.4rem; text-align:center;
}
.stat-card .num { font-size:2rem; font-weight:800; color:var(--amber); display:block; }
.stat-card .label { font-size:.78rem; color:#94a3b8; margin-top:.2rem; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.5rem;
}
.testimonial-card {
  background:var(--white); border-radius:var(--r2); padding:1.75rem;
  border:1px solid var(--border); box-shadow:var(--shadow);
}
.testimonial-card .stars { margin-bottom:.75rem; }
.testimonial-card blockquote { font-size:.93rem; color:var(--text-med); margin-bottom:1rem; font-style:italic; }
.testimonial-card cite {
  display:flex; align-items:center; gap:.6rem;
  font-style:normal;
}
.testimonial-avatar {
  width:36px; height:36px; border-radius:50%;
  background:linear-gradient(135deg, var(--blue), var(--amber));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:700; font-size:.85rem; flex-shrink:0;
}
.testimonial-name { font-size:.85rem; font-weight:600; }
.testimonial-detail { font-size:.75rem; color:var(--text-light); }

/* ---- CTA Banner ---- */
.cta-banner {
  background:linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  border-radius:24px; padding:3.5rem 2.5rem; text-align:center;
  position:relative; overflow:hidden; margin:0 1rem;
}
.cta-banner::before {
  content:''; position:absolute; top:-40px; right:-40px;
  width:200px; height:200px; border-radius:50%;
  background:rgba(255,255,255,.06);
}
.cta-banner h2 { color:#fff; margin-bottom:.75rem; }
.cta-banner p { color:#bfdbfe; margin-bottom:2rem; max-width:500px; margin-left:auto; margin-right:auto; }
.cta-form {
  display:flex; gap:.75rem; max-width:440px; margin:0 auto; flex-wrap:wrap; justify-content:center;
}
.cta-form input {
  flex:1; min-width:200px;
  padding:.85rem 1.25rem; border-radius:var(--r);
  border:none; font-size:.95rem; font-family:var(--f-body);
  outline:none; background:#fff; color:var(--text);
}
.cta-form input::placeholder { color:var(--text-light); }
.cta-channel {
  margin-top:1.25rem;
  display:flex; align-items:center; justify-content:center; gap:.75rem;
  flex-wrap:wrap;
}
.cta-channel a {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(255,255,255,.15); color:#fff;
  padding:.5rem 1.1rem; border-radius:99px;
  font-size:.82rem; font-weight:600;
  border:1px solid rgba(255,255,255,.2);
  transition:all var(--t);
}
.cta-channel a:hover { background:rgba(255,255,255,.25); }
.cta-channel a svg { width:16px; height:16px; }
.cta-channel p { color:#bfdbfe; font-size:.83rem; margin:0; }

/* ---- Email capture (Web3Forms) ---- */
.form-consent {
  flex-basis:100%; width:100%;
  display:flex; gap:.5rem; align-items:flex-start;
  font-size:.78rem; color:var(--text-light); text-align:left;
  margin-top:.4rem; line-height:1.45; cursor:pointer;
}
.form-consent input {
  flex:0 0 auto; width:18px; height:18px; min-width:18px;
  margin-top:.15rem; cursor:pointer;
}
.form-note {
  flex-basis:100%; width:100%;
  font-size:.75rem; color:var(--text-light);
  margin-top:.5rem; text-align:center;
}
.form-success {
  flex-basis:100%; width:100%;
  background:rgba(16,185,129,.12); color:#047857;
  border:1px solid rgba(16,185,129,.3); border-radius:var(--r);
  padding:1rem 1.25rem; font-size:.9rem; line-height:1.5; text-align:center;
}
.form-success strong { color:var(--success); }
/* Contexte foncé (cta-banner) */
.cta-banner .form-consent { color:#bfdbfe; }
.cta-banner .form-note { color:#bfdbfe; }
.cta-banner .form-success { background:rgba(255,255,255,.15); color:#fff; border-color:rgba(255,255,255,.25); }
.cta-banner .form-success strong { color:#fff; }

/* Lien VIP dans le hero */
.hero-vip-link {
  display:inline-block; margin-top:1rem;
  color:var(--amber); font-size:.92rem; font-weight:600;
  border-bottom:1px solid transparent; transition:border-color var(--t);
}
.hero-vip-link:hover { border-bottom-color:var(--amber); }

/* Micro-note sous le CTA VIP des pages produit */
.cta-micro-note {
  font-size:.8rem; color:var(--text-light);
  margin:.6rem 0 1rem; text-align:center; line-height:1.5;
}
.cta-micro-note strong { color:var(--amber-dark); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding:1rem 0; font-size:.83rem; color:var(--text-light);
  display:flex; align-items:center; gap:.4rem; flex-wrap:wrap;
}
.breadcrumb a { color:var(--blue); }
.breadcrumb a:hover { text-decoration:underline; }

/* ---- Cart ---- */
.cart-section { padding:3rem 0 5rem; }
.cart-grid { display:grid; grid-template-columns:1fr 360px; gap:2.5rem; align-items:start; }
.cart-items { display:flex; flex-direction:column; gap:1rem; }
.cart-item {
  background:var(--white); border:1px solid var(--border); border-radius:var(--r2);
  padding:1.25rem; display:flex; align-items:center; gap:1.25rem;
}
.cart-item__thumb {
  width:80px; height:80px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.cart-item__thumb img { width:100%; height:100%; object-fit:cover; }
.cart-item__info { flex:1; }
.cart-item__name { font-weight:600; margin-bottom:.2rem; }
.cart-item__price { color:var(--blue); font-weight:700; font-size:1.1rem; }
.cart-item__remove {
  background:none; border:none; color:var(--text-light);
  cursor:pointer; padding:.25rem; transition:color var(--t);
  font-size:.85rem;
}
.cart-item__remove:hover { color:var(--danger); }
.cart-empty {
  text-align:center; padding:3rem;
  background:var(--white); border-radius:var(--r2); border:1px solid var(--border);
}
.cart-empty p { margin-bottom:1.5rem; }
.cart-summary {
  background:var(--white); border-radius:var(--r2); border:1px solid var(--border);
  padding:1.75rem; position:sticky; top:100px;
}
.cart-summary h3 { margin-bottom:1.25rem; }
.cart-summary-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:.6rem 0; border-bottom:1px solid var(--border);
  font-size:.92rem;
}
.cart-summary-row:last-of-type { border:none; font-weight:700; font-size:1.1rem; color:var(--text); }
.cart-checkout-note {
  background:var(--amber-pale); border:1px solid rgba(245,158,11,.3);
  border-radius:var(--r); padding:1rem;
  font-size:.8rem; color:var(--amber-dark);
  margin:1rem 0; line-height:1.55;
}
.checkout-stub {
  background:var(--white); border-radius:var(--r2); border:1px solid var(--border);
  padding:2rem; margin-top:1.5rem; text-align:center;
}
.checkout-stub h3 { margin-bottom:.5rem; }
.checkout-stub p { font-size:.88rem; margin-bottom:1.25rem; }

/* ---- About / Legal pages ---- */
.page-hero {
  background:linear-gradient(135deg, var(--dark) 0%, var(--dark-med) 100%);
  padding:4rem 0; text-align:center;
}
.page-hero h1 { color:#fff; margin-bottom:.75rem; }
.page-hero p { color:#94a3b8; max-width:540px; margin:0 auto; }
.prose { max-width:750px; margin:0 auto; padding:3rem 1.25rem; }
.prose h2 { margin:2rem 0 .75rem; font-size:1.35rem; }
.prose h3 { margin:1.5rem 0 .5rem; font-size:1.1rem; }
.prose p { margin-bottom:1rem; font-size:.95rem; }
.prose ul { margin:.75rem 0 1rem 1.5rem; list-style:disc; display:flex; flex-direction:column; gap:.3rem; }
.prose ul li { font-size:.95rem; color:var(--text-med); }
.prose strong { color:var(--text); }
.prose .alert {
  background:var(--amber-pale); border:1px solid rgba(245,158,11,.3);
  border-radius:var(--r); padding:1rem 1.25rem; margin:1.5rem 0;
  font-size:.9rem; color:var(--amber-dark);
}

/* ---- Footer ---- */
.footer {
  background:var(--dark); color:#94a3b8;
  padding:3.5rem 0 1.5rem;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr; gap:3rem; margin-bottom:2.5rem;
}
.footer-brand .logo { color:#fff; margin-bottom:.75rem; display:block; }
.footer-brand p { font-size:.85rem; max-width:300px; color:#64748b; }
.footer-col h4 { color:#e2e8f0; font-size:.9rem; margin-bottom:1rem; }
.footer-col ul { display:flex; flex-direction:column; gap:.55rem; }
.footer-col a { font-size:.85rem; color:#64748b; transition:color var(--t); }
.footer-col a:hover { color:var(--amber); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:1.5rem;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:1rem; font-size:.8rem; color:#475569;
}
.footer-bottom a { color:#64748b; }
.footer-bottom a:hover { color:var(--amber); }

/* ---- Toast ---- */
.toast {
  position:fixed; bottom:1.5rem; right:1.5rem; z-index:9999;
  background:var(--dark); color:#fff;
  padding:.85rem 1.4rem; border-radius:12px;
  box-shadow:0 8px 30px rgba(0,0,0,.3);
  font-size:.9rem; font-weight:500;
  transform:translateY(100px); opacity:0;
  transition:all .3s ease;
  max-width:320px;
  display:flex; align-items:center; gap:.6rem;
}
.toast.show { transform:translateY(0); opacity:1; }
.toast svg { width:18px; height:18px; color:var(--success); flex-shrink:0; }

/* ---- Utilities ---- */
.tag { display:inline-block; font-size:.78rem; font-weight:600; padding:.2rem .6rem; border-radius:99px; }
.tag--blue { background:var(--blue-pale); color:var(--blue); }
.tag--amber { background:var(--amber-pale); color:var(--amber-dark); }
.tag--green { background:#d1fae5; color:#065f46; }

/* ---- Responsive ---- */
@media(max-width:1024px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .hero { padding:3.5rem 0 3rem; }
  .why-grid { grid-template-columns:1fr; }
  .product-page__grid { grid-template-columns:1fr; }
  .cart-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  .nav-list { display:none; }
  .hamburger { display:flex; }
  .section { padding:3rem 0; }
  .features-grid { grid-template-columns:1fr 1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .cta-banner { padding:2.5rem 1.5rem; margin:0; }
  .stat-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:480px) {
  .hero-ctas { flex-direction:column; }
  .features-grid { grid-template-columns:1fr; }
  .products-grid { grid-template-columns:1fr; }
}

/* ---- Product image gradients ---- */
.img-lamp      { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }
.img-timer     { background: linear-gradient(135deg, #713f12 0%, #f59e0b 100%); }
.img-stand     { background: linear-gradient(135deg, #1e293b 0%, #475569 100%); }
.img-deskmat   { background: linear-gradient(135deg, #064e3b 0%, #10b981 100%); }
.img-lightbar  { background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #1d4ed8 100%); }
.img-posture   { background: linear-gradient(135deg, #3b0764 0%, #7c3aed 100%); }
.img-earplugs  { background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 100%); }
