:root {
  --blue: oklch(0.55 0.14 235);
  --blue-dark: oklch(0.45 0.14 235);
  --blue-mid: oklch(0.5 0.14 235);
  --text: oklch(0.22 0.02 230);
  --text-body: oklch(0.3 0.02 230);
  --text-muted: oklch(0.45 0.02 230);
  --text-faint: oklch(0.5 0.02 230);
  --border: oklch(0.92 0.01 230);
  --border-strong: oklch(0.85 0.02 230);
  --bg-soft: oklch(0.96 0.02 230);
  --bg: oklch(0.99 0.005 230);
  --footer-bg: oklch(0.15 0.02 235);
  --footer-border: oklch(0.28 0.02 235);
  --footer-text: oklch(0.85 0.01 235);
  --footer-text-dim: oklch(0.65 0.01 235);
  --footer-link: oklch(0.75 0.01 235);
  --star: oklch(0.6 0.14 85);
  --stock-green: oklch(0.55 0.13 150);
  --nav-text: oklch(0.3 0.02 230);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
}

a { color: var(--blue-mid); text-decoration: none; }
img { max-width: 100%; display: block; }
details summary { cursor: pointer; }
button { font-family: inherit; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
}

/* Top bar */
.topbar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
}
.topbar a { color: #fff; text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  color: oklch(0.35 0.13 235);
  letter-spacing: -0.02em;
}
.nav-desktop { display: flex; gap: 28px; align-items: center; }
.nav-desktop a { font-size: 15px; font-weight: 500; color: var(--nav-text); }
.nav-desktop a:hover { color: var(--blue-mid); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-call {
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.btn-call:hover { background: var(--blue-dark); }
.cart-btn {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--nav-text);
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  width: 20px;
  height: 20px;
  font-size: 11px;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-badge.show { display: flex; }
.hamburger-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--nav-text); }

@media (max-width: 860px) {
  .nav-desktop { display: none !important; }
  .hamburger-btn { display: flex !important; }
  .hero-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .grid-3 { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: 1fr 1fr !important; }
}
@media (min-width: 861px) { .mobile-menu { display: none !important; } }
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr !important; }
  h1 { font-size: 30px !important; }
}

main { flex: 1; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 56px 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.section-soft { background: var(--bg-soft); padding: 56px 24px; }
.section-blue { background: var(--blue); padding: 56px 24px; text-align: center; color: #fff; }

.eyebrow {
  color: var(--blue-mid);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head h2 { font-size: 30px; font-weight: 800; margin: 0 0 8px; }
.section-head p { color: var(--text-muted); margin: 0; font-size: 15px; }
.section-head a { font-weight: 600; font-size: 14px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
  align-items: center;
}
.hero-grid h1 { font-size: 44px; line-height: 1.1; font-weight: 800; margin: 0 0 18px; letter-spacing: -0.02em; }
.hero-grid p.lead { font-size: 17px; line-height: 1.6; color: var(--text-muted); margin: 0 0 28px; }
.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline {
  background: #fff;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
}
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.trust-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--blue); display: inline-block; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  background: #fff;
}
.card h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin: 0 0 14px; }
.card-row { display: flex; justify-content: space-between; align-items: center; }
.price { font-weight: 700; color: var(--blue-mid); font-size: 14px; }

.step-card { background: #fff; border-radius: 14px; padding: 28px; text-align: center; }
.step-num {
  width: 40px; height: 40px; border-radius: 999px; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 16px;
}
.step-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.step-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

.product-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; }
.product-img { width: 100%; height: 150px; object-fit: cover; }
.product-body { padding: 16px; }
.product-body h4 { font-size: 14px; font-weight: 700; margin: 6px 0; }
.product-cat { font-size: 11px; font-weight: 700; color: var(--blue-mid); text-transform: uppercase; }
.product-desc { font-size: 12px; color: var(--text-muted); margin: 0 0 10px; line-height: 1.4; }
.product-stock { font-size: 11px; color: var(--stock-green); font-weight: 600; margin-bottom: 10px; }
.btn-add {
  background: var(--bg-soft); border: 1px solid var(--border-strong); border-radius: 7px;
  padding: 7px 12px; font-size: 12px; font-weight: 600; cursor: pointer;
}

.testimonial { background: #fff; border-radius: 14px; padding: 24px; }
.stars { color: var(--star); font-size: 14px; margin-bottom: 10px; }
.testimonial p { font-size: 14px; line-height: 1.6; color: var(--text-body); margin: 0 0 14px; }
.testimonial .who { font-size: 13px; font-weight: 700; }
.testimonial .who span { font-weight: 400; color: var(--text-faint); }

.city-pill {
  background: var(--bg-soft); border: 1px solid var(--border-strong); border-radius: 999px;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
}
.city-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.article-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; }
.article-img { width: 100%; height: 150px; object-fit: cover; }
.article-img-lg { width: 100%; height: 280px; object-fit: cover; border-radius: 14px; margin-bottom: 28px; }
.article-body { padding: 20px; }
.article-cat { font-size: 11px; font-weight: 700; color: var(--blue-mid); text-transform: uppercase; letter-spacing: 0.05em; }
.article-body h3 { font-size: 16px; font-weight: 700; margin: 8px 0; }
.article-body p { font-size: 13px; color: var(--text-muted); margin: 0 0 14px; line-height: 1.5; }
.article-meta { font-size: 12px; color: var(--text-faint); margin-bottom: 12px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 12px; padding: 16px 20px; }
.faq-item summary { font-weight: 700; font-size: 15px; }
.faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 12px 0 0; }

.cta-banner h2 { font-size: 28px; font-weight: 800; margin: 0 0 12px; }
.cta-banner p { font-size: 15px; opacity: 0.9; margin: 0 0 24px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: oklch(0.4 0.14 235); padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; display: inline-block; }
.btn-ghost-white { background: transparent; border: 1.5px solid #fff; color: #fff; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; display: inline-block; }

/* Filter chips */
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.chip {
  border-radius: 999px; padding: 9px 18px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--border-strong);
  background: #fff; color: var(--nav-text);
}
.chip.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.benefit-box { background: var(--bg-soft); border-radius: 12px; padding: 20px; font-size: 13px; font-weight: 600; text-align: center; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.info-box { background: var(--bg-soft); border-radius: 16px; padding: 28px; margin-bottom: 20px; }
.info-box h3 { font-size: 16px; font-weight: 700; margin: 0 0 16px; }
.info-box p { font-size: 14px; margin: 0 0 10px; }
.urgent-box { background: var(--blue); color: #fff; border-radius: 16px; padding: 24px; }
.urgent-box h3 { font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.urgent-box p { font-size: 13px; opacity: 0.9; margin: 0 0 14px; }
.form-box { border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.form-field {
  padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: 9px; font-size: 14px;
  font-family: inherit; width: 100%; resize: vertical;
}
form.stack { display: flex; flex-direction: column; gap: 14px; }
.map-box { margin-top: 40px; border-radius: 16px; overflow: hidden; position: relative; height: 220px; }
.map-box img { width: 100%; height: 100%; object-fit: cover; }
.map-caption {
  position: absolute; left: 0; right: 0; bottom: 0; background: rgba(15,20,30,0.65); color: #fff;
  font-size: 13px; padding: 10px 16px;
}

/* Team / about */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 48px; }
.about-grid p { font-size: 16px; line-height: 1.7; color: var(--text-body); margin: 0 0 16px; }
.about-img { width: 100%; height: 280px; object-fit: cover; border-radius: 16px; }
.stat-box { background: var(--bg-soft); border-radius: 14px; padding: 24px; text-align: center; }
.stat-box .n { font-size: 28px; font-weight: 800; color: var(--blue-mid); }
.stat-box .label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.value-box { text-align: center; border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.value-box.plain { border: none; }
.value-letter {
  width: 40px; height: 40px; border-radius: 999px; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 12px;
}
.value-box h4 { font-size: 14px; font-weight: 700; margin: 0 0 6px; }
.value-box p { font-size: 13px; color: var(--text-muted); margin: 0; }
.team-photo { width: 120px; height: 120px; border-radius: 999px; object-fit: cover; margin: 0 auto 14px; }
.team-card { text-align: center; }
.team-card h4 { font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.team-role { font-size: 13px; color: var(--blue-mid); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* Legal pages */
.legal-updated { font-size: 13px; color: var(--text-faint); margin: 0 0 28px; }
.legal-body { font-size: 15px; line-height: 1.8; color: var(--text-body); }
.legal-body h3 { font-size: 17px; font-weight: 700; }

/* Cart drawer */
.cart-overlay {
  display: none;
  position: fixed; inset: 0; background: rgba(20,25,35,0.4); z-index: 90;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 92vw; background: #fff;
  z-index: 91; box-shadow: -8px 0 30px rgba(0,0,0,0.12); padding: 24px; flex-direction: column;
}
.cart-drawer.open { display: flex; }
.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-drawer-head h3 { font-size: 18px; font-weight: 800; margin: 0; }
.cart-close { background: none; border: none; font-size: 20px; cursor: pointer; }
.cart-empty-msg { font-size: 14px; color: var(--text-muted); }
.cart-items { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; }
.cart-item { border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.cart-item-top { display: flex; justify-content: space-between; margin-bottom: 8px; }
.cart-item-top span { font-size: 14px; font-weight: 600; }
.cart-remove { background: none; border: none; color: var(--text-faint); cursor: pointer; font-size: 12px; }
.cart-item-bottom { display: flex; justify-content: space-between; align-items: center; }
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 26px; height: 26px; border: 1px solid var(--border-strong); border-radius: 6px; background: #fff; cursor: pointer; }
.cart-footer { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 16px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 800; margin-bottom: 14px; }
.btn-checkout { width: 100%; background: var(--blue); color: #fff; border: none; padding: 14px; border-radius: 9px; font-weight: 700; font-size: 15px; cursor: pointer; }

/* Sticky call button */
.sticky-call {
  position: fixed; bottom: 24px; right: 24px; background: var(--blue); color: #fff; width: 64px; height: 64px;
  border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
  text-align: center; box-shadow: 0 8px 20px rgba(30,80,180,0.35); z-index: 80;
}

/* Cookie banner */
.cookie-banner {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; background: oklch(0.18 0.02 235); color: #fff;
  padding: 16px 24px; justify-content: center; gap: 20px; flex-wrap: wrap; align-items: center; z-index: 95;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 13px; margin: 0; max-width: 600px; }
.cookie-banner a { color: #fff; text-decoration: underline; cursor: pointer; }
.cookie-accept { background: #fff; color: oklch(0.2 0.02 235); border: none; padding: 9px 18px; border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer; white-space: nowrap; }

/* Footer */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 56px 24px 24px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 32px; margin-bottom: 36px; }
.footer-logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-grid p { font-size: 13px; line-height: 1.6; color: var(--footer-text-dim); }
.footer-col-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--footer-link); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--footer-border); padding-top: 20px;
  font-size: 12px; color: oklch(0.6 0.01 235); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* Checkout / empty states */
.empty-state { text-align: center; padding: 50px 20px; background: var(--bg-soft); border-radius: 16px; }
.empty-state p { font-size: 15px; color: var(--text-muted); margin: 0 0 20px; }
.summary-box { border: 1px solid var(--border); border-radius: 14px; padding: 20px; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid oklch(0.94 0.01 230); font-size: 14px; }
.summary-total { display: flex; justify-content: space-between; padding-top: 14px; font-size: 16px; font-weight: 800; }

.thanks-box { text-align: center; padding: 30px 0; }
.thanks-box h2, .thanks-box h3 { font-weight: 800; margin: 0 0 10px; }
.thanks-box p { font-size: 14px; color: var(--text-muted); }

.hidden { display: none !important; }

/* 404 */
.error-page { max-width: 600px; margin: 0 auto; padding: 100px 24px; text-align: center; }
.error-page h1 { font-size: 80px; margin: 0; color: var(--blue); font-weight: 800; }
