/* fietsendrageronline.nl — componenten */

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding: 14px 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; color: var(--text);
  letter-spacing: -0.02em;
}
.brand-logo {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 2px 8px rgba(46,133,113,0.2);
}
.brand-dot { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.nav a:hover { background: var(--bg-subtle); color: var(--accent); }
.nav a.active { color: var(--accent); }
/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r-md);
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--text); transition: background 0.15s, color 0.15s;
}
.nav-dropdown-btn:hover, .nav-dropdown.open .nav-dropdown-btn {
  background: var(--bg-subtle); color: var(--accent);
}
.nav-dropdown-btn svg { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 360px; background: white;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: 0 16px 40px rgba(28,31,30,0.12);
  padding: 8px; z-index: 45;
  opacity: 0; transform: translateY(-4px); pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
}
.nav-dropdown.open .nav-dropdown-panel {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.nav-dropdown-panel a {
  display: flex; gap: 12px; padding: 10px 12px;
  border-radius: var(--r-sm); text-decoration: none; color: var(--text);
  transition: background 0.12s;
}
.nav-dropdown-panel a:hover { background: var(--accent-tint); }
.nav-dropdown-panel .dd-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--accent-tint); color: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-dropdown-panel a:hover .dd-icon { background: white; color: var(--accent); }
.nav-dropdown-panel .dd-body { display: flex; flex-direction: column; min-width: 0; }
.nav-dropdown-panel .dd-title {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--text); margin-bottom: 2px;
}
.nav-dropdown-panel .dd-desc {
  font-size: 12px; color: var(--text-muted); line-height: 1.4;
}

.compare-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px;
  background: var(--accent); color: white; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; margin-left: 4px;
}
.nav-search { position: relative; width: 100%; max-width: 440px; justify-self: center; }
.nav-search input {
  width: 100%; padding: 10px 14px 10px 40px;
  background: var(--bg-subtle); border: 1px solid transparent;
  border-radius: var(--r-md); font-size: 14px;
  color: var(--text); outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.nav-search input:focus { border-color: var(--border-focus); background: white; }
.nav-search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: transparent; border: 1px solid var(--border);
  cursor: pointer; padding: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.hamburger span {
  width: 18px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(28, 31, 30, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(340px, 86vw); background: white;
  box-shadow: -12px 0 40px rgba(28,31,30,0.15);
  transform: translateX(100%); transition: transform 0.25s ease;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--bg-subtle); border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
}
.mobile-menu-search {
  position: relative; margin: 16px 20px;
}
.mobile-menu-search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted);
}
.mobile-menu-search input {
  width: 100%; padding: 11px 14px 11px 40px;
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: var(--r-md); font-size: 14px; color: var(--text);
  outline: none;
}
.mobile-menu-section {
  padding: 8px 20px 16px;
  border-top: 1px solid var(--border);
}
.mobile-menu-label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--text-subtle); text-transform: uppercase;
  letter-spacing: 0.08em; margin: 12px 0 8px;
}
.mobile-menu-section a {
  display: block; padding: 12px 0;
  font-size: 15px; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-menu-section a:last-child { border-bottom: none; }
.mobile-menu-section a:hover { color: var(--accent); }

/* Autocomplete */
.search-results {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 6px; z-index: 30;
  box-shadow: 0 12px 32px rgba(28,31,30,0.1);
  max-height: 420px; overflow-y: auto;
}
.search-results a {
  display: grid; grid-template-columns: 48px 1fr auto;
  align-items: center; gap: 12px;
  padding: 8px; border-radius: var(--r-sm);
  color: var(--text); text-decoration: none;
}
.search-results a:hover, .search-results a.active { background: var(--bg-subtle); }
.search-results .res-img {
  width: 48px; height: 48px; background: var(--bg-subtle);
  border-radius: var(--r-sm); overflow: hidden; display:flex; align-items:center; justify-content:center; padding: 3px;
}
.search-results .res-img img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.search-results .res-title { font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.search-results .res-brand { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.search-results .res-price { font-size: 13px; font-weight: 700; color: var(--accent); white-space: nowrap; }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--accent-tint) 0%, var(--bg) 100%);
  padding: 60px 0 48px;
}
.hero-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px; align-items: center;
}
.hero h1 {
  font-size: 56px; line-height: 1.05; margin: 0;
  letter-spacing: -0.02em; text-wrap: balance;
  font-family: var(--font-display);
}
.hero h1 span { color: var(--accent); }
.hero p.lead {
  font-size: 18px; color: var(--text-muted);
  max-width: 520px; line-height: 1.55;
  margin: 24px 0;
}
.hero-search {
  display: flex; gap: 8px; margin: 20px 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  min-width: 0;
}
.hero-search input {
  flex: 1; min-width: 0; padding: 12px 16px;
  border: none; outline: none; font-size: 15px;
  background: transparent; color: var(--text);
}
.hero-search .btn { flex-shrink: 0; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 12px;
  font-size: 13px; color: var(--text-muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { color: var(--accent); }

/* Wizard card */
.wizard-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: 0 8px 32px rgba(28,31,30,0.06);
}
.wizard-card h3 {
  font-size: 20px; margin: 0 0 6px;
  font-family: var(--font-display); font-weight: 700;
}
.wizard-card .sub { font-size: 13px; color: var(--text-muted); margin: 0 0 18px; }
.wizard-step { margin-bottom: 16px; }
.wizard-step label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.wizard-step select, .wizard-step input {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-size: 14px; background: white;
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 22px;
  border: none; border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.15s ease;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(46,133,113,0.25); }
.btn-secondary { background: var(--bg-subtle); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--border-strong); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-subtle); }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-block { width: 100%; }

/* Chip */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  background: var(--bg-subtle); color: var(--text-muted);
  border: 1px solid var(--border);
}
.chip-accent { background: var(--accent-tint); color: var(--accent-ink); border-color: var(--accent-soft); }
.chip-warn { background: var(--warn-soft); color: var(--warn-ink); border-color: var(--warn-soft); }
.chip-success { background: var(--success-soft); color: var(--success-ink); border-color: var(--success-soft); }

/* Sections */
.section { padding: 56px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 28px; }
.section-head h2 { font-size: 32px; letter-spacing: -0.015em; margin: 0; font-family: var(--font-display); font-weight: 700; }
.section-head .sub { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.section-head a.link { font-size: 14px; font-weight: 600; color: var(--accent); }
.section-head a.link:hover { text-decoration: underline; }

/* Category grid */
.cat-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.cat-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 170px;
}
.cat-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(28,31,30,0.08); }
.cat-card .icon {
  width: 42px; height: 42px; border-radius: var(--r-md);
  background: var(--accent-tint);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent-ink);
}
.cat-card h3 { font-size: 17px; margin: 0; font-family: var(--font-display); font-weight: 700; }
.cat-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; flex: 1; }

/* Product grid */
.prod-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
}
.prod-grid.prod-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Product card */
.prod {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
  text-decoration: none; color: inherit; position: relative;
}
.prod:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(28,31,30,0.08); }
.prod-img {
  aspect-ratio: 4/3; background: var(--bg-subtle);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 14px;
}
.prod-img img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.prod-img.placeholder { color: var(--text-subtle); }
.prod-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-brand { font-size: 11px; font-weight: 700; color: var(--text-subtle); letter-spacing: 0.06em; text-transform: uppercase; }
.prod-title {
  font-size: 14px; font-weight: 600; color: var(--text);
  line-height: 1.35; letter-spacing: -0.005em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}
.prod-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.prod-chips .chip { padding: 2px 8px; font-size: 11px; }
.prod-rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.prod-rating .stars { color: var(--star); letter-spacing: 1px; }
.prod-bottom {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding-top: 8px; border-top: 1px solid var(--border);
  min-width: 0;
}
.prod-bottom > div:first-child { min-width: 0; }
.prod-price {
  font-size: 18px; font-weight: 700; color: var(--text);
  font-family: var(--font-display);
  white-space: nowrap;
}
.prod-strike { font-size: 12px; color: var(--text-subtle); text-decoration: line-through; margin-left: 6px; font-weight: 500; white-space: nowrap; }
.prod-cta {
  padding: 7px 12px; font-size: 12px; font-weight: 600;
  background: var(--accent); color: white; border-radius: var(--r-sm);
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s;
}
.prod-cta:hover { background: var(--accent-hover); }
.prod-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  padding: 4px 10px; border-radius: var(--r-sm);
  font-size: 11px; font-weight: 700;
  background: var(--warn); color: var(--warn-ink);
}

/* Category page layout */
.cat-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; }
.filter-panel {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
  position: sticky; top: 90px;
  max-height: calc(100vh - 110px); overflow-y: auto;
}
.filter-panel h4 { font-size: 14px; margin: 0 0 14px; font-family: var(--font-display); font-weight: 700; }
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-group label.group-label { display: block; font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.filter-group .check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; cursor: pointer; }
.filter-group .check input { accent-color: var(--accent); }
.sort-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.sort-row select { padding: 9px 14px; border: 1px solid var(--border); border-radius: var(--r-sm); font-size: 14px; background: white; }

/* Breadcrumbs */
.crumb { display: flex; align-items: center; gap: 8px; margin: 20px 0; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.crumb a { color: var(--text-muted); }
.crumb .current { color: var(--text); }
.crumb svg { color: var(--border-strong); width: 14px; height: 14px; }

/* PDP */
.pdp {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px;
}
.pdp-gallery {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
}
.pdp-gallery .main { aspect-ratio: 4/5; background: var(--bg-subtle); border-radius: var(--r-md); display:flex; align-items:center; justify-content:center; overflow:hidden; padding:16px; }
.pdp-gallery .main img { max-width:100%; max-height:100%; object-fit:contain; mix-blend-mode: multiply; }
.pdp-gallery .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; }
.pdp-gallery .thumbs button {
  aspect-ratio: 1/1; border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--bg-subtle); padding: 6px; cursor: pointer;
  transition: border-color 0.15s;
}
.pdp-gallery .thumbs button.active { border-color: var(--accent); }

/* Gallery nav arrows */
.pdp-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.95); border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(28,31,30,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text); cursor: pointer; z-index: 3;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}
.pdp-nav:hover { background: white; box-shadow: 0 6px 20px rgba(28,31,30,0.18); transform: translateY(-50%) scale(1.05); }
.pdp-nav:active { transform: translateY(-50%) scale(0.95); }
.pdp-prev { left: 10px; }
.pdp-next { right: 10px; }
.pdp-counter {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(28,31,30,0.75); color: white;
  font-size: 12px; font-weight: 600; font-family: var(--font-mono);
}
@media (max-width: 768px) {
  .pdp-nav { width: 36px; height: 36px; }
  .pdp-prev { left: 6px; }
  .pdp-next { right: 6px; }
}
.pdp-gallery .thumbs img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }

.pdp-info h1 { font-size: 32px; font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; margin: 10px 0 10px; text-wrap: balance; }
.pdp-brand { font-size: 13px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; }
.pdp-rating { display:flex; align-items:center; gap: 10px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pdp-rating .stars { color: var(--star); letter-spacing: 1px; font-size: 15px; }
.pdp-price-box { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; margin: 20px 0; }
.pdp-price { font-size: 36px; font-weight: 800; color: var(--text); font-family: var(--font-display); line-height: 1; white-space: nowrap; }
.pdp-price-strike { font-size: 16px; color: var(--text-subtle); text-decoration: line-through; margin-left: 10px; font-weight: 500; white-space: nowrap; }
.pdp-delivery { font-size: 13px; color: var(--success-ink); margin-top: 6px; display: inline-flex; align-items: center; gap: 6px; }
.pdp-cta-group { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.pdp-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.pdp-features { list-style: none; padding: 0; margin: 0; }
.pdp-features li { display: flex; gap: 10px; font-size: 14px; color: var(--text); padding: 6px 0; }
.pdp-features li::before { content: ""; flex-shrink: 0; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-top: 8px; }

/* PDP sections */
.pdp-sections { margin-top: 48px; display: flex; flex-direction: column; gap: 40px; }
.pdp-section h2 { font-size: 22px; font-family: var(--font-display); font-weight: 700; margin: 0 0 16px; }
.pdp-description { font-size: 15px; line-height: 1.65; color: var(--text); max-width: 720px; }
.pdp-description p { margin: 0 0 14px; }
.pdp-description ul { padding-left: 20px; margin: 0 0 14px; }
.pdp-description li { margin-bottom: 4px; }
.specs-table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.specs-table tr:nth-child(even) { background: var(--bg-subtle); }
.specs-table td { padding: 12px 18px; font-size: 14px; }
.specs-table td:first-child { color: var(--text-muted); width: 40%; font-weight: 500; }
.specs-table td:last-child { color: var(--text); font-weight: 500; }
.rating-dist { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; display: flex; flex-direction: column; gap: 10px; max-width: 480px; }
.rating-dist .row { display: grid; grid-template-columns: 40px 1fr 50px; align-items: center; gap: 14px; font-size: 13px; color: var(--text-muted); }
.rating-dist .bar { height: 8px; background: var(--bg-subtle); border-radius: var(--r-pill); overflow: hidden; }
.rating-dist .bar-fill { height: 100%; background: var(--star); border-radius: var(--r-pill); }

/* Disclaimer bar */
.disclaimer-bar {
  background: var(--accent-tint); color: var(--accent-ink);
  padding: 10px 0; font-size: 13px; text-align: center;
}
.disclaimer-bar a { color: var(--accent-hover); font-weight: 600; }

/* Footer */
.footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px; margin-top: 80px;
}
.footer-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer h4 { font-size: 14px; margin: 0 0 14px; font-family: var(--font-display); font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: 13px; color: var(--text-muted); }
.footer ul a:hover { color: var(--accent); }
.footer p { font-size: 13px; color: var(--text-muted); line-height: 1.6; max-width: 340px; }
.footer-bottom { max-width: var(--container); margin: 40px auto 0; padding: 24px 24px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; font-size: 12px; color: var(--text-subtle); flex-wrap: wrap; gap: 12px; }

/* Compare table */
.compare-table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.compare-table th { background: var(--bg-subtle); padding: 18px; text-align: left; font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--border); }
.compare-table td { padding: 16px 18px; font-size: 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare-table tr:last-child td { border-bottom: none; }

/* Skeleton */
@keyframes skeleton-pulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
.skeleton {
  background: linear-gradient(90deg, var(--bg-subtle), var(--bg-muted), var(--bg-subtle));
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
  border-radius: var(--r-sm);
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.prod.skeleton-card .skeleton { height: 100%; }
.prod.skeleton-card .prod-img { background: var(--bg-subtle); }

/* Empty state */
.empty { padding: 48px 24px; text-align: center; color: var(--text-muted); font-size: 14px; }
.empty h3 { color: var(--text); font-size: 20px; margin: 0 0 10px; font-family: var(--font-display); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid, .prod-grid.prod-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .cat-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; max-height: none; }
  .pdp { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .header-inner { padding: 12px 16px; grid-template-columns: auto 1fr auto; gap: 12px; }
  .nav { gap: 0; }
  .nav a { padding: 6px 10px; font-size: 13px; }
  .nav a.hide-mobile, .nav .hide-mobile { display: none !important; }
  .nav-search { display: none; }
  .hamburger { display: inline-flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prod-grid, .prod-grid.prod-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .section { padding: 40px 0; }
  .section-head h2 { font-size: 24px; }
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: 34px; }
  .hero p.lead { font-size: 16px; margin: 18px 0; }
  .hero-search { flex-direction: row; }
  .hero-search .btn { padding: 10px 16px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
  .footer { padding: 40px 0 24px; margin-top: 48px; }
  .pdp-gallery .thumbs { grid-template-columns: repeat(5, 1fr); }
  .pdp-info h1 { font-size: 24px; }
  .pdp-price { font-size: 28px; }
  .container { padding: 0 16px; }
  .status-strip, .disclaimer-bar { font-size: 12px; }
}
@media (max-width: 540px) {
  .prod-grid, .prod-grid.prod-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prod-title { font-size: 13px; -webkit-line-clamp: 3; min-height: 50px; }
  .prod-chips .chip { font-size: 10px; padding: 2px 6px; }
  .prod-price { font-size: 16px; }
  .prod-cta { padding: 6px 10px; font-size: 11px; }
  .prod-body { padding: 12px; gap: 6px; }
}
@media (max-width: 380px) {
  .prod-grid, .prod-grid.prod-grid-3 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .prod-bottom { flex-wrap: nowrap; }
}
