/* Visser Hoogeloon – geïnspireerd op visserhoogeloon.nl (productpagina container) */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --vh-red: #E42C20;
  --vh-red-dark: #c4241a;
  --vh-red-soft: #fdf0ef;
  --vh-dark: #1c1c1c;
  --vh-nav: #2a2a2a;
  --vh-muted: #5c5c5c;
  --vh-bg: #f7f7f7;
  --vh-card: #ffffff;
  --vh-border: #e5e5e5;
  --vh-radius: 4px;
}

html { scrollbar-gutter: stable; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--vh-dark);
  background: #fff;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section, .stripe { padding: 48px 0; }
.section-alt { background: #fff; }

/* Trust strip – beloften zoals op de referentiesite */
.vh-trust-strip {
  background: var(--vh-dark);
  color: #f5f5f5;
  padding: 12px 0;
  font-size: 0.9rem;
  border-bottom: 3px solid var(--vh-red);
}
.vh-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  text-align: center;
}
.vh-trust-inner strong { color: #fff; font-weight: 600; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.header-top {
  background: #1a1a1a;
  border-bottom: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo-img {
  height: 56px;
  max-width: 260px;
  object-fit: contain;
}
.main-nav {
  background: var(--vh-nav);
  width: 100%;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  justify-content: center;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--vh-red);
  color: #fff;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
}

/* Productpagina (home) */
.vh-product {
  background: #fff;
  padding: 40px 0 56px;
}
.vh-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: start;
}
.vh-product-visual {
  text-align: center;
  padding: 32px 20px;
  background: #e8e8e8;
  border: 1px solid #d2d2d2;
  border-radius: var(--vh-radius);
}
.vh-product-visual img {
  max-width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.18));
}
.vh-product-summary h1 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--vh-dark);
  line-height: 1.2;
}
.vh-price-range {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--vh-red);
  margin: 0 0 4px;
}
.vh-price-btw {
  font-size: 0.9rem;
  color: var(--vh-muted);
  margin: 0 0 16px;
}
.vh-usp {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--vh-dark);
  margin: 0 0 24px;
  padding: 12px 16px;
  background: var(--vh-red-soft);
  border-left: 4px solid var(--vh-red);
  border-radius: 0 var(--vh-radius) var(--vh-radius) 0;
}
.vh-field-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--vh-dark);
}
.vh-size-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.vh-size-tab {
  border: 2px solid var(--vh-border);
  background: #fff;
  color: var(--vh-dark);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: var(--vh-radius);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.vh-size-tab:hover {
  border-color: var(--vh-red);
}
.vh-size-tab.is-active {
  border-color: var(--vh-red);
  background: var(--vh-red);
  color: #fff;
}
.vh-waste-select {
  width: 100%;
  max-width: 400px;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: var(--vh-radius);
  margin-bottom: 24px;
  background: #fff;
}
.vh-region-note {
  font-size: 0.9rem;
  color: var(--vh-muted);
  margin: 16px 0 0;
}
.vh-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--vh-radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary {
  background: var(--vh-red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--vh-red-dark);
  color: #fff;
}
.btn-block {
  display: block;
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Voorwaardenblok */
.vh-conditions {
  background: var(--vh-bg);
  padding: 40px 0;
  border-top: 1px solid var(--vh-border);
}
.vh-conditions h2 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}
.vh-conditions ul {
  margin: 0;
  padding-left: 1.25rem;
}
.vh-conditions li {
  margin-bottom: 8px;
  color: var(--vh-muted);
}

/* Overige formaten (home) */
.vh-other-sizes {
  padding: 48px 0;
  background: #fff;
}
.vh-other-sizes h2 {
  text-align: center;
  margin: 0 0 8px;
}
.vh-other-lead {
  text-align: center;
  color: var(--vh-muted);
  margin: 0 0 28px;
}
.vh-format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.vh-format-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--vh-card);
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.vh-format-card:hover {
  border-color: var(--vh-red);
  box-shadow: 0 8px 24px rgba(228, 44, 32, 0.12);
}
.vh-format-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  padding: 12px;
  background: #e8e8e8;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}
.vh-format-card span {
  display: block;
  padding: 12px 16px;
  font-weight: 700;
  text-align: center;
}

/* Prijzenpagina */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--vh-card);
  border: 1px solid var(--vh-border);
  border-radius: var(--vh-radius);
  overflow: hidden;
}
.price-card-visual {
  background: #fafafa;
  padding: 16px;
  text-align: center;
}
.price-card-visual img {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
}
.price-card h3 {
  margin: 0;
  padding: 16px 16px 8px;
  color: var(--vh-red);
  font-size: 1.25rem;
}
.price-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.price-card th,
.price-card td {
  padding: 10px 16px;
  border-top: 1px solid var(--vh-border);
  text-align: left;
}
.price-card .price-cell {
  font-weight: 700;
  color: var(--vh-red);
  text-align: right;
  white-space: nowrap;
}
.price-row { cursor: pointer; }
.price-row:hover { background: var(--vh-red-soft); }
.section-intro { color: var(--vh-muted); max-width: 720px; }
.delivery-info {
  background: var(--vh-red-soft);
  border-left: 4px solid var(--vh-red);
  padding: 12px 16px;
  margin-bottom: 24px;
}

/* Stappen */
.steps-section { background: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.step {
  background: var(--vh-bg);
  padding: 24px;
  border-radius: var(--vh-radius);
  border-top: 4px solid var(--vh-red);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--vh-red);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 12px;
}
.section-title { text-align: center; margin-bottom: 8px; }
.section-lead { text-align: center; color: var(--vh-muted); margin-bottom: 32px; }

/* Footer */
.site-footer {
  background: var(--vh-dark);
  color: #ccc;
  padding: 40px 0 24px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.footer-brand { font-weight: 700; color: #fff; font-size: 1.1rem; }
.site-footer a { color: #f0f0f0; }
.site-footer a:hover { color: var(--vh-red); }
.footer-copy, .footer-meta { font-size: 0.85rem; color: #999; }
.footer-meta a { color: #bbb; }

@media (max-width: 900px) {
  .vh-product-grid { grid-template-columns: 1fr; }
  .vh-product-visual { order: -1; }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-bottom: 12px;
  }
  .nav-links.active { display: flex; }
  .nav-links a { width: 100%; text-align: center; }
}
