/* ============================================================
   KAZOLAU SERVICES — DESIGN SYSTEM
   ============================================================ */
:root {
  --navy-900: #0a1120;
  --navy-800: #0f1c33;
  --navy-700: #17294a;
  --navy-600: #22345a;
  --gold: #f5a623;
  --gold-dark: #d98f14;
  --gold-light: #ffd27a;
  --white: #ffffff;
  --bg-light: #f5f7fb;
  --bg-alt: #eef1f7;
  --text-dark: #10162a;
  --text-muted: #5c6478;
  --text-soft: #8a90a3;
  --border: #e5e8f0;

  --blue: #2f6fed;
  --purple: #7c4fe0;
  --green: #17a866;
  --orange: #f2801f;
  --pink: #e8548a;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(16, 22, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 22, 42, 0.10);
  --shadow-lg: 0 16px 40px rgba(16, 22, 42, 0.16);
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.01em; color: var(--text-dark); }

.section { padding: 64px 0; }
.section-alt { background: var(--bg-light); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head h2 { font-size: 28px; font-weight: 700; }
.section-link { color: var(--blue); font-weight: 600; font-size: 14.5px; white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

.eyebrow { color: var(--text-muted); font-size: 15px; margin-top: 2px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: 10px; font-weight: 600; font-size: 15px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--navy-900); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline-light { background: transparent; border: 1.5px solid rgba(255,255,255,.5); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: #d96e10; }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); }
.btn-outline-navy { background: transparent; border: 1.5px solid var(--navy-800); color: var(--navy-800); }
.btn-outline-navy:hover { background: var(--navy-800); color: var(--white); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; border-radius: 8px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); color: var(--white); font-weight: 700; font-size: 19px; }
.logo .mark { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(145deg, var(--gold-light), var(--gold)); color: var(--navy-900); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; }
.logo small { display: block; font-size: 9.5px; letter-spacing: .18em; color: var(--gold-light); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: rgba(255,255,255,.82); font-size: 15px; font-weight: 500; padding: 6px 2px; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); border-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn { position: relative; width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); background: rgba(255,255,255,.06); transition: background .15s; font-size: 18px; }
.icon-btn:hover { background: rgba(255,255,255,.14); }
.account-btn-highlight { width: auto !important; padding: 0 16px 0 13px; gap: 7px; background: var(--gold) !important; color: var(--navy-900) !important; font-weight: 700; font-size: 13.5px; animation: kz-pulse-glow 2.4s ease-in-out infinite; }
.account-btn-highlight:hover { background: var(--gold-dark) !important; animation: none; }
@keyframes kz-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,.55); }
  50% { box-shadow: 0 0 0 7px rgba(245,166,35,0); }
}
@media (prefers-reduced-motion: reduce) {
  .account-btn-highlight { animation: none; }
}
.badge { position: absolute; top: -4px; right: -4px; background: var(--gold); color: var(--navy-900); font-size: 10.5px; font-weight: 800; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0 3px; }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1fb956; }
.nav-toggle { display: none; }

/* ============ HERO ============ */
.hero { position: relative; background: radial-gradient(circle at 15% 20%, #16264a 0%, var(--navy-900) 55%), var(--navy-900); overflow: hidden; padding: 68px 0 40px; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,17,32,0) 40%, var(--navy-900) 100%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 30px; position: relative; z-index: 2; }
.hero h1 { color: var(--white); font-size: clamp(32px, 4.6vw, 48px); font-weight: 700; line-height: 1.12; margin-bottom: 16px; }
.hero h1 .accent { color: var(--gold); }
.hero p.lead { color: rgba(255,255,255,.72); font-size: 16.5px; max-width: 460px; margin-bottom: 26px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.search-panel { background: var(--white); border-radius: var(--radius-lg); padding: 10px; box-shadow: var(--shadow-lg); }
.search-box { display: flex; align-items: center; gap: 10px; }
.search-box input { flex: 1; border: none; outline: none; font-size: 15.5px; padding: 12px 8px; color: var(--text-dark); }
.search-box .search-icon { color: var(--text-soft); font-size: 18px; padding-left: 10px; }
.search-box button { background: var(--gold); color: var(--navy-900); width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.search-box button:hover { background: var(--gold-dark); }
.search-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.search-tags span.label { color: rgba(255,255,255,.55); font-size: 13.5px; margin-right: 2px; }
.tag-pill { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); font-size: 13px; padding: 6px 13px; border-radius: 999px; border: 1px solid rgba(255,255,255,.1); transition: background .15s; }
.tag-pill:hover { background: rgba(255,255,255,.16); }

#search-results { position: relative; z-index: 5; }
.search-results-panel { background: var(--white); border-radius: var(--radius-md); margin-top: 10px; box-shadow: var(--shadow-lg); overflow: hidden; display: none; }
.search-results-panel.open { display: block; }
.search-result-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.search-result-item:last-child { border-bottom: none; }
.search-result-item img, .search-result-item .emoji { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.search-result-item .info { flex: 1; min-width: 0; }
.search-result-item .info strong { display: block; font-size: 14.5px; }
.search-result-item .info span { font-size: 12.5px; color: var(--text-muted); }
.search-empty { padding: 18px 16px; color: var(--text-muted); font-size: 14px; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.stat-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md); padding: 16px; display: flex; align-items: center; gap: 12px; }
.stat-card .stat-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.stat-card strong { display: block; color: var(--white); font-size: 17px; font-family: var(--font-display); }
.stat-card span { color: rgba(255,255,255,.55); font-size: 12.5px; }

/* ============ CATEGORIES ============ */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 14px; }
.cat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cat-card p { font-size: 12.5px; color: var(--text-muted); margin-bottom: 14px; min-height: 32px; }
.cat-arrow { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 14px; transition: transform .15s; }
.cat-card:hover .cat-arrow { transform: translateX(3px); }

/* ============ PRODUCT / SERVICE CARDS ============ */
.two-col-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; position: relative; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 4/3; background: var(--bg-alt); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-fav { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-soft); box-shadow: var(--shadow-sm); transition: color .15s, transform .15s; }
.card-fav:hover { transform: scale(1.08); }
.card-fav.active { color: var(--pink); }
.card-badge { position: absolute; top: 10px; left: 10px; background: var(--navy-900); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.card-badge.badge-gold { background: var(--gold); color: var(--navy-900); }
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-body h3 { font-size: 15.5px; font-weight: 700; }
.card-body .card-sub { font-size: 12.5px; color: var(--text-muted); min-height: 32px; }
.card-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.card-price { font-size: 16.5px; font-weight: 800; font-family: var(--font-display); }
.card-price-old { font-size: 12.5px; color: var(--text-soft); text-decoration: line-through; }
.card-actions { display: flex; gap: 8px; margin-top: 10px; }
.card-actions .btn { flex: 1; padding: 10px 12px; font-size: 13px; }
.card-actions .btn-icon-only { flex: 0 0 auto; width: 38px; padding: 0; }
.stock-tag { font-size: 11.5px; font-weight: 600; }
.stock-tag.low { color: var(--orange); }
.stock-tag.out { color: #d1394a; }
.stock-tag.ok { color: var(--green); }

/* ============ BENEFITS STRIP ============ */
.benefits-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); }
.benefit-item { display: flex; align-items: center; gap: 14px; padding: 26px 24px; border-right: 1px solid var(--border); }
.benefit-item:last-child { border-right: none; }
.benefit-item .ico { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.benefit-item strong { display: block; font-size: 14.5px; }
.benefit-item span { font-size: 12.5px; color: var(--text-muted); }

/* ============ TESTIMONIALS ============ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.testimonial-card .stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14.5px; color: var(--text-dark); margin-bottom: 16px; line-height: 1.6; }
.testimonial-card .who { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* ============ HOW IT WORKS ============ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step-card { text-align: left; }
.step-num { width: 36px; height: 36px; border-radius: 10px; background: var(--navy-900); color: var(--gold); font-family: var(--font-display); font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step-card h4 { font-size: 15.5px; margin-bottom: 6px; }
.step-card p { font-size: 13.5px; color: var(--text-muted); }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.65); padding: 54px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 36px; }
.footer-grid h4 { color: var(--white); font-size: 14.5px; margin-bottom: 14px; }
.footer-grid ul li { margin-bottom: 9px; font-size: 13.5px; }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-brand p { font-size: 13.5px; margin: 12px 0 16px; max-width: 300px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float { position: fixed; bottom: 22px; right: 22px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 8px 22px rgba(0,0,0,.28); z-index: 200; transition: transform .15s; }
.wa-float:hover { transform: scale(1.06); }

/* ============ CART DRAWER ============ */
.overlay { position: fixed; inset: 0; background: rgba(10,17,32,.55); opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 300; }
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw; background: var(--white); z-index: 301; transform: translateX(100%); transition: transform .25s ease; display: flex; flex-direction: column; box-shadow: -12px 0 30px rgba(0,0,0,.2); }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); }
.drawer-head h3 { font-size: 18px; }
.drawer-close { font-size: 22px; color: var(--text-muted); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.drawer-foot { padding: 18px 22px; border-top: 1px solid var(--border); }

.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; background: var(--bg-alt); flex-shrink: 0; }
.cart-item .ci-info { flex: 1; min-width: 0; }
.cart-item .ci-info strong { font-size: 14px; display: block; }
.cart-item .ci-info .ci-meta { font-size: 12px; color: var(--text-muted); }
.cart-item .ci-price { font-size: 13.5px; font-weight: 700; margin-top: 4px; }
.qty-control { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-control button { width: 24px; height: 24px; border-radius: 6px; background: var(--bg-alt); font-size: 14px; display: flex; align-items: center; justify-content: center; }
.qty-control span { font-size: 13px; min-width: 16px; text-align: center; }
.ci-remove { font-size: 12px; color: #d1394a; margin-top: 6px; }
.empty-state { text-align: center; padding: 50px 10px; color: var(--text-muted); }
.empty-state .emoji { font-size: 40px; margin-bottom: 12px; }

.cart-totals-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; color: var(--text-muted); }
.cart-totals-row.total { color: var(--text-dark); font-weight: 800; font-size: 17px; margin-top: 10px; }

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 310; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-card { background: var(--white); border-radius: var(--radius-lg); width: 420px; max-width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); }
.modal-head h3 { font-size: 17px; }
.modal-body { padding: 20px 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.field input, .field select, .field textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 9px; padding: 11px 13px; font-size: 14.5px; outline: none; transition: border-color .15s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field .ref-price { font-size: 13px; color: var(--text-muted); margin-top: -4px; }
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--navy-900); color: var(--white); padding: 13px 22px; border-radius: 10px; font-size: 14px; font-weight: 600; opacity: 0; pointer-events: none; transition: all .25s ease; z-index: 400; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ FILTERS / SHOP LAYOUT ============ */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 30px; align-items: start; }
.filters-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; position: sticky; top: 90px; }
.filter-group { margin-bottom: 20px; }
.filter-group h4 { font-size: 13.5px; margin-bottom: 10px; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-muted); margin-bottom: 8px; cursor: pointer; }
.results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.results-bar select { border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 13.5px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.breadcrumbs { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.breadcrumbs a:hover { color: var(--gold-dark); }

/* ============ PRODUCT PAGE ============ */
.product-view { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.gallery-main { aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-alt); margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumbs img { width: 68px; height: 68px; border-radius: 8px; object-fit: cover; cursor: pointer; border: 2px solid transparent; }
.gallery-thumbs img.active { border-color: var(--gold); }
.product-info h1 { font-size: 26px; margin-bottom: 8px; }
.product-info .brand { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; }
.product-info .price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.product-info .price-block .price { font-size: 28px; font-weight: 800; font-family: var(--font-display); }
.option-group { margin-bottom: 18px; }
.option-group h4 { font-size: 13.5px; margin-bottom: 8px; }
.option-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.option-pill { border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 14px; font-size: 13.5px; transition: all .15s; }
.option-pill.active { border-color: var(--gold); background: #fff7e8; font-weight: 700; }
.product-desc { margin-top: 22px; color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col-cards { grid-template-columns: 1fr; }
  .card-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .benefits-strip { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .product-view { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .account-btn-highlight { padding: 0; width: 42px !important; }
  .account-btn-highlight span { display: none; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 70px; left: 0; right: 0; background: var(--navy-900); flex-direction: column; align-items: flex-start; padding: 16px 24px; gap: 4px; display: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-toggle { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .card-row { grid-template-columns: 1fr 1fr; }
  .benefits-strip { grid-template-columns: 1fr; }
  .benefit-item { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; }
}
