*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --color-brand-background: #ffffff;
  --color-brand-text: #1a1a1a;
  --font-regular-family: 'Barlow', sans-serif;
  --lime: #c8e645;
  --black: #000000;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --gray-dark: #666;
}

body {
  background-color: var(--color-brand-background);
  color: var(--color-brand-text);
  display: flex;
  flex-direction: column;
  font-family: var(--font-regular-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── PROMO BAR ─── */
.promo-bar {
  background: var(--lime);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ─── HEADER ─── */
header {
  background: var(--black);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 64px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

nav a {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 10px;
  white-space: nowrap;
  transition: color 0.15s;
}

nav a:hover { color: var(--lime); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.header-actions svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.8; }

.search-bar {
  display: flex;
  align-items: center;
  background: #222;
  border-radius: 4px;
  padding: 5px 10px;
  gap: 6px;
}

.search-bar input {
  background: none;
  border: none;
  color: #fff;
  font-size: 0.78rem;
  outline: none;
  width: 140px;
  font-family: inherit;
}

.search-bar input::placeholder { color: #888; }

.lang-btn {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ─── HERO ─── */
.hero {
  background: #1a1a1a;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 54px 40px 66px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}

.hero-copy {
  max-width: 470px;
  padding-left: 18px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.hero-title-wrap { display: block; margin-bottom: 24px; }

.hero-title {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.9rem, 6vw, 5.15rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--lime);
}

.hero-subtitle {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.9rem, 6vw, 5.15rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
}

/* ─── SECTION COMMONS ─── */
section { padding: 56px 0; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-block;
  padding: 11px 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
}

.btn-black { background: var(--black); color: #fff; }
.btn-black:hover { background: #333; }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: #fff; }

.btn-center { display: flex; justify-content: center; margin-top: 32px; }

/* ─── CATEGORIES ─── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: #111;
  border: 1px solid #f1f1f1;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.cat-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-coming-soon {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #444;
}

.cat-card:hover img { transform: scale(1.05); }
.cat-card:hover .cat-placeholder { transform: scale(1.05); }

.coming-soon-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #555;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cat-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--lime);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
}

/* ─── CAROUSEL ─── */
.carousel-wrap { position: relative; }

.carousel-track-outer { overflow: hidden; }

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}

.product-card {
  flex: 0 0 calc(33.333% - 11px);
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.35s;
}

.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-info { padding: 12px 14px 16px; }

.product-card-brand {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.product-card-name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-card-price {
  margin-top: 6px;
  color: #1a1a1a;
}

.product-card-price,
.product-detail-prijs {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card-price.has-sale,
.product-detail-prijs.has-sale {
  gap: 10px;
}

.price-old {
  color: var(--gray-dark);
  text-decoration: line-through;
  font-size: 0.82em;
  font-weight: 600;
}

.price-current {
  color: #1a1a1a;
  font-weight: 800;
}

.product-card-price .price-current {
  font-size: 0.95rem;
}

.product-detail-prijs .price-old {
  font-size: 1.05rem;
}

.product-detail-prijs .price-current {
  font-size: 1.8rem;
}

.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--gray-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.15s;
}

.carousel-btn:hover { background: var(--black); }
.carousel-btn:hover svg { stroke: #fff; }
.carousel-btn svg { width: 16px; height: 16px; fill: none; stroke: var(--black); stroke-width: 2.5; }
.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  align-items: center;
  min-height: 20px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-mid);
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.carousel-dots span.active { background: var(--black); }

.carousel-counter {
  display: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
  margin-top: 16px;
  text-align: center;
}

/* ─── LIFESTYLE ─── */
.lifestyle {
  padding: 0;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.lifestyle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.18));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.lifestyle-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.btn-white { background: #fff; color: var(--black); border: none; }
.btn-white:hover { background: var(--lime); }

.btn-lime-solid {
  background: var(--lime);
  color: var(--black);
}

.btn-lime-solid:hover {
  background: #d7f25b;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}

/* ─── MERKEN (no carousel, centered) ─── */
.brands-section {
  background: #fff;
  padding: 34px 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}

.brands-marquee {
  overflow: hidden;
  position: relative;
  --brands-gap: 52px;
}

.brands-marquee::before,
.brands-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 44px;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0));
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255,255,255,0));
}

.brands-row {
  width: max-content;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: var(--brands-gap);
  width: max-content;
  animation: brands-marquee 32s linear infinite;
}

.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  filter: grayscale(1);
  opacity: 0.72;
  transition: opacity 0.2s, filter 0.2s;
  cursor: default;
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand-logo:hover { opacity: 1; filter: grayscale(0); }

.brand-logo span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

@keyframes brands-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - (var(--brands-gap) / 2))); }
}

/* ─── TEST RACKETS ─── */
.test-panel {
  background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  color: #fff;
  border-radius: 12px;
  padding: 34px 36px;
  scroll-margin-top: 120px;
}

.test-panel-hero {
  margin-top: -22px;
  position: relative;
  z-index: 3;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
}

.test-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.test-panel-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  background: var(--lime);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.test-panel-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.test-panel-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #d7d7d7;
  max-width: 46ch;
}

.test-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.test-panel-benefits {
  display: grid;
  gap: 12px;
}

.test-benefit {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 18px 20px;
}

.test-benefit-label {
  display: block;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.test-benefit p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #fff;
}

.test-panel-video {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #000;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.test-panel-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vid-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.vid-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 7px;
  transition: background 0.15s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.vid-btn:hover { background: rgba(0,0,0,0.8); }
.vid-btn svg { width: 100%; height: 100%; }
.vid-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px 18px 20px 22px;
  z-index: 3;
  transition: background 0.15s, transform 0.15s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.vid-play.visible { display: flex; }
.vid-pause {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}
.vid-pause.hidden { display: none; }
.vid-play:hover { background: rgba(0,0,0,0.85); transform: translate(-50%, -50%) scale(1.05); }
.vid-play svg { width: 100%; height: 100%; }

/* ─── WELKOM ─── */
.welkom { background: #fff; }

.welkom-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.welkom-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 280px;
}

.welkom-title em {
  font-style: italic;
  font-size: 1rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  display: block;
  text-transform: none;
  margin-bottom: 8px;
  color: var(--gray-dark);
}

.welkom-body p { font-size: 0.9rem; margin-bottom: 12px; color: #333; }

/* ─── USP BAR ─── */
.usp-bar {
  background: #fff;
  border-top: 1px solid var(--gray-mid);
  padding: 32px 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.usp-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.usp-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-icon svg { width: 36px; height: 36px; fill: none; stroke: var(--black); stroke-width: 1.5; }

.usp-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.usp-sub { font-size: 0.72rem; color: var(--gray-dark); }

/* ─── FOOTER ─── */
footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.8;
}

.footer-col a {
  color: #aaa;
  font-size: 0.85rem;
  display: block;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  background: #111;
  padding: 16px 24px;
}

.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.72rem; color: #666; }

.footer-logo img { height: 28px; opacity: 0.5; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.25s;
  border-radius: 1px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV DRAWER ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #111;
  z-index: 99;
  flex-direction: column;
  padding: 8px 0;
  border-top: 1px solid #333;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 24px;
  border-bottom: 1px solid #222;
  transition: color 0.15s;
}
.mobile-nav a:hover { color: var(--lime); }

/* ─── CATEGORIEPAGINA ─── */
.page-hero {
  background: var(--black);
  padding: 48px 0 40px;
  border-bottom: 3px solid var(--lime);
}
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 40px 0;
}

.product-card-link { color: inherit; display: block; }

/* ─── PRODUCT DETAIL ─── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0;
}
.product-detail-img {
  aspect-ratio: 1;
  background: #f8f8f8;
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.product-detail-merk { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-dark); margin-bottom: 8px; }
.product-detail-naam { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.4rem; text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; }
.product-detail-prijs { font-size: 1.8rem; font-weight: 700; margin-bottom: 24px; }
.product-detail-beschrijving { font-size: 0.95rem; line-height: 1.7; color: #444; margin-bottom: 32px; }
.breadcrumb { font-size: 0.8rem; color: var(--gray-dark); margin-bottom: 32px; }
.breadcrumb a { color: var(--gray-dark); }
.breadcrumb a:hover { color: var(--black); }

/* ─── GRID LOADING SKELETON ─── */
.skeleton-card {
  background: #f0f0f0;
  border-radius: 2px;
  aspect-ratio: 1.1;
  animation: shimmer 1.4s infinite linear;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ─── MOBILE BREAKPOINT ─── */
@media (max-width: 768px) {

  /* Header */
  .header-inner { padding: 0 16px; gap: 0; height: 56px; }
  nav { display: none; }
  .search-bar { display: none; }
  .lang-btn { display: none; }
  .hamburger { display: flex; }
  .header-actions { gap: 14px; margin-left: 0; }
  .logo img { height: 32px; }
  .logo-text { font-size: 1.2rem; }
  .mobile-nav { top: 56px; max-height: calc(100vh - 56px); }

  /* Promo bar */
  .promo-bar { font-size: 0.7rem; padding: 6px 12px; }

  /* Hero */
  .hero { min-height: 75vh; align-items: flex-end; }
  .hero-content { padding: 0 20px 36px; }
  .hero-copy { max-width: 100%; padding-left: 0; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.1em; }
  .hero-title { font-size: 2.6rem; line-height: 1; display: inline; }
  .hero-subtitle { font-size: 2.6rem; line-height: 1; display: inline; margin-bottom: 0; }
  .hero-title-wrap { display: block; margin-bottom: 20px; line-height: 1; }
  .btn { padding: 10px 20px; font-size: 0.78rem; }

  /* Sections */
  section { padding: 36px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: 1.4rem; margin-bottom: 20px; }

  /* Categories: 2×2 */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .cat-badge { font-size: 0.85rem; padding: 3px 8px; bottom: 10px; left: 10px; }

  /* Carousel: 1 item per view */
  .product-card { flex: 0 0 100%; }
  .carousel-btn.prev { left: -12px; }
  .carousel-btn.next { right: -12px; }
  .carousel-btn { width: 32px; height: 32px; }
  .carousel-dots { display: none; }
  .carousel-counter { display: block; }

  /* Lifestyle */
  .lifestyle { height: 260px; }
  .lifestyle-title { font-size: 3rem; letter-spacing: 0.1em; }

  /* Brands */
  .brands-section { padding: 28px 0; }
  .brands-marquee::before,
  .brands-marquee::after { width: 28px; }
  .brands-marquee { --brands-gap: 34px; }
  .brands-track {
    animation-duration: 38s;
  }
  .brand-logo span { font-size: 1.05rem; }

  .test-panel {
    padding: 26px 20px;
    scroll-margin-top: 96px;
  }
  .test-panel-hero {
    margin-top: -10px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  }
  .test-panel-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .test-panel-title {
    font-size: 2rem;
  }
  .test-panel-kicker {
    margin-bottom: 12px;
  }
  .test-panel-text,
  .test-benefit p {
    font-size: 0.92rem;
  }
  .test-panel-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .test-panel-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .test-panel-video { aspect-ratio: 3 / 4; }

  /* Welkom: single column */
  .welkom-inner { grid-template-columns: 1fr; gap: 16px; }
  .welkom-title { font-size: 1.8rem; }

  /* USP: 2×2 */
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .usp-bar { padding: 28px 0; }

  /* Footer: adres + openingstijden naast elkaar, tel & mail eronder */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding: 0 20px 28px;
  }
  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }
  footer { padding: 28px 0 0; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Category grid: 2 columns */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Product detail: single column */
  .product-detail { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .product-detail-naam { font-size: 1.8rem; }
}
