/* =========================================
   DRIESSE PRINTERS — Modern Stylesheet 2026
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy: #1a2744;
  --navy-light: #243259;
  --accent: #e8602c;
  --accent-hover: #cf4f20;
  --light-bg: #f7f6f2;
  --mid-gray: #e4e2db;
  --text: #2a2a2a;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-hover: 0 8px 36px rgba(26,39,68,0.18);
  --transition: 0.22s ease;
  --max-width: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p { margin-bottom: 1em; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

/* ---- Layout Helpers ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,96,44,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
  /* Nodig zodat het mobiele dropdown-menu correct positioneert */
  isolation: isolate;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26,39,68,0.12);
}

/* Rij 1: logo + hamburger */
.header-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: auto;
}

/* Rij 2: navigatie */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.4rem 0;
  flex-wrap: wrap;
}
.main-nav a {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--light-bg);
  color: var(--accent);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  margin-left: 0.25rem;
}
.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--white) !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO / SLIDER
   ========================================= */
.hero {
  background: var(--navy);
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,0.98) 0%, rgba(36,50,89,0.85) 60%, transparent 100%);
  z-index: 1;
}

.hero-slides { position: relative; width: 100%; z-index: 2; }

.hero-slide {
  display: none;
  animation: fadeIn 0.6s ease;
}
.hero-slide.active { display: flex; align-items: center; }

@keyframes fadeIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: none; } }

.hero-content {
  padding: 5rem 0;
  max-width: 550px;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,96,44,0.2);
  color: var(--accent);
  border: 1px solid rgba(232,96,44,0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.hero-content h2 span { color: var(--accent); }
.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hero-img-wrap {
  flex: 0 0 420px;
  max-width: 420px;
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  transition: transform 0.6s ease;
}
.hero-slide.active .hero-img-wrap img { transform: translateY(-6px); }

.hero-controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* =========================================
   USP BAR
   ========================================= */
.usp-bar {
  background: var(--light-bg);
  border-bottom: 1px solid var(--mid-gray);
  padding: 1.25rem 0;
}
.usp-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}
.usp-item svg { color: var(--accent); flex-shrink: 0; }

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* =========================================
   PRODUCT GRID
   ========================================= */
.products-section { background: var(--white); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.product-img {
  position: relative;
  background: var(--light-bg);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.5rem;
}
.product-img img {
  height: 160px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,39,68,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay a {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.product-overlay a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.product-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.product-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: auto;
  padding-bottom: 1rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mid-gray);
}
.product-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
}
.btn-cart {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.btn-cart:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.04);
}

/* Category nav */
.cat-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.cat-nav a {
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  border: 1.5px solid var(--mid-gray);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.cat-nav a:hover,
.cat-nav a.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Pagination */
.pagination-wrap { margin-top: 3rem; text-align: center; }
.pagination {
  display: inline-flex;
  gap: 0.5rem;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1.5px solid var(--mid-gray);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
}
.pagination a:hover,
.pagination a.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* =========================================
   FEATURED / SIDEBAR WIDGETS
   ========================================= */
.widgets-section { background: var(--light-bg); }
.widgets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.widget-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.75rem;
  border: 1px solid var(--mid-gray);
}
.widget-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.widget-title a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.widget-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--mid-gray);
}
.widget-product:last-child { border-bottom: none; padding-bottom: 0; }
.widget-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 0.4rem;
  flex-shrink: 0;
}
.widget-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.widget-stars { color: #f5a623; font-size: 0.75rem; margin-bottom: 0.2rem; }
.widget-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.9rem;
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* =========================================
   ORDER / BESTELFORMULIER
   ========================================= */
.order-section { background: var(--light-bg); }
.order-intro {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid var(--mid-gray);
}
.order-intro p { margin-bottom: 0.75rem; }

.order-steps {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.order-step {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.step-num {
  background: var(--navy);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.step-text h4 { font-size: 0.9rem; font-family: 'DM Sans', sans-serif; margin-bottom: 0.2rem; }
.step-text p { font-size: 0.82rem; margin: 0; }

/* Form styles */
.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow);
}
.form-card h3 {
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--mid-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group label span.req { color: var(--accent); }

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.1);
}
.form-control::placeholder { color: #aaa; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231a2744' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea.form-control { resize: vertical; min-height: 120px; }

.captcha-group {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--mid-gray);
  margin-bottom: 1.25rem;
}
.captcha-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  display: block;
}
.captcha-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.captcha-question {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--mid-gray);
  min-width: 140px;
  text-align: center;
}
.captcha-inner input {
  width: 90px;
  text-align: center;
  padding: 0.5rem;
}
.captcha-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-section { background: var(--light-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 2rem;
  color: var(--white);
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-detail svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.contact-detail-text h4 { font-size: 0.8rem; font-family: 'DM Sans'; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-detail-text p, .contact-detail-text a { color: var(--white); font-size: 0.92rem; margin: 0; }

.hours-list { margin-top: 1.5rem; }
.hours-list h4 { font-size: 0.8rem; font-family: 'DM Sans'; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hours-row:last-child { border-bottom: none; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-content p { margin-bottom: 1.25rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat-box {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* =========================================
   VOORWAARDEN PAGE
   ========================================= */
.terms-section { background: var(--white); }
.terms-content { max-width: 800px; }
.terms-content h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}
.terms-content p { margin-bottom: 1rem; }
.terms-highlight {
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
}
.terms-highlight p { margin: 0; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  padding: 4rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img { height: 38px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-hours li:last-child { border-bottom: none; }
.footer-hours li strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* =========================================
   POPUP / MODAL
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem;
  max-width: 460px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-overlay.show .modal-box { transform: scale(1); }
.modal-icon {
  width: 64px;
  height: 64px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #2e7d32;
  font-size: 1.8rem;
}
.modal-box h3 { margin-bottom: 0.75rem; }
.modal-box p { margin-bottom: 1.5rem; }
.modal-close {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--accent); }

/* Honeypot */
.hp-field { display: none !important; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .widgets-grid { grid-template-columns: 1fr 1fr; }
  .widgets-grid .widget-card:last-child { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { max-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--mid-gray);
    padding: 0.75rem 1.5rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0.15rem;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.7rem 0.75rem; width: 100%; font-size: 1rem; }
  .nav-cta { margin-left: 0 !important; margin-top: 0.5rem; width: 100%; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  .header-logo-row { padding-bottom: 0.75rem; }

  .hero { min-height: auto; }
  .hero-slide.active { flex-direction: column; text-align: center; padding: 3rem 0 2rem; }
  .hero-content { max-width: 100%; padding: 0; }
  .hero-img-wrap { max-width: 260px; margin-top: 2rem; }

  .usp-list { gap: 1.5rem; justify-content: flex-start; }

  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .product-img { height: 150px; }

  .widgets-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-content h2 { font-size: 1.8rem; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .order-steps { flex-direction: column; }
}

/* =========================================
   ANCHOR SCROLL OFFSET (sticky header fix)
   ========================================= */
:target {
  scroll-margin-top: 110px;
}

#bestelformulier {
  scroll-margin-top: 110px;
}

/* =========================================
   FOCUS STYLES (toegankelijkheid)
   ========================================= */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* =========================================
   PRINT STYLES
   ========================================= */
@media print {
  .site-header, .hero, .usp-bar, .widgets-section,
  .nav-toggle, .modal-overlay { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { text-decoration: underline; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================
   LOADING STATE
   ========================================= */
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* =========================================
   FORM ERROR STATE
   ========================================= */
.form-control.error {
  border-color: #e8602c;
  box-shadow: 0 0 0 3px rgba(232,96,44,0.15);
}

/* =========================================
   SKIP TO CONTENT (toegankelijkheid)
   ========================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* =========================================
   SMOOTH IMAGE LOADING
   ========================================= */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
}
img[loading="lazy"] {
  opacity: 0;
}
img[loading="lazy"].loaded {
  opacity: 1;
}
