/*
Theme Name: Stortslurf Theme
Theme URI: https://www.stort-slurf.nl
Author: STORTSLURF B.V.
Author URI: https://www.stort-slurf.nl
Description: Custom WooCommerce theme voor de Stortslurf® webshop. Bouwvakker Bold design — teal (#00897B), oranje (#F57C00), donker (#1A1A1A).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: Proprietary
Text Domain: stortslurf
*/

/* ============================================================
   DESIGN TOKENS — Bouwvakker Bold
   Primary: Teal #00897B | Accent: Orange #F57C00 | Dark: #1A1A1A
   Fonts: Barlow (headings + body)
   ============================================================ */

:root {
  --brand-teal: #3D8B8B;
  --brand-teal-dark: #2d6e6e;
  --brand-teal-light: #e8f4f4;
  --brand-orange: #F57C00;
  --brand-orange-dark: #E65100;
  --brand-dark: #1B3C40;
  --brand-yellow: #f5a623;
  --brand-yellow-dark: #d4891a;
  --brand-dark-2: #152e31;
  --brand-gray: #6B7280;
  --brand-gray-light: #F3F4F6;
  --brand-white: #FFFFFF;
  --brand-border: #E5E7EB;

  --font-heading: 'Barlow', sans-serif;
  --font-body: 'Barlow', 'Arial', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --transition: 200ms var(--ease-out);
  --text-muted: #6B7280;
  --text-dark: #1B3C40;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--brand-dark);
  background: var(--brand-white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--brand-dark);
}

/* ============================================================
   TOPBAR
   ============================================================ */
.ss-topbar {
  background: var(--brand-dark);
  color: var(--brand-white);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 0;
  font-family: var(--font-body);
}
.ss-topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ss-topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}
.ss-topbar-item svg { width: 14px; height: 14px; color: var(--brand-teal); flex-shrink: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.ss-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-white);
  border-bottom: 1px solid var(--brand-border);
  box-shadow: var(--shadow-sm);
}
.ss-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}
.ss-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.ss-logo img { height: 44px; width: auto; max-width: 180px; object-fit: contain; }
.ss-logo .custom-logo { height: 44px; width: auto; max-width: 180px; object-fit: contain; }
.ss-logo .custom-logo-link { display: flex; align-items: center; }
.ss-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: 0.02em;
  line-height: 1;
}
.ss-logo-text span { color: var(--brand-teal); }

.ss-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.ss-nav a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--brand-dark);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.ss-nav a:hover { color: var(--brand-teal); background: var(--brand-teal-light); }
.ss-nav a.active { color: var(--brand-teal); }

.ss-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  padding: 10px 20px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--brand-teal);
  color: var(--brand-white);
  border-color: var(--brand-teal);
}
.btn-primary:hover { background: var(--brand-teal-dark); border-color: var(--brand-teal-dark); }

.btn-secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-border);
}
.btn-secondary:hover { border-color: var(--brand-teal); color: var(--brand-teal); }

.btn-orange {
  background: var(--brand-orange);
  color: var(--brand-white);
  border-color: var(--brand-orange);
}
.btn-orange:hover { background: var(--brand-orange-dark); border-color: var(--brand-orange-dark); }

.btn-dark {
  background: var(--brand-dark);
  color: var(--brand-white);
  border-color: var(--brand-dark);
}
.btn-dark:hover { background: var(--brand-dark-2); }

.btn-yellow {
  background: var(--brand-yellow);
  color: #1B3C40;
  border-color: var(--brand-yellow);
  font-weight: 800;
}
.btn-yellow:hover { background: var(--brand-yellow-dark); border-color: var(--brand-yellow-dark); color: #1B3C40; }
.btn-yellow:active { transform: scale(0.97); }


.btn-lg { padding: 14px 28px; font-size: 1.0625rem; }
.btn-sm { padding: 7px 14px; font-size: 0.875rem; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ss-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-dark);
}
.ss-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.stort-slurf.nl/wp-content/uploads/2026/05/stortkoker-huren-featured.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.ss-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 600px;
}
.ss-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-teal);
  color: var(--brand-white);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.ss-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--brand-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.ss-hero h1 span { color: var(--brand-teal); }
.ss-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.65;
}
.ss-hero-checks { margin-bottom: 32px; }
.ss-hero-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  margin-bottom: 10px;
}
.ss-hero-check svg { color: var(--brand-teal); flex-shrink: 0; }
.ss-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   USP BAR
   ============================================================ */
.ss-usp-bar {
  display: none;
}
.ss-usp-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.ss-usp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.ss-usp-item svg { width: 18px; height: 18px; opacity: 0.9; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.ss-section { padding: 80px 0; }
.ss-section-sm { padding: 48px 0; }
.ss-section-dark { background: var(--brand-dark); color: var(--brand-white); }
.ss-section-gray { background: var(--brand-gray-light); }
.ss-section-teal { background: var(--brand-teal); color: var(--brand-white); }

.ss-section-header { text-align: center; margin-bottom: 48px; }
.ss-section-header .eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 10px;
}
.ss-section-dark .ss-section-header .eyebrow { color: var(--brand-teal); }
.ss-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.ss-section-dark .ss-section-header h2 { color: var(--brand-white); }
.ss-section-header p {
  font-size: 1.0625rem;
  color: var(--brand-gray);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.ss-section-dark .ss-section-header p { color: rgba(255,255,255,0.7); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.ss-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.ss-product-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.ss-product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.ss-product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ffffff;
}
.ss-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 400ms var(--ease-out);
}
.ss-product-card:hover .ss-product-card-image img { transform: scale(1.04); }
.ss-product-card-body { padding: 20px; }
.ss-product-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-teal);
  background: var(--brand-teal-light);
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.ss-product-standard-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27,60,64,0.75);
  color: rgba(255,255,255,0.9);
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  padding: 5px 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 3;
}
.ss-product-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.ss-product-card-desc {
  font-size: 0.875rem;
  color: var(--brand-gray);
  line-height: 1.5;
  margin-bottom: 16px;
}
.ss-product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ss-product-card-price {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--brand-dark);
}
.ss-product-card-price .excl {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--brand-gray);
  font-family: var(--font-body);
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce .products { margin: 0 !important; padding: 0 !important; }
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important; gap: 24px !important; }
.woocommerce ul.products li.product { margin: 0 !important; float: none !important; width: auto !important; }

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--brand-teal) !important;
  color: var(--brand-white) !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  transition: background var(--transition) !important;
}
.woocommerce .button:hover,
.woocommerce button.button:hover {
  background: var(--brand-teal-dark) !important;
}

.woocommerce .woocommerce-breadcrumb { font-size: 0.875rem; color: var(--brand-gray); margin-bottom: 24px; }
.woocommerce div.product div.images { margin-bottom: 0; }
.woocommerce div.product .price { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--brand-dark); }
.woocommerce div.product .woocommerce-product-details__short-description { font-size: 1rem; color: var(--brand-gray); margin-bottom: 24px; }

/* Cart & Checkout */
.woocommerce table.shop_table { border-collapse: collapse; width: 100%; }
.woocommerce table.shop_table th { background: var(--brand-gray-light); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.05em; padding: 12px 16px; }
.woocommerce table.shop_table td { padding: 16px; border-bottom: 1px solid var(--brand-border); }

/* ============================================================
   FOOTER
   ============================================================ */
.ss-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}
.ss-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ss-footer-brand .ss-logo-text { color: var(--brand-white); font-size: 1.5rem; margin-bottom: 12px; }
.ss-footer-brand p { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.ss-footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-white);
  margin-bottom: 16px;
}
.ss-footer-col ul li { margin-bottom: 8px; }
.ss-footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.ss-footer-col ul li a:hover { color: var(--brand-teal); }
.ss-footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.ss-footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.ss-footer-bottom a:hover { color: var(--brand-teal); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ss-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ss-hero { min-height: 480px; }
  .ss-hero-content { padding: 60px 0; }
  .ss-nav { display: none; }
  .ss-mobile-menu-btn { display: flex !important; }
  .ss-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ss-usp-bar .container { gap: 20px; }
  .ss-topbar .container { gap: 16px; }
  .ss-section { padding: 56px 0; }
  /* Hide desktop-only header actions on mobile */
  .ss-nav-btn-outline { display: none !important; }
  .ss-nav-btn-yellow { display: none !important; }
  .ss-country-btn { display: none !important; }
  /* Mobile header layout: logo | quickbar | actions */
  .ss-header-inner {
    gap: 0;
    justify-content: space-between;
    padding: 10px 0;
  }
  .ss-logo { flex-shrink: 0; }
  .ss-logo-img-wrap { height: 40px; max-width: 130px; }
  .ss-logo-img-wrap img,
  .ss-logo-img-wrap .custom-logo,
  .ss-logo-img-wrap .custom-logo-link img { height: 40px !important; max-height: 40px !important; }
  /* Mobile quick-access bar */
  .ss-mobile-quickbar {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    padding: 0 8px;
  }
  /* Mobile header actions: cart + hamburger only */
  .ss-header-actions {
    gap: 6px;
    flex-shrink: 0;
  }
}
@media (max-width: 480px) {
  .ss-footer-grid { grid-template-columns: 1fr; }
  .ss-hero h1 { font-size: 2.25rem; }
}

/* ============================================================
   MOBILE QUICKBAR (hidden on desktop)
   ============================================================ */
.ss-mobile-quickbar {
  display: none; /* hidden on desktop */
}
.ss-mobile-quickbar-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
  background: var(--brand-gray-light);
  border: 1.5px solid var(--brand-border);
  border-radius: 20px;
  padding: 7px 12px;
  text-decoration: none;
  transition: all 0.18s;
  white-space: nowrap;
}
.ss-mobile-quickbar-btn:hover {
  background: var(--brand-teal-light);
  border-color: var(--brand-teal);
  color: var(--brand-teal);
}
.ss-mobile-quickbar-btn--primary {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: #1B3C40;
}
.ss-mobile-quickbar-btn--primary:hover {
  background: var(--brand-yellow-dark);
  border-color: var(--brand-yellow-dark);
  color: #1B3C40;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.ss-mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--brand-dark);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  color: white;
  transition: background 0.18s;
}
.ss-mobile-menu-btn:hover {
  background: var(--brand-teal);
}
.ss-mobile-menu-btn svg {
  display: block;
}
/* ============================================================
   MOBILE NAV — Olipop-style full-screen slide-in panel
   ============================================================ */

/* Backdrop */
.ss-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 199;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.ss-mobile-backdrop.open {
  display: block;
  opacity: 1;
}

/* Panel */
.ss-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: #1B3C40;
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}
.ss-mobile-nav.open {
  transform: translateX(0);
}

/* Header: logo + close */
.ss-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.ss-mobile-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.ss-mobile-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.ss-mobile-close-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ss-mobile-close-btn:hover {
  background: rgba(255,255,255,0.2);
}

/* Nav links */
.ss-mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}
.ss-mobile-nav-item {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
  position: relative;
}
.ss-mobile-nav-item::after {
  content: '›';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.18s, transform 0.18s;
}
.ss-mobile-nav-item:hover {
  color: #F5A623;
  background: rgba(255,255,255,0.05);
}
.ss-mobile-nav-item:hover::after {
  color: #F5A623;
  transform: translateY(-50%) translateX(3px);
}

/* CTA Buttons */
.ss-mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.ss-mobile-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: #F5A623;
  color: #1B3C40;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s, transform 0.1s;
}
.ss-mobile-cta-primary:hover {
  background: #e8961a;
  transform: scale(0.98);
}
.ss-mobile-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: transparent;
  color: white;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}
.ss-mobile-cta-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

/* Social Icons */
.ss-mobile-nav-social {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px 24px;
  flex-shrink: 0;
}
.ss-mobile-nav-social a {
  color: rgba(255,255,255,0.45);
  transition: color 0.18s;
  display: flex;
  align-items: center;
}
.ss-mobile-nav-social a:hover {
  color: #F5A623;
}

/* Footer logo */
.ss-footer-logo-link {
  display: inline-block;
  margin-bottom: 12px;
}
.ss-footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ============================================================
   CART ICON
   ============================================================ */
.ss-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--brand-dark);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.ss-cart-btn:hover { border-color: var(--brand-teal); color: var(--brand-teal); }
.ss-cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--brand-teal);
  color: var(--brand-white);
  font-size: 0.6875rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.ss-product-single { padding: 48px 0 80px; }
.ss-product-single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .ss-product-single-grid { grid-template-columns: 1fr; gap: 32px; }
}
.ss-product-gallery { position: relative; }
.ss-product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-gray-light);
  aspect-ratio: 1;
  margin-bottom: 12px;
}
.ss-product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.ss-product-info-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.ss-product-info-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 4px;
}
.ss-product-info-price-excl {
  font-size: 0.875rem;
  color: var(--brand-gray);
  margin-bottom: 24px;
}
.ss-product-add-to-cart {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}
.ss-qty-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.ss-qty-btn {
  width: 40px;
  height: 48px;
  background: var(--brand-gray-light);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  transition: background var(--transition);
}
.ss-qty-btn:hover { background: var(--brand-border); }
.ss-qty-input input {
  width: 56px;
  height: 48px;
  border: none;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  outline: none;
}

/* ============================================================
   DEALER GRID
   ============================================================ */
.ss-dealer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.ss-dealer-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: box-shadow var(--transition);
}
.ss-dealer-card:hover { box-shadow: var(--shadow-md); }
.ss-dealer-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.ss-dealer-card p { font-size: 0.875rem; color: var(--brand-gray); line-height: 1.5; }

/* ============================================================
   REVIEWS
   ============================================================ */
.ss-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.ss-review-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.ss-review-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 10px; }
.ss-review-text { font-size: 0.9375rem; color: var(--brand-dark); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.ss-review-author { font-size: 0.875rem; font-weight: 600; color: var(--brand-gray); }

/* ============================================================
   STATS BAR
   ============================================================ */
.ss-stats-bar {
  background: #f3f4f6;
  padding: 48px 0;
}
.ss-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 768px) { .ss-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.ss-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.ss-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.ss-breadcrumb {
  padding: 12px 0;
  font-size: 0.875rem;
  color: var(--brand-gray);
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 32px;
}
.ss-breadcrumb a { color: var(--brand-gray); transition: color var(--transition); }
.ss-breadcrumb a:hover { color: var(--brand-teal); }
.ss-breadcrumb span { margin: 0 6px; }

/* ============================================================
   STEPS GRID
   ============================================================ */
.ss-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .ss-steps-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EXCL. VAT LABEL
   ============================================================ */
.excl-vat, small.excl-vat {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--brand-gray);
  font-family: var(--font-body);
  margin-left: 2px;
}

/* ============================================================
   REVIEW CARD — dark section override
   ============================================================ */
.ss-section-dark .ss-review-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.ss-section-dark .ss-review-text { color: rgba(255,255,255,0.9); }
.ss-section-dark .ss-review-author { color: rgba(255,255,255,0.55); }

/* ============================================================
   WOO SINGLE PRODUCT — add to cart form
   ============================================================ */
.woocommerce div.product form.cart .qty {
  width: 64px !important;
  height: 48px !important;
  border: 1px solid var(--brand-border) !important;
  border-radius: var(--radius-md) !important;
  text-align: center !important;
  font-size: 1rem !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  padding: 0 8px !important;
}
.woocommerce div.product form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 24px !important;
}
.woocommerce div.product form.cart .button {
  flex: 1 !important;
  padding: 14px 24px !important;
  font-size: 1rem !important;
}

/* ============================================================
   PAGE HERO (for page.php)
   ============================================================ */
.ss-page-hero {
  background: var(--brand-dark);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.ss-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-dark) 60%);
  opacity: 0.3;
}
.ss-page-hero .container { position: relative; z-index: 2; }
.ss-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
}
.ss-page-hero-breadcrumb {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.ss-page-hero-breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.ss-page-hero-breadcrumb a:hover { color: var(--brand-teal); }
.ss-page-hero-breadcrumb span { margin: 0 8px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ss-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .ss-contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.ss-contact-card {
  background: var(--brand-gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.ss-contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.ss-contact-form input,
.ss-contact-form textarea,
.ss-contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--brand-dark);
  background: var(--brand-white);
  transition: border-color var(--transition);
  outline: none;
  margin-bottom: 16px;
}
.ss-contact-form input:focus,
.ss-contact-form textarea:focus,
.ss-contact-form select:focus {
  border-color: var(--brand-teal);
}
.ss-contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.ss-contact-form textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   HOMEPAGE — NEW SECTIONS (React 1-op-1 match)
   ============================================================ */

/* ── HERO SPLIT ── */
.ss-hero-split {
  min-height: auto;
  background: var(--brand-dark);
  position: relative;
  overflow: hidden;
}
.ss-hero-split-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.stort-slurf.nl/wp-content/uploads/2021/11/Stortkoker-huren-kopie-1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.ss-hero-split-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,60,64,0.85) 0%, rgba(26,26,26,0.75) 100%);
}
.ss-hero-split-container {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 60px;
}
.ss-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .ss-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .ss-hero-right {
    display: block !important;
    order: -1;
    width: 100%;
  }
  .ss-hero-left {
    order: 1;
    width: 100%;
  }
  .ss-hero-img-wrap {
    max-height: 260px;
    border-radius: 12px;
    overflow: hidden;
  }
  .ss-hero-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center top;
  }
  .ss-hero-price-badge {
    bottom: 10px;
    right: 10px;
  }
}
.ss-hero-left { display: flex; flex-direction: column; }
.ss-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  line-height: 0.95;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.ss-hero-h1 span { color: white; }
.ss-hero-h1 sup { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.ss-hero-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.ss-hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  line-height: 1.6;
}
.ss-hero-subtitle-h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin: 0 0 20px 0;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}
.ss-hero-tagline-h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin: 0 0 20px 0;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}
.ss-hero-checks {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ss-hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
}
.ss-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 0; }
.ss-btn-ghost-white {
  background: rgba(255,255,255,0.12) !important;
  color: white !important;
  border: 2px solid rgba(255,255,255,0.35) !important;
}
.ss-hero-trust {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

/* ── MINI REVIEW STRIP ── */
.ss-mini-review-strip {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}
.ss-mini-review-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.ss-mini-review-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 24px;
  flex: 1;
  min-width: 200px;
}
.ss-mini-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.ss-mini-review-text {
  font-size: 0.8125rem;
  color: #374151;
  font-style: italic;
  margin: 0 0 3px 0;
  line-height: 1.4;
}
.ss-mini-review-author {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 600;
}
.ss-mini-review-divider {
  width: 1px;
  height: 48px;
  background: #e5e7eb;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ss-mini-review-strip .container {
    flex-direction: column;
    gap: 0;
  }
  .ss-mini-review-divider {
    width: 80%;
    height: 1px;
  }
  .ss-mini-review-item {
    padding: 10px 16px;
  }
}
.ss-hero-trust span {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ss-hero-right { position: relative; }
.ss-hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  max-height: 60vh;
}
.ss-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 60vh;
  display: block;
}
.ss-hero-price-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--brand-teal);
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  text-align: center;
}
.ss-hero-price-from { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; font-family: var(--font-heading); margin: 0; }
.ss-hero-price-amount { font-size: 1.5rem; font-weight: 800; font-family: var(--font-heading); margin: 0; }

/* ── BEKEND VAN ── */
.ss-bekend-van {
  padding: 24px 0;
  background: white;
  border-bottom: 1px solid #f3f4f6;
}
.ss-bekend-van-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.ss-bekend-van-inner img { height: 32px; object-fit: contain; }
.ss-section-eyebrow-sm {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  font-family: var(--font-heading);
}

/* ── SECTION HELPERS ── */
.ss-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-teal);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 12px;
}
.ss-eyebrow-teal { color: var(--brand-teal); }
.ss-section-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.ss-section-h2.ss-dark { color: var(--brand-dark); }
.ss-section-h2.ss-white { color: white; }
.ss-section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.ss-all-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-teal);
  font-family: var(--font-heading);
}
.ss-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) { .ss-two-col { grid-template-columns: 1fr; } }

/* ── VOORDELEN ── */
.ss-voordelen-section { background: white; }
.ss-voordelen-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ss-voordelen-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.6;
}
.ss-voordelen-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ss-btn-outline-teal {
  background: transparent !important;
  color: var(--brand-teal) !important;
  border: 2px solid var(--brand-teal) !important;
}
.ss-voordelen-right img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ── TOEPASSINGEN ── */
.ss-toepassingen-section { background: #f9fafb; }
/* Slider wrapper: clips overflow on mobile */
.ss-use-case-slider-wrap {
  overflow: hidden;
  position: relative;
}
/* Desktop: 5 columns — all items in one row */
 .ss-use-case-grid {
   display: flex;
   flex-wrap: nowrap;
   gap: 16px;
   overflow-x: auto;
   scroll-snap-type: x mandatory;
   -webkit-overflow-scrolling: touch;
   scrollbar-width: none;
 }
 .ss-use-case-grid::-webkit-scrollbar { display: none; }
 .ss-use-case-grid .ss-use-case-item {
   flex: 0 0 calc(20% - 13px);
   min-width: calc(20% - 13px);
   scroll-snap-align: start;
 }
.ss-use-case-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 3/4;
  cursor: pointer;
  flex-shrink: 0;
}
.ss-use-case-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.ss-use-case-item:hover img { transform: scale(1.05); }
.ss-use-case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.ss-use-case-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 12px;
  color: white;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.2;
}
/* Tablet: 3 columns visible, slider */
 @media (max-width: 1024px) {
   .ss-use-case-grid .ss-use-case-item {
     flex: 0 0 calc(33.333% - 11px);
     min-width: calc(33.333% - 11px);
   }
 }
/* Mobile: 2 items visible, slider */
 @media (max-width: 640px) {
   .ss-use-case-grid {
     gap: 12px;
     padding-bottom: 12px;
   }
   .ss-use-case-grid .ss-use-case-item,
   .ss-use-case-grid.ss-use-case-slider .ss-use-case-item {
     flex: 0 0 calc(50% - 6px);
     min-width: calc(50% - 6px);
     scroll-snap-align: start;
   }
  .ss-use-case-label {
    font-size: 0.8125rem;
    padding: 10px;
  }
}

/* ── KLANTFOTOS ── */
.ss-klantfotos-section { background: white; }
.ss-customer-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .ss-customer-photos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ss-customer-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
.ss-customer-photo {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.ss-customer-photo.ss-customer-photo-wide {
  grid-column: span 2;
  aspect-ratio: 1/1;
}
@media (max-width: 900px) {
  .ss-customer-photo.ss-customer-photo-wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}
.ss-customer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.ss-customer-photo:hover img { transform: scale(1.03); }

/* ── PRODUCTEN HOME ── */
.ss-products-home-section { background: white; }
.ss-product-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .ss-product-grid-home { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ss-product-grid-home { grid-template-columns: 1fr; } }
.ss-product-card-home {
  background: white;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.ss-product-card-home:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.ss-product-card-link { display: block; text-decoration: none; color: inherit; flex: 1; }
.ss-product-card-img {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ss-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.ss-product-card-home:hover .ss-product-card-img img { transform: scale(1.04); }
.ss-product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #9ca3af;
  font-size: 3rem;
}
.ss-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-teal);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
}
.ss-product-stock {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #dcfce7;
  color: #15803d;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}
.ss-product-card-body { padding: 16px 16px 8px; }
.ss-product-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #111827;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ss-product-card-subtitle { font-size: 0.75rem; color: #6b7280; margin-bottom: 8px; }
.ss-product-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.ss-product-review-count { font-size: 0.7rem; color: #9ca3af; margin-left: 2px; }
.ss-product-bullets { font-size: 0.75rem; color: #6b7280; margin-bottom: 8px; }
.ss-product-price-row { display: flex; align-items: baseline; gap: 4px; }
.ss-product-price { font-size: 1.25rem; font-weight: 800; color: var(--brand-dark); font-family: var(--font-heading); }
.ss-product-price-vat { font-size: 0.75rem; color: #9ca3af; }
.ss-product-card-actions {
  padding: 0 16px 16px;
  display: flex;
  gap: 8px;
}
.ss-product-card-actions .btn { flex: 1; text-align: center; justify-content: center; }
.ss-btn-sm { padding: 8px 12px !important; font-size: 0.875rem !important; }

/* ── DEALER SLIDER ── */
.ss-dealer-slider-section {
  padding: 48px 0;
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  overflow: hidden;
}
.ss-dealer-slider-header { margin-bottom: 24px; }
.ss-dealer-slider-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  text-align: center;
  font-family: var(--font-heading);
  margin: 0;
}
.ss-dealer-track-wrap { overflow: hidden; }
.ss-dealer-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: ss-dealer-scroll 30s linear infinite;
}
.ss-dealer-track:hover { animation-play-state: paused; }
@keyframes ss-dealer-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ss-dealer-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
}
.ss-dealer-logo img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s;
}
.ss-dealer-logo:hover img { filter: grayscale(0); opacity: 1; }

/* ── REVIEWS ── */
.ss-reviews-section { background: white; }
.ss-review-fallback { margin-top: 32px; }

/* ── EUROPA ── */
.ss-europa-section {
  background: var(--brand-dark);
  overflow: hidden;
}
.ss-europa-container { padding-top: 64px; padding-bottom: 64px; }
.ss-europa-left { display: flex; flex-direction: column; }
.ss-europa-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 400px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.ss-europa-desc strong { color: white; }
.ss-europa-countries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-bottom: 32px;
  max-width: none;
}
.ss-europa-country {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ss-europa-country span:first-child { font-size: 1.8rem; line-height: 1; }
.ss-europa-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ss-europa-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ss-europa-stat {
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.ss-europa-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-teal);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}
.ss-europa-stat-label { color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 500; }

/* ── PHOTO STRIPS ── */
.ss-photo-strip-wrap { overflow: hidden; padding-bottom: 12px; }
.ss-photo-strip {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: max-content;
  animation: ss-strip-left 80s linear infinite;
}
.ss-photo-strip-reverse { animation: ss-strip-right 80s linear infinite; }
@keyframes ss-strip-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ss-strip-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.ss-strip-item {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px;
  width: 280px;
  height: 190px;
}
.ss-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── DEALER BANNER ── */
.ss-dealer-banner { background: var(--brand-teal); padding: 56px 0; }
.ss-dealer-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ss-dealer-banner-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.ss-dealer-banner-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
}
.ss-dealer-banner-desc { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 480px; }
.ss-dealer-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ss-btn-ghost-white-sm {
  background: rgba(255,255,255,0.15) !important;
  color: white !important;
  border-color: rgba(255,255,255,0.3) !important;
}

/* ── CTA ── */
.ss-cta-section { background: var(--brand-dark); }
.ss-cta-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.ss-cta-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.ss-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── ANIMATIONS ── */

.animate-fade-up { opacity: 1; transform: none; animation: none; }

/* ── SIDE CART ────────────────────────────────────────────── */
#ss-cart-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#ss-cart-overlay.active { opacity: 1; pointer-events: all; }

#ss-side-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: white;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
}
#ss-side-cart.open { transform: translateX(0); }

.ss-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
}
.ss-cart-header h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.ss-cart-count-badge {
  background: var(--brand-teal);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  font-family: var(--font-body);
}
#ss-cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  color: #6b7280;
  transition: background 0.15s, color 0.15s;
}
#ss-cart-close:hover { background: #f3f4f6; color: var(--brand-dark); }

.ss-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.ss-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  padding: 48px 24px;
  text-align: center;
  color: #9ca3af;
}
.ss-cart-empty p { font-size: 1rem; color: #6b7280; }

.ss-cart-items { padding: 8px 0; }
.ss-cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #f9fafb;
}
.ss-cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #f3f4f6;
}
.ss-cart-item-info { flex: 1; min-width: 0; }
.ss-cart-item-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  text-transform: uppercase;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ss-cart-item-qty { font-size: 0.75rem; color: #9ca3af; margin-bottom: 2px; }
.ss-cart-item-price { font-size: 0.9375rem; font-weight: 700; color: var(--brand-dark); }
.ss-cart-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  color: #d1d5db;
  flex-shrink: 0;
  transition: color 0.15s, background 0.15s;
}
.ss-cart-remove:hover { color: #ef4444; background: #fef2f2; }

.ss-cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #f3f4f6;
  flex-shrink: 0;
}
.ss-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.ss-cart-shipping-note {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 16px;
}
.ss-cart-checkout-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 1rem !important;
  padding: 14px !important;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── REVEAL FIX — ensure sections are visible without JS ── */
/* Fallback: if JS hasn't run yet, show content */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── SHOP / PRODUCT OVERVIEW PAGE ────────────────────────── */
.ss-shop-hero {
  background: var(--brand-dark);
  padding: 32px 0 28px;
  position: relative;
  overflow: hidden;
}
.ss-shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(61,139,139,0.15) 0%, transparent 70%);
}
.ss-shop-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .ss-shop-hero-inner { grid-template-columns: 1fr; }
  .ss-shop-hero-right { display: none; }
}
@media (max-width: 768px) {
  .ss-shop-filters {
    position: static !important; /* Disable sticky filter on mobile */
    top: auto !important;
  }
}
.ss-shop-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}
.ss-shop-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  margin-bottom: 14px;
  max-width: 500px;
}
.ss-shop-hero-usps {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
}
.ss-shop-hero-usps span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Filter tabs */
.ss-shop-filters {
  background: white;
  border-bottom: 1px solid #f3f4f6;
  padding: 16px 0;
  position: sticky;
  top: 72px;
  z-index: 50;
}
.ss-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ss-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #374151;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
}
.ss-filter-tab:hover { border-color: var(--brand-teal); color: var(--brand-teal); }
.ss-filter-tab.active {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: white;
}
.ss-filter-count {
  background: rgba(0,0,0,0.12);
  color: inherit;
  font-size: 0.75rem;
  padding: 1px 7px;
  border-radius: 100px;
}
.ss-filter-tab.active .ss-filter-count { background: rgba(255,255,255,0.2); }

/* Shop grid */
.ss-shop-section { padding-top: 48px; padding-bottom: 48px; }
.ss-shop-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .ss-shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ss-shop-grid { grid-template-columns: 1fr; } }

/* Product card enhancements */
.ss-product-card-image-link { display: block; text-decoration: none; }
.ss-product-card-image { position: relative; overflow: hidden; }
.ss-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.ss-badge-bestseller { background: var(--brand-teal); color: white; }
.ss-badge-xl { background: #f59e0b; color: white; }
.ss-product-stock-label {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ss-product-img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 400ms var(--ease-out); }
.ss-product-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  font-size: 3rem;
}
.ss-product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.ss-stars { display: flex; gap: 2px; }
.ss-rating-text { font-size: 0.75rem; color: #6b7280; }
.ss-product-card-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 10px;
  margin-top: -4px;
}
.ss-product-card-bullets {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ss-product-card-bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: #374151;
}
.ss-product-card-price-block { margin-bottom: 16px; }
.ss-product-price-incl {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--brand-dark);
}
.ss-product-price-excl {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-top: 2px;
}
.ss-product-card-actions {
  display: flex;
  gap: 8px;
}
.ss-product-view-btn {
  flex: 1;
  text-align: center;
  border-color: var(--brand-dark) !important;
  color: var(--brand-dark) !important;
}
.ss-product-view-btn:hover { background: var(--brand-dark) !important; color: white !important; }

/* Verzending bar */
.ss-verzending-bar {
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  padding: 24px 0;
}
.ss-verzending-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 640px) { .ss-verzending-grid { grid-template-columns: 1fr; } }
.ss-verzending-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-dark);
}
.ss-verzending-item svg { flex-shrink: 0; color: var(--brand-teal); }
.ss-verzending-item strong { display: block; font-weight: 700; font-size: 0.9375rem; }
.ss-verzending-item span { font-size: 0.8125rem; color: #6b7280; }

/* Dealer banner */
.ss-dealer-banner-section { background: var(--brand-dark); padding: 56px 0; }
.ss-dealer-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ss-dealer-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
}
.ss-dealer-banner-sub { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* FAQ Teaser */
.ss-faq-teaser-section { background: white; padding: 56px 0; border-top: 1px solid #f3f4f6; }
.ss-faq-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ss-faq-teaser-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.ss-faq-teaser-sub { color: #6b7280; }
.ss-faq-teaser-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── SINGLE PRODUCT PAGE ─────────────────────────────────── */
.ss-breadcrumb-bar {
  background: transparent;
  border-bottom: none;
  padding: 6px 0 4px;
}
.ss-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: #6b7280;
}
.ss-breadcrumb a { color: #6b7280; text-decoration: none; }
.ss-breadcrumb a:hover { color: var(--brand-teal); }
.ss-breadcrumb span { color: var(--brand-dark); font-weight: 600; }

.ss-product-single-section { padding: 0 0 60px; }
.ss-product-single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .ss-product-single-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Gallery */
.ss-product-gallery { position: relative; }
.ss-product-gallery-main {
  border-radius: 16px;
  overflow: hidden;
  background: #f9fafb;
  aspect-ratio: 1;
  margin-bottom: 12px;
}
.ss-product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ss-product-gallery-main:hover img { transform: scale(1.03); }
.ss-product-gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-top: 8px;
}
.ss-product-gallery-thumbs::-webkit-scrollbar { display: none; }
.ss-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: #f9fafb;
  transition: border-color 0.2s;
}
.ss-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ss-thumb.active, .ss-thumb:hover { border-color: var(--brand-teal); }
.ss-product-trust-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.ss-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Product info */
.ss-product-info-badge {
  display: inline-flex;
  align-items: center;
  background: var(--brand-teal);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.ss-product-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}
.ss-product-info-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 12px;
}
.ss-product-info-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ss-rating-score { font-weight: 700; color: var(--brand-dark); font-size: 0.9375rem; }
.ss-rating-count { color: #6b7280; font-size: 0.875rem; }
.ss-rating-link { color: var(--brand-teal); font-size: 0.875rem; text-decoration: none; }
.ss-rating-link:hover { text-decoration: underline; }

/* Price block */
.ss-product-price-block {
  background: #f9fafb;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.ss-product-price-main {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}
.ss-product-price-sub {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 4px;
}
.ss-product-price-meters {
  font-size: 0.8125rem;
  color: var(--brand-teal);
  font-weight: 600;
  margin-top: 6px;
}

/* Qty calculator */
.ss-qty-calculator {
  margin-bottom: 20px;
}
.ss-qty-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.ss-qty-row { overflow: visible !important;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ss-qty-stepper {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.ss-qty-btn {
  width: 40px;
  height: 40px;
  background: #f9fafb;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--brand-dark);
  transition: background 0.15s;
}
.ss-qty-btn:hover { background: #f3f4f6; }
.ss-qty-field {
  width: 56px;
  height: 40px;
  border: none;
  border-left: 2px solid #e5e7eb;
  border-right: 2px solid #e5e7eb;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  outline: none;
}
.ss-qty-meters-display {
  font-size: 0.9375rem;
  color: #6b7280;
}
.ss-qty-meters-display span { font-weight: 700; color: var(--brand-teal); }

/* Completeer je set */
.ss-completeer-set {
  margin-bottom: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  overflow: hidden;
}
.ss-completeer-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-dark);
  margin-bottom: 12px;
}
.ss-completeer-items { display: flex; flex-direction: column; gap: 8px; }
.ss-completeer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.ss-completeer-item:hover { background: #f9fafb; }
.ss-completeer-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--brand-teal); cursor: pointer; }
.ss-completeer-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  background: #f3f4f6;
  flex-shrink: 0;
}
.ss-completeer-img img { width: 100%; height: 100%; object-fit: cover; }
.ss-completeer-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.ss-completeer-name { font-size: 0.875rem; font-weight: 600; color: var(--brand-dark); }
.ss-completeer-price { font-size: 0.8125rem; color: var(--brand-teal); font-weight: 600; }

/* ATC row */
.ss-product-atc-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.ss-atc-btn {
  width: 100%;
  font-size: 1.0625rem;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ss-atc-total {
  font-size: 0.875rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ss-atc-total strong { color: var(--brand-dark); font-size: 1rem; }
.ss-atc-total-incl { color: #9ca3af; font-size: 0.8125rem; }

/* Shipping info */
.ss-product-shipping-info {
  background: rgba(61,139,139,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ss-shipping-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--brand-teal);
  font-weight: 600;
}

/* Dealer box */
.ss-product-dealer-box {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  flex-wrap: wrap;
}
.ss-product-dealer-box > svg { color: var(--brand-teal); flex-shrink: 0; }
.ss-product-dealer-box > div { flex: 1; }
.ss-product-dealer-box strong { display: block; font-size: 0.9375rem; color: var(--brand-dark); }
.ss-product-dealer-box span { font-size: 0.8125rem; color: #6b7280; }

/* Tabs */
.ss-product-tabs-section { margin-bottom: 64px; }
.ss-product-tabs-nav {
  display: flex;
  border-bottom: 2px solid #e5e7eb;
  overflow-x: auto;
  gap: 0;
  margin-bottom: 0;
}
.ss-tab-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.ss-tab-btn:hover { color: var(--brand-dark); }
.ss-tab-btn.active { color: var(--brand-dark); border-bottom-color: var(--brand-teal); }
.ss-tab-content { display: none; }
.ss-tab-content.active { display: block; }
.ss-tab-body { padding: 32px 0; }

/* Bullets list */
.ss-product-bullets-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 640px) { .ss-product-bullets-list { grid-template-columns: 1fr; } }
.ss-product-bullets-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: #374151;
}

/* Long description */
.ss-product-long-desc {
  font-size: 1rem;
  color: #1f2937;
  line-height: 1.75;
  margin-bottom: 24px;
}
.ss-product-desc-heading {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-dark);
  margin-bottom: 12px;
  margin-top: 0;
}
.ss-product-long-desc p {
  margin-bottom: 1em;
}
.ss-product-long-desc p:last-child {
  margin-bottom: 0;
}
.ss-product-long-desc ul,
.ss-product-long-desc ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.ss-product-long-desc ul li,
.ss-product-long-desc ol li {
  margin-bottom: 0.4em;
  line-height: 1.75;
}
.ss-product-long-desc h2,
.ss-product-long-desc h3,
.ss-product-long-desc h4 {
  font-weight: 700;
  margin-top: 1.25em;
  margin-bottom: 0.5em;
  color: var(--brand-dark);
}
.ss-product-long-desc strong {
  font-weight: 700;
  color: var(--brand-dark);
}

/* Includes grid */
.ss-product-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 640px) { .ss-product-includes-grid { grid-template-columns: 1fr; } }
.ss-includes-col h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ss-includes-col h4 svg {
  flex-shrink: 0;
  position: relative;
  top: 0;
}
.ss-includes-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.ss-includes-col li { display: flex; align-items: center !important; gap: 8px; font-size: 0.875rem; color: #374151; }
.ss-includes-col li svg { flex-shrink: 0; }

/* Specs table */
.ss-specs-table { width: 100%; border-collapse: collapse; }
.ss-specs-table tr:nth-child(even) { background: #f9fafb; }
.ss-specs-table th, .ss-specs-table td { padding: 10px 16px; text-align: left; font-size: 0.9375rem; border-bottom: 1px solid #f3f4f6; }
.ss-specs-table th { font-weight: 600; color: #6b7280; width: 40%; }
.ss-specs-table td { color: var(--brand-dark); font-weight: 500; }

/* Shipping tab */
.ss-shipping-tab { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 640px) { .ss-shipping-tab { grid-template-columns: 1fr; } }
.ss-shipping-block h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 12px;
}
.ss-shipping-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.ss-shipping-block li { font-size: 0.9375rem; color: #4b5563; padding-left: 16px; position: relative; }
.ss-shipping-block li::before { content: '•'; position: absolute; left: 0; color: var(--brand-teal); }

/* YouTube embed */
.ss-youtube-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
}
.ss-youtube-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Reviews section */
.ss-product-reviews-section {
  margin-bottom: 64px;
  padding-top: 48px;
  border-top: 1px solid #f3f4f6;
}

/* FAQ section */
.ss-product-faq-section {
  margin-bottom: 64px;
  padding-top: 48px;
  border-top: 1px solid #f3f4f6;
}
.ss-product-faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.ss-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
@media (max-width: 768px) { .ss-faq-grid { grid-template-columns: 1fr; } }
.ss-faq-item {
  border-bottom: 1px solid #f3f4f6;
}
.ss-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-dark);
  cursor: pointer;
  transition: color 0.15s;
}
.ss-faq-question:hover { color: var(--brand-teal); }
.ss-faq-chevron { flex-shrink: 0; transition: transform 0.25s; }
.ss-faq-item.open .ss-faq-chevron { transform: rotate(180deg); }
.ss-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}
.ss-faq-answer p {
  padding: 0 0 16px;
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

/* Related products */
.ss-product-related-section { padding-top: 48px; border-top: 1px solid #f3f4f6; }
.ss-product-related-section h2 { margin-bottom: 24px; }
.ss-related-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .ss-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ss-related-grid { grid-template-columns: 1fr; } }

/* ── SIDE CART DRAWER ──────────────────────────────────────── */
#ss-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#ss-cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
#ss-side-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
#ss-side-cart.open {
  transform: translateX(0);
}
.ss-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
}
.ss-cart-header h2 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.ss-cart-count-badge {
  background: var(--brand-teal);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#ss-cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
#ss-cart-close:hover { background: #f3f4f6; color: var(--brand-dark); }
.ss-cart-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.ss-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 24px;
  text-align: center;
  flex: 1;
}
.ss-cart-empty p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}
.ss-cart-items {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ss-cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.ss-cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #f9fafb;
  flex-shrink: 0;
}
.ss-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ss-cart-item-info {
  flex: 1;
  min-width: 0;
}
.ss-cart-item-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 0 0 2px;
  line-height: 1.3;
}
.ss-cart-item-subtitle {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0 0 8px;
}
.ss-cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ss-cart-qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}
.ss-cart-qty-btn {
  width: 28px;
  height: 28px;
  background: #f9fafb;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--brand-dark);
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-cart-qty-btn:hover { background: #f3f4f6; }
.ss-cart-qty-val {
  width: 32px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-dark);
  border-left: 1.5px solid #e5e7eb;
  border-right: 1.5px solid #e5e7eb;
  padding: 4px 0;
}
.ss-cart-item-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0;
}
.ss-cart-remove {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s;
}
.ss-cart-remove:hover { color: #ef4444; }

/* Add-on slider */
.ss-cart-addons {
  padding: 16px 24px;
  border-top: 1px solid #f3f4f6;
  background: #fafafa;
}
.ss-cart-addons-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}
.ss-cart-addons-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.ss-cart-addons-slider::-webkit-scrollbar { height: 4px; }
.ss-cart-addons-slider::-webkit-scrollbar-track { background: #f3f4f6; }
.ss-cart-addons-slider::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }
.ss-cart-addon-card {
  flex-shrink: 0;
  width: 120px;
  background: white;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.ss-cart-addon-img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: #f9fafb;
}
.ss-cart-addon-img img { width: 100%; height: 100%; object-fit: cover; }
.ss-cart-addon-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 0;
  line-height: 1.3;
}
.ss-cart-addon-price {
  font-size: 0.8125rem;
  color: var(--brand-teal);
  font-weight: 700;
  margin: 0;
}
.ss-cart-addon-card .btn {
  font-size: 0.6875rem;
  padding: 4px 8px;
  width: 100%;
}

/* Cart footer */
.ss-cart-footer {
  padding: 16px 24px;
  border-top: 1px solid #f3f4f6;
  background: white;
  flex-shrink: 0;
}
.ss-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.ss-cart-shipping-note {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0 0 12px;
  text-align: center;
}
.ss-cart-checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 15px 20px;
  background: var(--brand-yellow);
  color: var(--brand-dark) !important;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-decoration: none;
  margin-bottom: 10px;
}
.ss-cart-checkout-btn:hover {
  background: #f5c400;
  color: var(--brand-dark) !important;
}
.ss-cart-checkout-btn:active {
  transform: scale(0.98);
}
/* Subtotal incl BTW line */
.ss-cart-subtotal-incl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 12px;
}
/* BTW note in subtotal */
.ss-cart-btw-note {
  font-size: 0.7rem;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 4px;
}
/* Dealer pickup note */
.ss-cart-dealer-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  justify-content: center;
  margin-top: 2px;
}
.ss-cart-dealer-note a {
  color: var(--brand-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ss-cart-dealer-note svg {
  flex-shrink: 0;
  color: #9ca3af;
}

/* ── CART PAGE ─────────────────────────────────────────────── */
.ss-cart-page { background: #f9fafb; min-height: 60vh; }
.ss-cart-page-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 24px;
  text-align: center;
}
.ss-cart-page-empty h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
}
.ss-cart-page-empty p { color: #6b7280; margin: 0; }

.ss-cart-page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .ss-cart-page-grid { grid-template-columns: 1fr; }
}

.ss-cart-page-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin: 0 0 24px;
}

.ss-cart-page-item {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  padding: 20px;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.ss-cart-page-item-img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #f9fafb;
  flex-shrink: 0;
}
.ss-cart-page-item-img img { width: 100%; height: 100%; object-fit: cover; }
.ss-cart-page-item-body { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.ss-cart-page-item-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin: 0;
}
.ss-cart-page-item-subtitle { font-size: 0.875rem; color: #6b7280; margin: 2px 0 0; }
.ss-cart-page-item-unit-price { font-size: 0.8125rem; color: #9ca3af; margin: 4px 0 0; }
.ss-cart-page-item-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ss-cart-page-qty {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.ss-cart-page-qty-btn {
  width: 32px;
  height: 32px;
  background: #f9fafb;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s;
}
.ss-cart-page-qty-btn:hover { background: #f3f4f6; }
.ss-cart-page-qty-val {
  width: 40px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 900;
  color: var(--brand-dark);
  border-left: 2px solid #e5e7eb;
  border-right: 2px solid #e5e7eb;
  padding: 4px 0;
}
.ss-cart-page-item-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--brand-dark);
  margin-left: auto;
}
.ss-cart-page-remove {
  color: #9ca3af;
  transition: color 0.15s;
  display: flex;
  align-items: center;
}
.ss-cart-page-remove:hover { color: #ef4444; }
.ss-cart-page-continue { margin-top: 16px; }
.ss-cart-page-continue .btn-outline {
  border: 2px solid var(--brand-dark);
  color: var(--brand-dark);
  background: transparent;
  padding: 10px 24px;
  font-size: 0.9375rem;
}
.ss-cart-page-continue .btn-outline:hover { background: var(--brand-dark); color: white; }

/* Summary box */
.ss-cart-page-summary-box {
  background: white;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 100px;
}
.ss-cart-page-summary-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin: 0 0 20px;
}
.ss-cart-page-summary-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.ss-cart-page-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
  color: #4b5563;
}
.ss-cart-page-summary-row span:last-child { font-weight: 600; color: var(--brand-dark); }
.ss-cart-page-summary-row small { font-size: 0.75rem; color: #9ca3af; font-weight: 400; }
.ss-cart-page-summary-total {
  border-top: 1px solid #f3f4f6;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1rem;
}
.ss-cart-page-total-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  color: var(--brand-dark) !important;
}
.ss-cart-page-checkout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  padding: 14px;
  margin-bottom: 16px;
}
.ss-cart-page-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ss-cart-page-trust span { font-size: 0.8125rem; color: #6b7280; }

/* ── INNER PAGES SHARED ───────────────────────────────────── */
.ss-page-header-sub { color: rgba(255,255,255,0.7); font-size: 1rem; margin-top: 8px; }
.ss-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .ss-two-col { grid-template-columns: 1fr; } }
.ss-two-col-text h2 { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 900; text-transform: uppercase; color: var(--brand-dark); margin: 8px 0 16px; }
.ss-two-col-text p { color: #4b5563; line-height: 1.75; margin-bottom: 12px; }
.ss-check-list { list-style: none; padding: 0; margin: 16px 0; display: flex; flex-direction: column; gap: 10px; }
.ss-check-list li { color: #374151; font-size: 0.9375rem; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.ss-check-list li::before { content: ''; display: inline-flex; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%232d7a6e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: contain; }
.ss-video-thumb-lg { position: relative; border-radius: 12px; overflow: hidden; }
.ss-video-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; background: rgba(0,0,0,0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.ss-video-thumb-lg:hover .ss-video-play-btn { background: var(--brand-teal); }

/* Steps grid */
.ss-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 900px) { .ss-steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .ss-steps-grid { grid-template-columns: 1fr; } }
.ss-step-card { background: white; border-radius: 12px; padding: 28px 20px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.ss-step-num { width: 48px; height: 48px; background: var(--brand-teal); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 900; margin: 0 auto 16px; }
.ss-step-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 900; text-transform: uppercase; color: var(--brand-dark); margin: 0 0 8px; }
.ss-step-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.6; margin: 0; }

/* Specs table */
.ss-specs-table-wrap { max-width: 600px; margin: 40px auto 0; }
.ss-specs-table { width: 100%; border-collapse: collapse; }
.ss-specs-table tr:nth-child(even) { background: #f9fafb; }
.ss-specs-table td { padding: 12px 16px; font-size: 0.9375rem; color: #374151; border-bottom: 1px solid #f3f4f6; }
.ss-specs-table td:first-child { font-weight: 600; color: var(--brand-dark); width: 50%; }

/* Use cases grid */
.ss-use-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 768px) { .ss-use-cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ss-use-cases-grid { grid-template-columns: 1fr; } }
.ss-use-case-card { border-radius: 12px; overflow: hidden; background: white; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.ss-use-case-img { aspect-ratio: 4/3; overflow: hidden; }
.ss-use-case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ss-use-case-card:hover .ss-use-case-img img { transform: scale(1.05); }
.ss-use-case-body { padding: 16px; }
.ss-use-case-body h3 { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 900; text-transform: uppercase; color: var(--brand-dark); margin: 0 0 6px; }
.ss-use-case-body p { font-size: 0.8125rem; color: #6b7280; margin: 0; line-height: 1.5; }

/* Values grid */
.ss-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 768px) { .ss-values-grid { grid-template-columns: repeat(2, 1fr); } }
.ss-value-card { background: white; border-radius: 12px; padding: 28px 20px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.ss-value-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.ss-value-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 900; text-transform: uppercase; color: var(--brand-dark); margin: 0 0 8px; }
.ss-value-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.6; margin: 0; }

/* FAQ page */
.ss-faq-page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
@media (max-width: 768px) { .ss-faq-page-layout { grid-template-columns: 1fr; } }
.ss-faq-sidebar-box { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); margin-bottom: 16px; position: sticky; top: 100px; }
.ss-faq-sidebar-box h3 { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 900; text-transform: uppercase; color: var(--brand-dark); margin: 0 0 16px; }
.ss-faq-cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.ss-faq-cat-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border: none; background: transparent; border-radius: 8px; cursor: pointer; font-size: 0.875rem; color: #4b5563; font-weight: 500; transition: all 0.15s; text-align: left; }
.ss-faq-cat-btn:hover, .ss-faq-cat-btn.active { background: var(--brand-teal); color: white; }
.ss-faq-cat-count { background: rgba(0,0,0,0.1); border-radius: 20px; padding: 2px 8px; font-size: 0.75rem; font-weight: 700; }
.ss-faq-cat-btn.active .ss-faq-cat-count { background: rgba(255,255,255,0.25); }
.ss-faq-sidebar-contact { background: var(--brand-dark); border-radius: 12px; padding: 20px; color: white; }
.ss-faq-sidebar-contact h4 { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 900; text-transform: uppercase; margin: 0 0 6px; }
.ss-faq-sidebar-contact p { font-size: 0.8125rem; color: rgba(255,255,255,0.7); margin: 0 0 12px; }
.ss-faq-sidebar-contact .btn { display: block; text-align: center; margin-bottom: 8px; font-size: 0.8125rem; padding: 8px 16px; }
.ss-faq-search-wrap { position: relative; margin-bottom: 20px; }
.ss-faq-search { width: 100%; padding: 12px 16px 12px 44px; border: 2px solid #e5e7eb; border-radius: 10px; font-size: 0.9375rem; outline: none; transition: border-color 0.15s; }
.ss-faq-search:focus { border-color: var(--brand-teal); }
.ss-faq-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #9ca3af; pointer-events: none; }
 .ss-faq-page .ss-faq-item { background: white; border-radius: 10px; border: 1.5px solid #e5e7eb; margin-bottom: 8px; overflow: hidden; transition: border-color 0.15s; }
 .ss-faq-page .ss-faq-item.open { border-color: var(--brand-teal); box-shadow: 0 0 0 1px var(--brand-teal); }
 .ss-faq-page .ss-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border: none; background: transparent; cursor: pointer; text-align: left; gap: 12px; }
 .ss-faq-page .ss-faq-q-inner { display: flex; align-items: flex-start; gap: 12px; }
 .ss-faq-page .ss-faq-num { width: 24px; height: 24px; border-radius: 50%; background: #e5e7eb; color: #9ca3af; font-size: 0.75rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.15s; }
 .ss-faq-page .ss-faq-item.open .ss-faq-num { background: var(--brand-teal); color: white; }
 .ss-faq-page .ss-faq-q-text { font-weight: 700; color: #111827; font-size: 0.9375rem; line-height: 1.4; }
 .ss-faq-page .ss-faq-chevron { color: #9ca3af; flex-shrink: 0; transition: transform 0.2s, color 0.15s; }
 .ss-faq-page .ss-faq-item.open .ss-faq-chevron { transform: rotate(180deg); color: var(--brand-teal); }
 /* FAQ page answer: use max-height animation for smooth expand/collapse */
 .ss-faq-page .ss-faq-answer { display: block; max-height: 0; overflow: hidden; padding: 0 20px 0; padding-left: calc(20px + 24px + 12px); font-size: 0.9375rem; color: #4b5563; line-height: 1.7; border-top: 0 solid #f3f4f6; transition: max-height 0.3s ease, padding 0.3s ease, border-top-width 0.3s ease; }
 .ss-faq-page .ss-faq-item.open .ss-faq-answer { max-height: 600px; padding-bottom: 18px; border-top-width: 1px; }
.ss-faq-no-results { text-align: center; padding: 48px 24px; background: white; border-radius: 12px; }
.ss-faq-no-results p { color: #6b7280; margin: 8px 0 0; }
.ss-faq-cta { background: var(--brand-dark); border-radius: 16px; padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.ss-faq-cta h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 900; text-transform: uppercase; color: white; margin: 0 0 6px; }
.ss-faq-cta p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin: 0; }
.ss-faq-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.3); color: white; background: transparent; padding: 10px 20px; border-radius: 8px; font-family: var(--font-heading); font-size: 0.875rem; font-weight: 900; text-transform: uppercase; text-decoration: none; transition: background 0.15s; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* Video lightbox */
.ss-video-lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; padding: 16px; }
.ss-video-lightbox-inner { position: relative; width: 100%; max-width: 900px; }
.ss-video-lightbox-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: rgba(255,255,255,0.8); font-size: 1.5rem; cursor: pointer; padding: 8px; }
.ss-video-lightbox-frame { aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; }
.ss-video-lightbox-frame iframe { width: 100%; height: 100%; border: none; }
.ss-video-lightbox-title { color: white; font-weight: 700; text-align: center; margin-top: 16px; font-size: 0.9375rem; }
.ss-video-lightbox-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 12px; }
.ss-video-lightbox-nav button { background: rgba(255,255,255,0.1); border: none; color: white; padding: 8px 16px; border-radius: 8px; cursor: pointer; font-size: 0.875rem; }
.ss-video-lightbox-nav button:hover { background: rgba(255,255,255,0.2); }
.ss-video-lightbox-nav span { color: rgba(255,255,255,0.5); font-size: 0.8125rem; }

/* Video sections */
.ss-video-featured { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; margin-bottom: 16px; }
.ss-video-featured img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ss-video-featured-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); }
.ss-video-featured-info h3 { color: white; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 900; margin: 8px 0 0; }
.ss-video-badge { background: var(--brand-teal); color: white; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
.ss-video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 768px) { .ss-video-grid { grid-template-columns: repeat(2, 1fr); } }
.ss-video-thumb { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; }
.ss-video-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ss-video-play-sm { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 32px; height: 32px; background: rgba(0,0,0,0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ss-video-thumb-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: white; font-size: 0.75rem; font-weight: 700; line-height: 1.3; }

/* Customer photos */
.ss-customer-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 32px; }
@media (max-width: 768px) { .ss-customer-photo-grid { grid-template-columns: repeat(2, 1fr); } }
.ss-customer-photo-item { aspect-ratio: 1/1; overflow: hidden; border-radius: 12px; }
.ss-customer-photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ss-customer-photo-item:hover img { transform: scale(1.05); }

/* Reviews */
.ss-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
@media (max-width: 768px) { .ss-reviews-grid { grid-template-columns: 1fr; } }
.ss-review-card { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.ss-review-stars { color: #f59e0b; font-size: 1.125rem; margin-bottom: 12px; }
.ss-review-text { font-size: 0.9375rem; color: #374151; line-height: 1.7; margin: 0 0 16px; font-style: italic; }
.ss-review-author { display: flex; justify-content: space-between; align-items: center; }
.ss-review-name { font-weight: 700; color: var(--brand-dark); font-size: 0.875rem; }
.ss-review-date { font-size: 0.8125rem; color: #9ca3af; }

/* Contact page */
.ss-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .ss-contact-grid { grid-template-columns: 1fr; } }
.ss-contact-info h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; text-transform: uppercase; color: var(--brand-dark); margin: 0 0 24px; }
.ss-contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.ss-contact-method { display: flex; gap: 16px; align-items: flex-start; }
.ss-contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.ss-contact-method strong { display: block; font-weight: 700; color: var(--brand-dark); margin-bottom: 2px; }
.ss-contact-method p { font-size: 0.875rem; color: #9ca3af; margin: 0 0 2px; }
.ss-contact-method a { color: var(--brand-teal); font-weight: 600; text-decoration: none; }
.ss-contact-faq-link { background: #f9fafb; border-radius: 10px; padding: 16px; font-size: 0.9375rem; color: #4b5563; }
.ss-contact-faq-link a { color: var(--brand-teal); font-weight: 600; }
.ss-contact-form-box { background: white; border-radius: 16px; padding: 32px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.ss-contact-form-box h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 900; text-transform: uppercase; color: var(--brand-dark); margin: 0 0 8px; }
.ss-contact-form-box > p { color: #6b7280; font-size: 0.9375rem; margin: 0 0 20px; }

/* Forms */
.ss-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
@media (max-width: 480px) { .ss-form-row { grid-template-columns: 1fr; } }
.ss-form-input { width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: 8px; font-size: 0.9375rem; outline: none; transition: border-color 0.15s; box-sizing: border-box; margin-bottom: 12px; }
.ss-form-input:focus { border-color: var(--brand-teal); }
.ss-form-textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: 8px; font-size: 0.9375rem; outline: none; transition: border-color 0.15s; resize: vertical; box-sizing: border-box; margin-bottom: 12px; font-family: inherit; }
.ss-form-textarea:focus { border-color: var(--brand-teal); }
.btn-full { width: 100%; justify-content: center; }
.ss-form-success { background: #f0fdf4; border: 1.5px solid #86efac; border-radius: 10px; padding: 20px; text-align: center; color: #166534; }
.ss-form-success svg { margin: 0 auto 12px; display: block; }
.ss-form-success h3 { font-family: var(--font-heading); font-weight: 900; text-transform: uppercase; margin: 0 0 6px; }

/* Dealer form box */
.ss-dealer-form-box { background: white; border-radius: 16px; padding: 32px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.ss-dealer-form-box h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 900; text-transform: uppercase; color: var(--brand-dark); margin: 0 0 8px; }
.ss-dealer-form-box > p { color: #6b7280; font-size: 0.9375rem; margin: 0 0 20px; }
.ss-dealer-logos-wrap { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 32px; }
.ss-dealer-logo-placeholder { background: white; border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 12px 24px; font-weight: 700; color: #6b7280; font-size: 0.9375rem; }

/* Compare table */
.ss-compare-table-wrap { overflow-x: auto; margin-top: 32px; }
.ss-compare-table { width: 100%; border-collapse: collapse; }
.ss-compare-table th { padding: 14px 16px; font-family: var(--font-heading); font-size: 0.875rem; font-weight: 900; text-transform: uppercase; background: #f9fafb; color: var(--brand-dark); text-align: left; border-bottom: 2px solid #e5e7eb; }
.ss-compare-table th.ss-compare-winner { background: var(--brand-teal); color: white; }
.ss-compare-table td { padding: 12px 16px; font-size: 0.9375rem; color: #374151; border-bottom: 1px solid #f3f4f6; }
.ss-compare-table td.ss-compare-winner { color: var(--brand-teal); font-weight: 700; }
.ss-compare-table tr:nth-child(even) td { background: #f9fafb; }
.ss-faq-simple { max-width: 700px; margin: 32px auto 0; }

/* FAQ JS behavior */
.ss-faq-answer-inner { padding: 4px 0; }

/* ============================================================
   ANIMATIONS DISABLED - All elements always visible
   ============================================================ */
.reveal,
.reveal.visible,
.animate-fade-up,
[class*="animate-"] {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* ===== LOGO SIZE FIX (55px = 25% larger than 44px) ===== */

/* ===== LOGO IMAGE WRAPPER ===== */
.ss-logo-img-wrap {
  display: flex;
  align-items: center;
  height: 44px;
  max-width: 180px;
}
.ss-logo-img-wrap img,
.ss-logo-img-wrap .custom-logo,
.ss-logo-img-wrap .custom-logo-link img {
  height: 44px !important;
  width: auto !important;
  max-width: 180px !important;
  max-height: 44px !important;
  object-fit: contain !important;
  display: block !important;
}
.ss-logo-img-wrap .custom-logo-link {
  display: flex !important;
  align-items: center !important;
  height: 44px !important;
}

/* ===== HEADER CONTAINER ===== */
.ss-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.ss-header .ss-header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
}
.ss-header .ss-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.ss-header .ss-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ===== NAV BUTTONS ===== */
.ss-nav-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 2px solid var(--brand-teal);
  color: var(--brand-teal);
  background: transparent;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.ss-nav-btn-outline:hover {
  background: var(--brand-teal);
  color: #fff;
}
.ss-nav-btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: #f5a623;
  color: #1B3C40;
  border: none;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  cursor: pointer;
}
.ss-nav-btn-yellow:hover {
  background: #e09520;
  color: #1B3C40;
}
.ss-nav-btn-yellow:active {
  transform: scale(0.97);
}

/* ===== COUNTRY SELECTOR BUTTON ===== */
.ss-country-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--brand-teal-light, #e8f5f5);
  border: 1.5px solid var(--brand-teal);
  border-radius: 8px;
  color: var(--brand-teal);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.ss-country-btn:hover {
  background: var(--brand-teal);
  color: #fff;
}
.ss-country-btn:hover svg {
  stroke: #fff;
}
.ss-country-btn svg {
  stroke: var(--brand-teal);
  flex-shrink: 0;
}
.ss-country-label {
  font-size: 13px;
}

/* ===== COUNTRY MODAL ===== */
.ss-country-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ss-country-modal {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.ss-country-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.ss-country-modal-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #111827;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ss-country-modal-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.ss-country-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.ss-country-modal-close:hover {
  background: #f3f4f6;
  color: #111827;
}
.ss-country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 600px) {
  .ss-country-grid { grid-template-columns: repeat(2, 1fr); }
}
.ss-country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}
.ss-country-item:hover {
  border-color: var(--brand-teal);
  background: #f0fafa;
}
.ss-country-active {
  border-color: var(--brand-teal) !important;
  background: #f0fafa !important;
}
.ss-country-flag {
  font-size: 22px;
  flex-shrink: 0;
}
.ss-country-info {
  min-width: 0;
}
.ss-country-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ss-country-delivery {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}
.ss-country-footer-note {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  margin: 16px 0 0 0;
}
.ss-country-footer-note a {
  color: var(--brand-teal);
  text-decoration: underline;
}

/* ===== HEADER RESPONSIVE OVERRIDES (override the appended header block) ===== */
@media (max-width: 1024px) {
  .ss-header .ss-header-inner { gap: 16px; }
  .ss-header .ss-nav { gap: 12px; }
  .ss-header .ss-nav a { font-size: 0.875rem; padding: 6px 8px; }
  .ss-nav-btn-outline { padding: 8px 12px; font-size: 12px; }
  .ss-nav-btn-yellow { padding: 8px 12px; font-size: 12px; }
}

@media (max-width: 768px) {
  /* Override the appended header block for mobile */
  .ss-header .ss-header-inner { height: auto; padding: 10px 0; gap: 12px; }
  .ss-header .ss-nav { display: none !important; }
  .ss-header .ss-header-actions { gap: 8px; }
  /* Show hamburger, hide desktop CTAs */
  .ss-mobile-menu-btn { display: flex !important; }
  .ss-nav-btn-outline { display: none !important; }
  .ss-nav-btn-yellow { display: none !important; }
  /* Country button: icon only on mobile */
  .ss-country-btn .ss-country-label { display: none !important; }
  .ss-country-btn { padding: 7px 9px !important; }
  /* Logo smaller on mobile */
  .ss-logo-img-wrap { height: 48px !important; max-width: 150px !important; }
  .ss-logo-img-wrap img,
  .ss-logo-img-wrap .custom-logo,
  .ss-logo-img-wrap .custom-logo-link img {
    height: 48px !important;
    max-height: 48px !important;
  }
  .ss-logo-img-wrap .custom-logo-link { height: 48px !important; }
  /* Header container padding */
  .ss-header-container { padding: 0 16px; }
}


/* ══════════════════════════════════════════════════════════════
   DE STORTSLURF® PAGE — v2 (matching React design)
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ── */
 .ss-ds-hero {
   position: relative;
   min-height: 85vh;
   display: flex;
   align-items: center;
   overflow: hidden;
   background: var(--brand-dark);
 }
.ss-ds-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.ss-ds-hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: white;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
 .ss-ds-hero-content {
   position: relative;
   z-index: 2;
   padding: 96px 0 128px;
   width: 100%;
 }
.ss-ds-hero-badge {
  display: inline-block;
  background: var(--brand-teal);
  color: white;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.ss-ds-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.ss-ds-hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}
.ss-ds-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ss-btn-outline-white {
  background: transparent;
  color: white;
  border-color: white;
}
.ss-btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── WAT IS DE STORTSLURF — intro ── */
.ss-two-col--center { align-items: center; }
.ss-two-col-text .eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 10px;
}
.ss-two-col-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.ss-ds-intro-text p {
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 1rem;
}
.ss-ds-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.ss-ds-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-dark);
}
.ss-ds-check svg { color: var(--brand-teal); flex-shrink: 0; }
.ss-ds-product-img-wrap {
  position: relative;
}
.ss-ds-product-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  aspect-ratio: 4/5;
}
.ss-ds-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ss-ds-price-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--brand-dark);
  color: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.ss-ds-price-from { font-size: 0.75rem; opacity: 0.7; margin-bottom: 2px; }
.ss-ds-price-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
}
.ss-ds-price-excl { font-size: 0.75rem; opacity: 0.7; }

/* ── VIDEO SECTION ── */
.ss-ds-video-wrap { max-width: 900px; margin: 0 auto; }
.ss-ds-video-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  background: #111;
}
.ss-ds-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.ss-ds-video-thumb:hover img { opacity: 0.85; }
.ss-ds-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-ds-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.2s var(--ease-out), background 0.2s;
}
.ss-ds-video-thumb:hover .ss-ds-play-btn {
  transform: scale(1.1);
  background: var(--brand-yellow-dark);
}
.ss-ds-video-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: white;
}
.ss-ds-video-label { font-size: 0.875rem; font-weight: 600; opacity: 0.8; margin-bottom: 4px; }
.ss-ds-video-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
}
.ss-ds-video-disclaimer {
  margin-top: 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: #92400e;
}
.ss-ds-disclaimer-title { font-weight: 700; margin-bottom: 6px; }
.ss-ds-video-disclaimer ul { list-style: none; padding: 0; }
.ss-ds-video-disclaimer li { margin-bottom: 4px; color: #b45309; }

/* ── STEP-BY-STEP ── */
.ss-ds-steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ss-ds-step-list { display: flex; flex-direction: column; gap: 10px; }
.ss-ds-step-btn {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  padding: 20px;
  border: 2px solid #e5e7eb;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ss-ds-step-btn:hover {
  border-color: #d1d5db;
  background: #f3f4f6;
}
.ss-ds-step-btn--active {
  border-color: var(--brand-teal) !important;
  background: var(--brand-dark) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.ss-ds-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e5e7eb;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.ss-ds-step-btn--active .ss-ds-step-num {
  background: var(--brand-teal);
  color: white;
}
.ss-ds-step-num--teal {
  background: var(--brand-teal) !important;
  color: white !important;
}
.ss-ds-step-text { flex: 1; min-width: 0; }
.ss-ds-step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--brand-dark);
  line-height: 1.3;
  margin: 0;
  transition: color 0.2s;
}
.ss-ds-step-btn--active .ss-ds-step-title { color: white !important; }
.ss-ds-step-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 8px 0 0;
  display: none;
}
.ss-ds-step-btn--active .ss-ds-step-desc {
  display: block;
  color: rgba(255,255,255,0.75) !important;
}
.ss-ds-step-arrow {
  color: #9ca3af;
  flex-shrink: 0;
  margin-top: 4px;
  transition: color 0.2s;
}
.ss-ds-step-btn--active .ss-ds-step-arrow { color: var(--brand-teal); }
.ss-ds-step-img-wrap { position: sticky; top: 96px; }
.ss-ds-step-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  aspect-ratio: 4/3;
}
.ss-ds-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.ss-ds-step-img-caption {
  margin-top: 16px;
  background: var(--brand-dark);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ss-ds-step-img-caption p {
  color: white;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0;
}

/* ── TOEPASSINGEN — use-case desc ── */
.ss-use-case-label-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 12px;
}
.ss-use-case-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  margin: 4px 0 0;
  line-height: 1.4;
}
.ss-ds-toepassing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--brand-gray);
  margin-top: 24px;
}
.ss-ds-toepassing-note a { color: var(--brand-teal); font-weight: 600; }

/* ── VOORDELEN ── */
.ss-ds-advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}
.ss-ds-advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ss-ds-advantage-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-teal);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 137, 123, 0.35);
}
.ss-ds-advantage-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 900;
  color: var(--brand-dark);
  margin: 0 0 2px;
}
.ss-ds-advantage-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}
.ss-ds-advantage-text { display: flex; flex-direction: column; gap: 0; }
.ss-ds-advantage-text p { margin: 0; padding: 0; }
.ss-ds-voordelen-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ss-ds-voordelen-photo-tall {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.ss-ds-voordelen-photo-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ss-ds-voordelen-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 32px;
}
.ss-ds-voordelen-photo-sq {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.ss-ds-voordelen-photo-sq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ss-ds-steps-layout {
    grid-template-columns: 1fr;
  }
  .ss-ds-step-img-wrap { position: static; }
  .ss-ds-advantages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ss-ds-hero-content { padding: 72px 0 96px; }
  .ss-ds-hero-h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .ss-ds-checks { grid-template-columns: 1fr; }
  .ss-ds-price-badge { left: 8px; bottom: -12px; }
  .ss-ds-voordelen-photos { grid-template-columns: 1fr; }
  .ss-ds-voordelen-photo-stack { padding-top: 0; flex-direction: row; }
}

/* ===== KLANTENSERVICE PAGE (v4.5) ===== */
.ss-ks-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ss-ks-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}
.ss-ks-card--dark {
  background: var(--brand-dark, #1a2332);
  border-color: transparent;
}
.ss-ks-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--brand-teal-light, #e8f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.ss-ks-icon--dark {
  background: rgba(255,255,255,0.1);
}
.ss-ks-card h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--brand-dark, #1a2332);
  margin-bottom: 0.25rem;
}
.ss-ks-phone {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--brand-teal, #3d8b8b);
  display: block;
  margin-bottom: 0.25rem;
  text-decoration: none;
}
.ss-ks-email {
  font-weight: 700;
  color: var(--brand-teal, #3d8b8b);
  display: block;
  margin-bottom: 0.25rem;
  text-decoration: none;
  word-break: break-all;
}
.ss-ks-sub {
  color: #6b7280;
  font-size: 0.85rem;
}
.ss-ks-faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  background: var(--brand-teal, #3d8b8b);
  color: white;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  text-decoration: none;
}
.ss-ks-main-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
.ss-ks-form-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--brand-dark, #1a2332);
  margin-bottom: 1.5rem;
}
.ss-ks-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ss-ks-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ss-ks-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.ss-ks-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.375rem;
}
.ss-ks-field label span { color: #ef4444; }
.ss-ks-field input,
.ss-ks-field select,
.ss-ks-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.15s;
  background: white;
  box-sizing: border-box;
}
.ss-ks-field input:focus,
.ss-ks-field select:focus,
.ss-ks-field textarea:focus {
  border-color: var(--brand-teal, #3d8b8b);
}
.ss-ks-field textarea { resize: none; }
.ss-ks-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  background: var(--brand-teal, #3d8b8b);
  color: white;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: opacity 0.15s;
}
.ss-ks-submit:hover { opacity: 0.9; }
.ss-ks-note {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.75rem;
}
.ss-ks-success {
  background: #e8f5f5;
  border: 1px solid var(--brand-teal, #3d8b8b);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
.ss-ks-success svg { margin: 0 auto 1rem; display: block; }
.ss-ks-success h3 { font-family: 'Barlow', sans-serif; font-weight: 900; font-size: 1.25rem; color: var(--brand-dark, #1a2332); }
.ss-ks-success p { color: #6b7280; font-size: 0.9rem; margin-top: 0.5rem; }
.ss-ks-info-col { display: flex; flex-direction: column; gap: 1.25rem; }
.ss-ks-info-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}
.ss-ks-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--brand-teal-light, #e8f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}
.ss-ks-info-card h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--brand-dark, #1a2332);
  margin-bottom: 0.75rem;
}
.ss-ks-info-card address {
  font-style: normal;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
}
.ss-ks-info-card address strong { color: #111827; }
.ss-ks-dealer-link { font-size: 0.75rem; color: #9ca3af; margin-top: 0.75rem; }
.ss-ks-dealer-link a { font-weight: 700; color: var(--brand-teal, #3d8b8b); text-decoration: none; }
.ss-ks-dl { font-size: 0.875rem; }
.ss-ks-dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.375rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.ss-ks-dl dt { color: #6b7280; font-weight: 500; }
.ss-ks-dl dd { color: #111827; font-weight: 600; text-align: right; }
.ss-ks-socials { display: flex; gap: 0.75rem; }
.ss-ks-socials a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--brand-teal-light, #e8f5f5);
  color: var(--brand-teal, #3d8b8b);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.15s;
}
.ss-ks-socials a:hover { transform: scale(1.08); }
.ss-ks-service-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--brand-dark, #1a2332);
  margin-bottom: 1.5rem;
}
.ss-ks-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ss-ks-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #f0f0f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ss-ks-service-link:hover {
  border-color: var(--brand-teal, #3d8b8b);
  box-shadow: 0 4px 12px rgba(61,139,139,0.15);
}
.ss-ks-service-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #111827;
  margin-bottom: 0.2rem;
}
.ss-ks-service-desc { font-size: 0.75rem; color: #6b7280; }

@media (max-width: 1024px) {
  .ss-ks-main-grid { grid-template-columns: 1fr; }
  .ss-ks-cards { grid-template-columns: 1fr 1fr; }
  .ss-ks-service-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ss-ks-cards { grid-template-columns: 1fr; }
  .ss-ks-form-row { grid-template-columns: 1fr; }
  .ss-ks-service-grid { grid-template-columns: 1fr; }
}

/* ===== PAGE HEADER (v4.5) ===== */
.ss-page-header {
  padding: 4rem 0 3.5rem;
  text-align: center;
  background: var(--brand-gray-light, #f3f4f6);
}
.ss-page-header--dark {
  background: var(--brand-dark, #1B3C40);
  color: white;
}
.ss-page-header--dark h1 {
  color: white;
  font-family: var(--font-heading, 'Barlow', sans-serif);
  font-weight: 900;
  font-size: clamp(1.75rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.ss-page-header--dark .ss-eyebrow {
  color: var(--brand-teal, #3D8B8B);
  font-family: var(--font-heading, 'Barlow', sans-serif);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}
.ss-page-header-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-top: 8px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   MOBILE FIXES v4.6 — Comprehensive mobile improvements
   ============================================================ */

/* Prevent horizontal overflow on all pages */
html, body {
  overflow-x: clip;
  max-width: 100%;
}

/* ── TOPBAR: hide on mobile (too crowded) ── */
@media (max-width: 640px) {
  .ss-topbar { display: none; }
}

/* ── HEADER: better logo on mobile + quickbar layout ── */
@media (max-width: 768px) {
  .ss-header-inner {
    padding: 10px 0;
    gap: 0;
    justify-content: space-between;
  }
  /* Logo: fixed width, no flex growth */
  .ss-logo {
    flex: 0 0 auto;
    flex-shrink: 0;
  }
  .ss-logo-img-wrap {
    height: 40px !important;
    max-width: 130px !important;
  }
  .ss-logo-img-wrap img,
  .ss-logo-img-wrap .custom-logo,
  .ss-logo-img-wrap .custom-logo-link img {
    height: 40px !important;
    max-height: 40px !important;
    width: auto !important;
  }
  .ss-logo-text {
    font-size: 1.35rem !important;
    letter-spacing: 0.04em;
    font-weight: 900 !important;
  }
  /* Quickbar: visible, centered between logo and actions */
  .ss-mobile-quickbar {
    display: flex !important;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    padding: 0 8px;
  }
  /* Actions: cart + hamburger, no extra gap */
  .ss-header-actions {
    flex: 0 0 auto;
    flex-shrink: 0;
    gap: 6px;
  }
  /* Hide desktop-only actions */
  .ss-nav-btn-outline { display: none !important; }
  .ss-nav-btn-yellow { display: none !important; }
  .ss-country-btn { display: none !important; }
}

/* ── HAMBURGER MENU: improved styling ── */
.ss-mobile-menu-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 8px !important;
  border: none !important;
  background: var(--brand-dark) !important;
  color: white !important;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0 !important;
  flex-shrink: 0;
}
.ss-mobile-menu-btn:hover {
  background: var(--brand-teal) !important;
}
@media (max-width: 768px) {
  .ss-mobile-menu-btn { display: flex !important; }
}


/* ── HERO: fix badge overflow and layout on mobile ── */
@media (max-width: 640px) {
  .ss-hero-h1 {
    white-space: normal !important;
    font-size: 2.5rem !important;
    line-height: 1.0;
  }
  .ss-hero-badges {
    flex-wrap: nowrap !important;
    gap: 6px !important;
    overflow: hidden;
  }
  .ss-hero-badge {
    font-size: 0.625rem;
    padding: 4px 8px;
    white-space: nowrap;
    letter-spacing: 0.04em;
  }
  .ss-hero-split-container {
    padding-top: 28px;
    padding-bottom: 40px;
  }
  .ss-hero-tagline {
    font-size: 0.9375rem;
  }
  .ss-hero-subtitle {
    font-size: 0.875rem;
  }
  .ss-hero-checks li {
    font-size: 0.8125rem;
  }
  .ss-hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .ss-hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .ss-hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
}

/* ── TOEPASSINGEN SLIDER: dots + swipe hint ── */
/* Scroll indicator dots */
.ss-slider-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.ss-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-border);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.ss-slider-dot.active {
  background: var(--brand-teal);
  transform: scale(1.3);
}
/* Swipe hint text on mobile */
.ss-slider-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--brand-gray);
  font-size: 0.8125rem;
}
.ss-slider-swipe-hint svg {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}
@media (max-width: 1024px) {
  .ss-slider-dots { display: flex; }
  .ss-slider-swipe-hint { display: flex; }
}
@media (max-width: 640px) {
  /* Show peek of next item as visual cue */
  .ss-use-case-slider-wrap {
    margin-right: -16px;
  }
  .ss-use-case-grid {
    padding-right: 48px !important;
  }
}

/* ── STATS BAR: 2 columns on mobile ── */
@media (max-width: 640px) {
  .ss-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
}

/* ── ONLINE BESTELLEN: fix product image overflow on mobile ── */
@media (max-width: 768px) {
  .ss-shop-hero-inner {
    grid-template-columns: 1fr !important;
  }
  .ss-shop-hero-right {
    display: none;
  }
}

/* ── SECTION PADDING: reduce on mobile ── */
@media (max-width: 640px) {
  .ss-section {
    padding: 40px 0;
  }
  .ss-section-header {
    margin-bottom: 24px;
  }
  .ss-section-h2 {
    font-size: 1.75rem;
  }
}

/* ── FOOTER: better mobile layout ── */
@media (max-width: 640px) {
  .ss-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .ss-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ── GENERAL: prevent text overflow ── */
@media (max-width: 768px) {
  p, h1, h2, h3, h4, h5, h6, span, li {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}


/* ═══════════════════════════════════════════════════════
   MOBILE PRODUCT PAGE — v5.2 — Conversion-focused redesign
   ═══════════════════════════════════════════════════════ */

/* Utility: show/hide by viewport */
.ss-mobile-only { display: none !important; }
.ss-desktop-only { display: block !important; }

@media (max-width: 768px) {
  .ss-mobile-only { display: block !important; }
  .ss-mobile-only.ss-product-trust-mobile { display: flex !important; }
  .ss-desktop-only { display: none !important; }
}

/* ── MOBILE URGENCY BAR ── */
.ss-mobile-urgency-bar {
  background: var(--brand-dark);
  color: white;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 0.01em;
}
.ss-mobile-urgency-bar svg {
  flex-shrink: 0;
  color: white;
}
.ss-mobile-urgency-bar strong {
  color: white;
}

/* ── BREADCRUMB: hide on mobile ── */
.ss-breadcrumb-desktop-only {
  display: block;
}
@media (max-width: 768px) {
  .ss-breadcrumb-desktop-only { display: none !important; }
}

/* ── MOBILE PRODUCT HEADER (above image) ── */
.ss-product-mobile-header {
  padding: 0 0 12px 0; /* Container already provides side padding */
}
.ss-product-mobile-header .ss-product-info-title {
  font-size: 1.375rem !important;
  line-height: 1.2;
  margin: 4px 0 6px 0;
}
.ss-product-mobile-header .ss-product-info-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 8px 0;
}
.ss-product-mobile-header .ss-product-info-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.8125rem;
}

/* ── MOBILE TRUST BADGES (horizontal swipe slider) ── */
.ss-product-trust-mobile {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  gap: 8px;
  padding: 10px 0;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch;
}
.ss-product-trust-mobile::-webkit-scrollbar { display: none; }
.ss-product-trust-mobile .ss-trust-badge {
  flex-shrink: 0 !important;
  flex: 0 0 auto !important;
  width: auto !important;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 7px 13px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  display: flex !important;
  align-items: center;
  gap: 5px;
  white-space: nowrap !important;
}
.ss-product-trust-mobile .ss-trust-badge svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* Hide desktop trust row on mobile */
@media (max-width: 768px) {
  .ss-product-trust-desktop { display: none !important; }
}
/* Hide mobile trust row on desktop */
@media (min-width: 769px) {
  .ss-product-trust-mobile { display: none !important; }
}

/* ── COMPLETEER JE SET: improved ── */
.ss-completeer-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--brand-dark);
}
.ss-completeer-title svg {
  color: var(--brand-yellow);
  flex-shrink: 0;
}
.ss-completeer-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffc107;
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: auto;
  white-space: nowrap;
}

.ss-completeer-item {
  display: block;
  cursor: pointer;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 8px;
  transition: border-color 0.15s, background 0.15s;
  overflow: hidden;
  padding: 0;
}
.ss-completeer-item.ss-completeer-checked {
  border-color: var(--brand-teal);
  background: #f0faf8;
}
.ss-completeer-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ss-completeer-item-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
}
.ss-completeer-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #d1d5db;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
/* Hide checkmark SVG when not selected */
.ss-completeer-check svg {
  opacity: 0;
  transition: opacity 0.15s;
}
.ss-completeer-checked .ss-completeer-check {
  background: var(--brand-teal);
  border-color: var(--brand-teal);
  color: white;
}
/* Show checkmark SVG only when selected */
.ss-completeer-checked .ss-completeer-check svg {
  opacity: 1;
}
.ss-completeer-img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-completeer-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ss-completeer-info {
  flex: 1;
  min-width: 0;
}
.ss-completeer-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1.3;
}
.ss-completeer-price {
  display: block;
  font-size: 0.8125rem;
  color: var(--brand-teal);
  font-weight: 700;
  margin-top: 2px;
}

/* ── ATC BUTTON: full width ── */
.ss-atc-btn-full {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 10px;
}

/* ── MOBILE USP BULLETS ── */
.ss-product-mobile-usps {
  margin-top: 16px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
.ss-mobile-usps-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ss-bullets-compact li {
  font-size: 0.875rem !important;
  padding: 4px 0 !important;
}

/* ── MOBILE ACCORDEON (tabs → accordeon on mobile) ── */
.ss-mobile-accordeon-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: #f8fafc;
  border: none;
  border-top: 1px solid #e5e7eb;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: left;
  transition: background 0.15s;
}
.ss-mobile-accordeon-btn:hover {
  background: #f0f4f8;
}
.ss-mobile-accordeon-btn[aria-expanded="true"] .ss-acc-chevron {
  transform: rotate(180deg);
}
.ss-acc-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: var(--brand-teal);
}

.ss-accordeon-body {
  overflow: hidden;
  transition: max-height 0.35s ease;
  max-height: 5000px; /* Open by default */
}
.ss-accordeon-closed {
  max-height: 0 !important;
  overflow: hidden !important;
}

@media (max-width: 768px) {
  /* On mobile: tabs section becomes accordeon */
  .ss-product-tabs-section {
    margin-top: 0 !important;
    border-top: 1px solid #e5e7eb;
  }
  .ss-tab-content {
    display: block !important; /* Always show, controlled by accordeon */
    border-bottom: 1px solid #e5e7eb;
  }
  .ss-tab-content.active .ss-tab-body {
    /* Desktop active state — on mobile use accordeon */
  }
  .ss-accordeon-body {
    padding: 0;
  }
  .ss-accordeon-body:not(.ss-accordeon-closed) {
    padding: 16px;
  }
}

/* ── STICKY BOTTOM CTA BAR ── */
.ss-sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: white;
  border-top: 2px solid var(--brand-teal);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.14);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.ss-sticky-atc-bar.ss-sticky-visible {
  transform: translateY(0);
}
.ss-sticky-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ss-sticky-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ss-sticky-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ss-sticky-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.1;
}
.ss-sticky-atc-btn {
  flex-shrink: 0;
  padding: 13px 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 10px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── DEALER SECTION (product page) ── */
.ss-product-dealer-section {
  background: #f8faf9;
  border-top: 1px solid #e2ebe6;
  padding: 48px 0 40px;
}
.ss-product-dealer-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}
.ss-product-dealer-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--brand-teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.ss-product-dealer-text {
  flex: 1;
}
.ss-product-dealer-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 0 0 6px;
  line-height: 1.2;
}
.ss-product-dealer-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.ss-product-dealer-subtitle strong {
  color: var(--brand-dark);
}
.ss-product-dealer-cta {
  text-align: center;
  margin-top: 32px;
}
.ss-dealer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  justify-content: center;
}
.ss-product-dealer-alt {
  margin: 12px 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.ss-product-dealer-alt a {
  color: var(--brand-teal);
  font-weight: 600;
  text-decoration: underline;
}

/* ── MOBILE: product section layout adjustments ── */
@media (max-width: 768px) {
  .ss-product-single-section {
    padding-top: 0 !important;
    padding-bottom: 90px !important;
  }
  .ss-product-single-grid {
    gap: 0 !important;
  }
  .ss-product-gallery {
    padding: 12px 0 0 0;
    position: static !important; /* Disable sticky on mobile */
  }
  .ss-product-gallery-main {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .ss-product-info {
    padding-top: 16px;
  }
  .ss-product-price-block {
    margin-bottom: 12px;
  }
  .ss-product-price-main {
    font-size: 1.75rem !important;
  }
  .ss-qty-calculator {
    margin-bottom: 14px;
  }
  .ss-completeer-set {
    margin-bottom: 14px;
  }
  .ss-product-atc-row {
    margin-bottom: 12px;
  }
  .ss-product-shipping-info {
    font-size: 0.8125rem;
    margin-bottom: 12px;
  }
  /* Dealer section mobile */
  .ss-product-dealer-section {
    padding: 32px 0 28px;
  }
  .ss-product-dealer-header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .ss-product-dealer-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .ss-product-dealer-title {
    font-size: 1.125rem;
  }
  .ss-product-dealer-subtitle {
    font-size: 0.875rem;
  }
  .ss-dealer-cta-btn {
    padding: 14px 24px;
    font-size: 0.9375rem;
    max-width: 100%;
  }
}

/* ── SWIPEABLE GALLERY SLIDER ── */
.ss-gallery-slider-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f9fa;
  aspect-ratio: 1 / 1;
  max-height: 520px;
  user-select: none;
}
.ss-gallery-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.ss-gallery-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.ss-gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.ss-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.ss-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--brand-dark);
  transition: background 0.15s, box-shadow 0.15s;
}
.ss-gallery-nav:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.ss-gallery-prev { left: 10px; }
.ss-gallery-next { right: 10px; }
.ss-gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.ss-gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.ss-gallery-dot.active {
  background: var(--brand-teal);
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .ss-gallery-slider-wrap {
    border-radius: 0;
    aspect-ratio: 4 / 3;
    max-height: 300px;
    margin: 0 -16px;
  }
  .ss-gallery-slide img {
    padding: 0;
    object-fit: cover;
  }
  .ss-gallery-nav {
    width: 32px;
    height: 32px;
  }
  .ss-gallery-prev { left: 8px; }
  .ss-gallery-next { right: 8px; }
}

/* ── GALLERY MOBILE FIX: full-width ── */
@media (max-width: 768px) {
  .ss-product-gallery {
    margin: 0 -20px;
    overflow: hidden; /* Safe to use hidden now - mobile header is outside gallery */
    position: static !important; /* Disable sticky on mobile */
  }
  .ss-gallery-slider-wrap {
    border-radius: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    aspect-ratio: 4/3 !important;
    max-height: 280px !important;
  }
  .ss-gallery-slide img {
    object-fit: cover !important;
    padding: 0 !important;
  }
  .ss-product-trust-row.ss-product-trust-desktop {
    display: none !important;
  }
  /* Sticky bar: cleaner layout */
  .ss-sticky-atc-bar {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    padding: 10px 16px !important;
    gap: 12px !important;
    align-items: center !important;
    background: var(--brand-dark) !important;
  }
  .ss-sticky-left {
    flex: 1 !important;
    min-width: 0 !important;
  }
  .ss-sticky-label {
    font-size: 0.7rem !important;
    color: rgba(255,255,255,0.6) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    display: block !important;
    line-height: 1 !important;
    margin-bottom: 2px !important;
  }
  .ss-sticky-price {
    font-family: var(--font-heading) !important;
    font-size: 1.375rem !important;
    font-weight: 800 !important;
    color: white !important;
    line-height: 1 !important;
  }
  .ss-sticky-atc-btn {
    flex-shrink: 0 !important;
    padding: 12px 20px !important;
    font-size: 0.9375rem !important;
    font-weight: 700 !important;
    background: var(--brand-yellow) !important;
    border-color: var(--brand-yellow) !important;
    color: var(--brand-dark) !important;
    border-radius: 8px !important;
  }
  .ss-sticky-atc-btn:hover {
    background: var(--brand-yellow-dark) !important;
    border-color: var(--brand-yellow-dark) !important;
  }
}

/* ============================================================
   PRODUCT PAGE: USP CARDS & STEPS (v5.8)
   ============================================================ */

/* USP Cards */
.ss-product-usp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .ss-product-usp-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }
}
.ss-product-usp-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0faf9;
  border: 1.5px solid #a8ddd9;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(42,110,105,0.07);
}
.ss-product-usp-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-teal);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ss-product-usp-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e2d;
  margin-bottom: 5px;
}
.ss-product-usp-card p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

/* Features block */
.ss-product-features-block {
  margin-bottom: 24px;
}
.ss-product-features-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}


/* Steps more link */
.ss-steps-more-link {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #6b7280;
}
.ss-steps-more-link a {
  color: var(--brand-teal);
  font-weight: 600;
  text-decoration: none;
}
.ss-steps-more-link a:hover {
  text-decoration: underline;
}
/* Steps */
.ss-product-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
}
.ss-product-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--brand-border);
  position: relative;
}
.ss-product-step:last-child { border-bottom: none; }
.ss-step-number {
  width: 40px;
  height: 40px;
  background: var(--brand-teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  flex-shrink: 0;
}
.ss-step-content strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 4px;
}
.ss-step-content p {
  font-size: 0.875rem;
  color: var(--brand-gray);
  line-height: 1.5;
  margin: 0;
}

/* Includes grid improved */
.ss-includes-yes h4 { color: #16a34a; }
.ss-includes-no h4 { color: #dc2626; }


/* ============================================================
   MOBILE PRODUCT PAGE: THUMBNAIL + TITLE ALIGNMENT FIXES (v5.9)
   ============================================================ */

/* Thumbnail strip: correct padding on mobile (compensate for -20px gallery margin) */
@media (max-width: 768px) {
  .ss-product-gallery-thumbs {
    padding: 10px 20px 4px 20px;
    margin: 0;
    background: #fff;
  }
  .ss-thumb {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
  }
  .ss-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* Product title: outside gallery, uses normal container padding */
  .ss-product-mobile-header {
    padding: 12px 0 10px 0;
  }
  /* Product info section: consistent padding */
  .ss-product-info {
    padding-top: 0 !important;
  }
  /* Fix: gallery section pulls to edges, but text content stays in container */
  .ss-product-single-grid {
    gap: 0 !important;
  }
}

/* ── PRODUCT PAGE QUALITY IMPROVEMENTS ── */
/* Better gallery main image aspect ratio on mobile */
@media (max-width: 768px) {
  .ss-gallery-slider-wrap {
    aspect-ratio: 4/3 !important;
    max-height: 300px !important;
    border-radius: 0 !important;
  }
  .ss-gallery-slide img {
    object-fit: cover !important;
    object-position: center !important;
  }
}

/* Urgency bar: more prominent */
.ss-mobile-urgency-bar {
  background: var(--brand-teal);
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ss-mobile-urgency-bar strong {
  color: white;
}

/* ============================================================
   PRODUCT PAGE: HOOK + MOBILE USPs STRIP (v6.0)
   ============================================================ */

/* Product hook line: "De opvouwbare flexibele stortkoker — stortkoker huren is verleden tijd" */
.ss-product-hook {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 4px 0 10px 0;
}
.ss-product-hook strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Mobile USPs strip: quick wins as wrapping pill badges */
.ss-mobile-usps-strip {
  display: flex;
  gap: 6px;
  margin: 0 0 10px 0;
  flex-wrap: wrap;
}

.ss-mobile-usp-item {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #166534;
  white-space: nowrap;
  flex-shrink: 0;
}
.ss-mobile-usp-icon {
  font-size: 0.875rem;
  line-height: 1;
}

/* Desktop: hook line styling */
@media (min-width: 769px) {
  .ss-product-hook {
    font-size: 1rem;
    margin: 6px 0 12px 0;
  }
}

/* ============================================================
   PRODUCT PAGE: VS COMPARISON BLOCK (v6.1)
   ============================================================ */
.ss-vs-comparison {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 14px 0 16px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  font-size: 0.8125rem;
}
.ss-vs-col {
  flex: 1;
  padding: 12px 14px;
}
.ss-vs-winner {
  background: #f0fdf4;
  border-right: 1px solid #e5e7eb;
}
.ss-vs-loser {
  background: #fafafa;
}
.ss-vs-label {
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ss-vs-winner .ss-vs-label {
  color: #15803d;
}
.ss-vs-loser .ss-vs-label {
  color: #6b7280;
}
.ss-vs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ss-vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.3;
  color: #374151;
}
.ss-vs-loser .ss-vs-list li {
  color: #9ca3af;
  text-decoration: line-through;
  text-decoration-color: #d1d5db;
}
.ss-vs-check {
  color: #16a34a;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ss-vs-cross {
  color: #ef4444;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ss-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-dark);
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
  writing-mode: vertical-rl;
  padding: 8px 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* On mobile: slightly smaller text */
@media (max-width: 480px) {
  .ss-vs-comparison {
    font-size: 0.75rem;
  }
  .ss-vs-col {
    padding: 10px 10px;
  }
  .ss-vs-label {
    font-size: 0.8125rem;
  }
}

/* ── PRICE DISPLAY: EXCL/INCL BTW ── */
.ss-price-tax-label {
  font-size: 0.7em;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  vertical-align: middle;
}
.ss-product-price-excl-main {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  font-family: var(--font-heading);
  line-height: 1.2;
}
.ss-product-price-incl-sub {
  font-size: 0.8rem;
  color: var(--brand-gray);
  margin-top: 2px;
}
.ss-hero-price-tax {
  font-size: 0.65rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0;
  line-height: 1;
}
/* Homepage product card price */
.ss-product-price-vat {
  font-size: 0.8rem;
  color: var(--brand-gray);
  display: block;
  margin-top: 2px;
}

/* ── CHECKOUT: ensure sticky right column works ── */
.woocommerce-checkout body,
body.woocommerce-checkout {
  overflow: visible !important;
  overflow-x: clip !important;
}

/* ============================================================
   PRODUCT PAGE FIXES v5.9 — Trust badges + Desktop tabs
   ============================================================ */

/* ── TRUST BADGES: desktop styled pills ── */
.ss-trust-badge {
  border: 1px solid #bbf7d0 !important;
  white-space: nowrap;
}
.ss-trust-badge svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* ── DESKTOP TABS: show content when tab is active ── */
/* On desktop: only the active tab's body is visible; others are hidden via display:none on .ss-tab-content */
@media (min-width: 769px) {
  .ss-tab-content.active .ss-accordeon-body {
    max-height: none !important;
    overflow: visible !important;
  }
  .ss-tab-content.active .ss-tab-body {
    padding: 32px 0 !important;
  }
}

/* ── DESKTOP: Hook text styled as USP pill strip (like mobile) ── */
/* Base: hidden on mobile (mobile uses ss-mobile-usps-strip instead) */
.ss-desktop-usps-strip {
  display: none;
}
/* Desktop: show as flex pill row */
@media (min-width: 769px) {
  .ss-product-hook {
    display: none !important; /* Hide plain text version on desktop */
  }
  .ss-product-desktop-header .ss-desktop-usps-strip {
    display: flex !important;
    gap: 6px;
    flex-wrap: nowrap;
    margin: 6px 0 14px 0;
  }
}
.ss-desktop-usp-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #166534;
  white-space: nowrap;
}
.ss-desktop-usp-item svg {
  color: #16a34a;
  flex-shrink: 0;
}

/* ============================================================
   PRODUCT PAGE: SEO CONTENT SECTION (v5.9)
   Two-column grid with H2/H3 content for search engines
   ============================================================ */
/* ── SEO CONTENT SECTION: clean 2-col layout ── */
.ss-product-seo-section {
  background: #f8fafb;
  padding: 48px 0 52px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.ss-seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.ss-seo-col {
  padding: 32px 36px;
}
.ss-seo-col:first-child {
  border-right: 1px solid #e5e7eb;
}
.ss-seo-h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px 0;
  line-height: 1.25;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-teal);
  display: inline-block;
}
.ss-seo-h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-transform: none;
  letter-spacing: 0;
  margin: 22px 0 6px 0;
  line-height: 1.4;
}
.ss-seo-p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 0 0;
}
.ss-seo-p strong {
  color: var(--brand-dark);
  font-weight: 600;
}
@media (max-width: 768px) {
  .ss-product-seo-section {
    padding: 32px 0;
  }
  .ss-seo-grid {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }
  .ss-seo-col {
    padding: 24px 20px;
  }
  .ss-seo-col:first-child {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
  .ss-seo-h2 {
    font-size: 1.125rem;
  }
}

/* ============================================================
   PRODUCT PAGE: BEKEND VAN SECTIE (v7.3)
   Subtiele media/RTL logos balk
   ============================================================ */
.ss-product-bekend-van {
  padding: 14px 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  background: #fafafa;
}
.ss-product-bekend-van-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ss-product-bekend-van-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  white-space: nowrap;
  flex-shrink: 0;
}
.ss-product-bekend-van-img {
  height: 28px;
  width: auto;
  max-width: 100%;
  opacity: 0.65;
  filter: grayscale(60%);
  object-fit: contain;
}
/* ============================================================
   PRODUCT PAGE: FOTO STRIP SECTIE (v7.3)
   Scrollende foto strip (zelfde als homepage Europa sectie)
   ============================================================ */
.ss-product-strip-section {
  overflow: hidden;
  padding: 0;
  background: var(--brand-dark);
}

/* ============================================================
   DE STORTSLURF PAGE: Verwijder header border (v7.3)
   ============================================================ */
.page-template-page-de-stortslurf .ss-header {
  border-bottom: none !important;
  box-shadow: none !important;
}

/* ============================================================
   LEGAL PAGES: Gele vinkjes op lijstitems (v7.3)
   Zelfde stijl als de afreken-vertrouwensbadges
   ============================================================ */
.ss-legal-article ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.ss-legal-article ul li {
  position: relative;
  padding-left: 28px;
  line-height: 1.8;
  color: var(--brand-gray, #555);
  margin-bottom: 6px;
}
.ss-legal-article ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background-color: var(--brand-teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
  flex-shrink: 0;
}

/* ============================================================
   RETOUR FORMULIER (v7.3)
   Stijl voor het Contact Form 7 retour aanmelding formulier
   ============================================================ */
.ss-retour-form .ss-retour-form-row {
  margin-bottom: 16px;
}
.ss-retour-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.ss-retour-form label abbr {
  color: #e53e3e;
  text-decoration: none;
  margin-left: 2px;
}
.ss-retour-form input[type="text"],
.ss-retour-form input[type="email"],
.ss-retour-form select,
.ss-retour-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--brand-dark);
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.ss-retour-form input[type="text"]:focus,
.ss-retour-form input[type="email"]:focus,
.ss-retour-form select:focus,
.ss-retour-form textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.12);
}
.ss-retour-form textarea {
  min-height: 100px;
  resize: vertical;
}
.ss-retour-form .ss-retour-form-submit {
  margin-top: 20px;
}
.ss-retour-form .wpcf7-submit {
  cursor: pointer;
}
.ss-retour-form .wpcf7-not-valid-tip {
  color: #e53e3e;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}
.ss-retour-form .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.ss-retour-form .wpcf7-mail-sent-ok {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.ss-retour-form .wpcf7-validation-errors,
.ss-retour-form .wpcf7-mail-sent-ng {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* ============================================================
   TABLET RESPONSIVE FIXES (769px - 1024px)
   ============================================================ */

/* Product page: reduce gap on tablet to prevent cramping */
@media (min-width: 769px) and (max-width: 1024px) {
  .ss-product-single-grid {
    gap: 32px !important;
  }
  /* Product info: slightly smaller font */
  .ss-product-info-title {
    font-size: 1.75rem !important;
  }
  /* Breadcrumb bar: ensure it's compact */
  .ss-breadcrumb-bar {
    padding: 5px 0 !important;
  }
  /* USP strip on product page: allow wrapping on smaller tablets */
  .ss-product-desktop-header .ss-desktop-usps-strip {
    flex-wrap: wrap !important;
    gap: 4px !important;
  }
  /* De Stortslurf page: voordelen grid 2 columns on tablet */
  .ss-ds-voordelen-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Homepage hero: adjust layout */
  .ss-hero-content {
    padding: 60px 0;
  }
  /* Photo strip on product page: ensure proper sizing */
  .ss-product-photo-strip-section {
    padding: 40px 0;
  }
  /* SEO section: single column on tablet */
  .ss-seo-grid {
    grid-template-columns: 1fr !important;
  }
  /* Bekend van section on product page: smaller on tablet */
  .ss-product-bekend-van {
    padding: 24px 0 !important;
  }
  /* Toepassingen: 3 columns on tablet */
  .ss-use-cases-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  /* Stats bar: 2x2 on tablet */
  .ss-stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  /* Footer: 2 columns on tablet */
  .ss-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px;
  }
  /* Shop grid: 2 columns on tablet */
  .ss-shop-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Legal page: single column on tablet */
  .ss-legal-layout {
    grid-template-columns: 1fr !important;
  }
  /* Retour form: full width on tablet */
  .ss-retour-form-wrap {
    max-width: 100% !important;
  }
}

/* Tablet portrait (768px) specific */
@media (max-width: 900px) and (min-width: 769px) {
  /* Product single grid: stack on narrow tablet */
  .ss-product-single-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  /* Gallery: not sticky on tablet */
  .ss-product-gallery {
    position: static !important;
  }
}

/* ============================================================
   EUROPA SECTION: Clickable country flags (v7.6)
   ============================================================ */

/* Override the base grid layout to use a wider, more spacious grid */
.ss-europa-countries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 32px;
  max-width: none !important; /* override the 320px cap */
}

/* Each country item is now a proper card */
.ss-europa-country,
.ss-europa-country-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
  transition: background 0.18s var(--ease-out), transform 0.15s var(--ease-out), border-color 0.18s ease;
  min-width: 0;
}
.ss-europa-country-link:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}

/* Flag emoji */
.ss-europa-country span:first-child,
.ss-europa-country-link span:first-child {
  font-size: 1.8rem;
  line-height: 1;
}

/* Country name — white, clearly readable */
.ss-europa-country span:last-child,
.ss-europa-country-link span:last-child {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

/* External link icon — appears on hover */
.ss-country-ext-icon {
  position: absolute;
  top: 5px;
  right: 5px;
  opacity: 0;
  color: rgba(255,255,255,0.6);
  stroke: rgba(255,255,255,0.6);
  transition: opacity 0.18s ease;
}
.ss-europa-country-link:hover .ss-country-ext-icon {
  opacity: 1;
}


/* ============================================================
   SEO CONTENT SECTION (v7.6)
   Brede, on-brand tekstsectie onderaan homepage voor SEO
   ============================================================ */
.ss-seo-content-section {
  background: var(--brand-gray-light);
  padding: 72px 0 64px;
  border-top: 3px solid var(--brand-teal);
}
.ss-seo-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
/* ---- Intro block: 2-col on desktop ---- */
.ss-seo-intro-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--brand-border);
}
.ss-seo-h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}
.ss-seo-lead {
  font-size: 1rem;
  color: var(--brand-gray);
  margin-bottom: 0;
  line-height: 1.7;
}
.ss-seo-usp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ss-seo-usp-list li {
  font-size: 0.9rem;
  color: var(--brand-dark);
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}
.ss-seo-usp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  background: var(--brand-teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.ss-seo-usp-list a {
  color: var(--brand-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
/* ---- Text blocks ---- */
.ss-seo-text-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--brand-border);
}
.ss-seo-text-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.ss-seo-h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}
.ss-seo-text-block > p {
  font-size: 0.93rem;
  color: var(--brand-gray);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 820px;
}
.ss-seo-text-block > p:last-of-type {
  margin-bottom: 0;
}
.ss-seo-text-block a {
  color: var(--brand-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
/* ---- Sub-blocks (2 cards side by side) ---- */
.ss-seo-sub-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.ss-seo-sub-block {
  background: #fff;
  border-radius: 12px;
  padding: 28px 28px 24px;
  border: 1px solid var(--brand-border);
  border-top: 3px solid var(--brand-teal);
  box-shadow: var(--shadow-sm);
}
.ss-seo-h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.ss-seo-sub-block p {
  font-size: 0.88rem;
  color: var(--brand-gray);
  line-height: 1.75;
  margin-bottom: 10px;
}
.ss-seo-sub-block p:last-child { margin-bottom: 0; }
.ss-seo-sub-block a {
  color: var(--brand-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
/* ---- Quote block ---- */
.ss-seo-quote {
  margin: 48px 0 0;
  padding: 32px 40px;
  background: var(--brand-dark);
  border-radius: 14px;
  border-left: 5px solid var(--brand-teal);
  position: relative;
  overflow: hidden;
}
.ss-seo-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  margin: 0;
}
/* ---- Tablet ---- */
@media (max-width: 1024px) {
  .ss-seo-intro-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 900px) {
  .ss-seo-sub-blocks {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* ---- Mobile ---- */
@media (max-width: 600px) {
  .ss-seo-content-section { padding: 48px 0 40px; }
  .ss-seo-h1 { font-size: 1.5rem; }
  .ss-seo-h2 { font-size: 1.3rem; }
  .ss-seo-quote { padding: 24px; }
}

/* ============================================================
   LANDEN SECTIE FIX (v7.7)
   - Landnamen wit (niet groen) op donkere achtergrond
   - Landnamen verborgen op mobiel (alleen vlaggen)
   ============================================================ */

/* Ensure country label is always white, not inheriting green */
.ss-europa-country .ss-country-label,
.ss-europa-country-link .ss-country-label,
.ss-europa-country span:last-child,
.ss-europa-country-link span:last-child {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

/* On mobile: hide country labels, show only flags */
@media (max-width: 600px) {
  .ss-country-label {
    display: none !important;
  }
  /* Make flag cards smaller and more compact on mobile */
  .ss-europa-country-link {
    padding: 10px 6px;
    min-width: 52px;
    width: auto;
  }
  .ss-europa-country-link .ss-country-flag,
  .ss-europa-country-link span:first-child {
    font-size: 1.8rem;
  }
  .ss-europa-countries {
    grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
    gap: 8px;
    padding: 0 4px;
  }
}

/* ============================================================
   ACTIEVE LANDEN + LOGO FIX (v7.8)
   ============================================================ */

/* Active country card (NL + BE) — subtle highlight */
.ss-europa-country-active {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

/* Active badge — small yellow checkmark in top-right corner */
.ss-country-active-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--brand-yellow);
  color: #1a1a1a;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
  line-height: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo: larger image, reduce surrounding whitespace */
.ss-logo-img-wrap {
  height: 52px !important;
  max-width: 210px !important;
}
.ss-logo-img-wrap img,
.ss-logo-img-wrap .custom-logo,
.ss-logo-img-wrap .custom-logo-link img {
  height: 52px !important;
  max-height: 52px !important;
  max-width: 210px !important;
}
.ss-logo-img-wrap .custom-logo-link {
  height: 52px !important;
}
.ss-logo img,
.ss-logo .custom-logo {
  height: 52px !important;
  max-width: 210px !important;
}

/* Reduce header inner padding slightly to compensate for bigger logo */
.ss-header-inner {
  padding: 8px 0 !important;
}

/* ===================================================
   v7.8 — DEALER-WORDEN + OVER-ONS RESTYLING
   =================================================== */

/* --- DEALER HERO --- */
.ss-dealer-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ss-dealer-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.ss-dealer-hero:hover .ss-dealer-hero-bg { transform: scale(1); }
.ss-dealer-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,20,0.88) 0%, rgba(0,80,70,0.72) 100%);
}
.ss-dealer-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}
.ss-dealer-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 12px 0 18px;
  letter-spacing: -0.01em;
}
.ss-dealer-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 28px;
}
.ss-dealer-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.ss-dealer-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  margin-top: 8px;
}
.ss-dealer-hero-trust-item {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
  margin-right: 28px;
}
.ss-dealer-hero-trust-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.ss-dealer-hero-trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.ss-dealer-hero-trust-sep {
  width: 1px;
  background: rgba(255,255,255,0.15);
  margin-right: 28px;
  align-self: stretch;
}

/* --- DEALER BENEFITS VISUAL LAYOUT --- */
.ss-dealer-benefits-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.ss-dealer-benefit-featured {
  background: linear-gradient(135deg, var(--brand-teal) 0%, #006060 100%);
  border-radius: 16px;
  padding: 40px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ss-dealer-benefit-featured::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.ss-dealer-benefit-featured-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.ss-dealer-benefit-featured h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ss-dealer-benefit-featured p {
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  font-size: 0.95rem;
}
.ss-dealer-benefit-featured-badge {
  display: inline-block;
  background: var(--brand-teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 20px;
  align-self: flex-start;
}
.ss-dealer-benefits-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ss-dealer-benefit-card-v2 {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 24px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ss-dealer-benefit-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ss-dealer-benefit-icon-v2 {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ss-dealer-benefit-card-v2 h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 8px;
}
.ss-dealer-benefit-card-v2 p {
  font-size: 0.875rem;
  color: var(--brand-gray);
  line-height: 1.6;
}

/* --- DEALER STEPS V2 --- */
.ss-dealer-steps-v2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.ss-dealer-step-v2 {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 20px;
}
.ss-dealer-step-num-v2 {
  width: 40px;
  height: 40px;
  background: var(--brand-teal);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.ss-dealer-step-icon-v2 {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: rgba(255,255,255,0.85);
}
.ss-dealer-step-v2 h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}
.ss-dealer-step-v2 p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.ss-dealer-step-connector-v2 {
  padding-top: 56px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* --- DEALER SLIDER SECTION (page variant) --- */
.ss-dealer-slider-section {
  background: #f9fafb;
  padding: 48px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
}
.ss-dealer-slider-header {
  text-align: center;
  margin-bottom: 20px;
}
.ss-dealer-slider-title {
  color: var(--brand-gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- DEALER QUOTE --- */
.ss-dealer-quote-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}
.ss-dealer-quote-icon {
  margin-bottom: 16px;
}
.ss-dealer-quote-text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--brand-dark);
  font-style: italic;
  margin-bottom: 16px;
}
.ss-dealer-quote-author {
  color: var(--brand-gray);
  font-size: 0.875rem;
}

/* --- OVER ONS HERO --- */
.ss-about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--brand-dark);
  overflow: hidden;
}
.ss-about-hero-left {
  padding: 80px 48px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ss-about-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 12px 0 18px;
}
.ss-about-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 28px;
}
.ss-about-hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
}
.ss-about-hero-stat {
  display: flex;
  flex-direction: column;
}
.ss-about-hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}
.ss-about-hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.ss-about-hero-right {
  position: relative;
  overflow: hidden;
}
.ss-about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ss-about-hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--brand-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* --- ABOUT STORY GRID --- */
.ss-about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ss-about-story-text h2 {
  margin-bottom: 20px;
}
.ss-about-story-text p {
  color: var(--brand-gray);
  line-height: 1.75;
  margin-bottom: 14px;
}
.ss-about-story-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--brand-dark);
  font-weight: 500;
}
.ss-about-story-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.ss-about-story-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* --- ABOUT TIMELINE --- */
.ss-about-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.ss-about-timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.1);
}
.ss-about-timeline-item {
  display: grid;
  grid-template-columns: 100px 32px 1fr;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-left: 20px;
}
.ss-about-timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.4);
  text-align: right;
  padding-top: 2px;
}
.ss-about-timeline-dot {
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.ss-about-timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.ss-about-timeline-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* --- ABOUT VALUES GRID --- */
.ss-about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ss-about-value-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ss-about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.ss-about-value-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.ss-about-value-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 10px;
}
.ss-about-value-card p {
  font-size: 0.85rem;
  color: var(--brand-gray);
  line-height: 1.65;
}

/* --- ABOUT PHOTO GRID --- */
.ss-about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.ss-about-photo-item {
  border-radius: 12px;
  overflow: hidden;
}
.ss-about-photo-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ss-about-photo-item:hover img { transform: scale(1.04); }
.ss-about-photo-tall {
  grid-row: span 2;
}
.ss-about-photo-tall img {
  height: 100%;
  min-height: 452px;
}
.ss-about-photo-wide {
  grid-column: span 2;
}
.ss-about-photo-wide img {
  height: 220px;
}

/* --- TABLET RESPONSIVE for new pages --- */
@media (max-width: 1024px) {
  .ss-dealer-benefits-visual { grid-template-columns: 1fr; }
  .ss-dealer-benefits-grid-v2 { grid-template-columns: 1fr 1fr; }
  .ss-about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .ss-about-hero { grid-template-columns: 1fr; }
  .ss-about-hero-right { height: 300px; }
  .ss-about-hero-left { padding: 60px 32px 40px; }
  .ss-about-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .ss-about-story-photo img { height: 280px; }
}

/* --- MOBILE RESPONSIVE for new pages --- */
@media (max-width: 768px) {
  .ss-dealer-hero-title { font-size: 2rem; }
  .ss-dealer-hero-trust { gap: 12px; }
  .ss-dealer-hero-trust-sep { display: none; }
  .ss-dealer-hero-trust-item { padding-right: 0; margin-right: 0; }
  .ss-dealer-steps-v2 { flex-direction: column; align-items: center; gap: 24px; }
  .ss-dealer-step-connector-v2 { transform: rotate(90deg); padding-top: 0; }
  .ss-dealer-benefits-grid-v2 { grid-template-columns: 1fr; }
  .ss-about-timeline::before { left: 80px; }
  .ss-about-timeline-item { grid-template-columns: 60px 24px 1fr; gap: 12px; padding-left: 8px; }
  .ss-about-timeline-year { font-size: 1rem; }
  .ss-about-values-grid { grid-template-columns: 1fr 1fr; }
  .ss-about-photo-grid { grid-template-columns: 1fr 1fr; }
  .ss-about-photo-tall { grid-row: span 1; }
  .ss-about-photo-tall img { min-height: 200px; height: 200px; }
  .ss-about-photo-wide { grid-column: span 2; }
}

/* ===================================================
   v8.0 — MOBILE FIXES dealer-worden + over-ons
   =================================================== */

/* --- DEALER WORDEN MOBILE --- */
@media (max-width: 600px) {
  /* Hero */
  .ss-dealer-hero { min-height: 520px; }
  .ss-dealer-hero-content { padding: 60px 0 40px; }
  .ss-dealer-hero-title { font-size: 1.75rem; line-height: 1.1; }
  .ss-dealer-hero-sub { font-size: 0.9rem; }
  .ss-dealer-hero-btns { flex-direction: column; gap: 10px; }
  .ss-dealer-hero-btns .ss-btn { width: 100%; text-align: center; justify-content: center; }
  .ss-dealer-hero-trust { flex-wrap: wrap; gap: 16px 20px; padding-top: 16px; }
  .ss-dealer-hero-trust-item { padding-right: 0; margin-right: 0; min-width: 80px; }
  .ss-dealer-hero-trust-sep { display: none; }

  /* Benefits */
  .ss-dealer-benefit-featured { min-height: 240px; padding: 28px 24px; }
  .ss-dealer-benefit-featured h3 { font-size: 1.2rem; }
  .ss-dealer-benefits-grid-v2 { grid-template-columns: 1fr; gap: 12px; }
  .ss-dealer-benefit-card-v2 { padding: 20px 16px; }

  
/* Steps more link */
.ss-steps-more-link {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #6b7280;
}
.ss-steps-more-link a {
  color: var(--brand-teal);
  font-weight: 600;
  text-decoration: none;
}
.ss-steps-more-link a:hover {
  text-decoration: underline;
}
/* Steps */
  .ss-dealer-steps-v2 { flex-direction: column; align-items: stretch; gap: 0; padding: 0 16px; }
  .ss-dealer-step-v2 { max-width: 100%; text-align: left; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: row; gap: 16px; align-items: flex-start; }
  .ss-dealer-step-v2:last-child { border-bottom: none; }
  .ss-dealer-step-num-v2 { flex-shrink: 0; margin: 0; }
  .ss-dealer-step-icon-v2 { display: none; }
  .ss-dealer-step-connector-v2 { display: none; }
  .ss-dealer-step-v2 h3 { text-align: left; }
  .ss-dealer-step-v2 p { text-align: left; }

  /* Form section */
  .ss-dealer-form-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .ss-dealer-form-benefits { margin-bottom: 0; }
}

/* --- OVER ONS MOBILE --- */
@media (max-width: 600px) {
  /* Hero */
  .ss-about-hero { grid-template-columns: 1fr; min-height: auto; }
  .ss-about-hero-left { padding: 48px 20px 36px; }
  .ss-about-hero-title { font-size: 1.75rem; }
  .ss-about-hero-sub { font-size: 0.9rem; max-width: 100%; }
  .ss-about-hero-stats { flex-wrap: wrap; gap: 16px; }
  .ss-about-hero-stat-num { font-size: 1.2rem; }
  .ss-about-hero-right { height: 220px; }
  .ss-about-hero-badge { font-size: 0.72rem; padding: 6px 10px; }

  /* Story */
  .ss-about-story-grid { grid-template-columns: 1fr; gap: 24px; }
  .ss-about-story-photo img { height: 220px; }
  .ss-about-story-text p { font-size: 0.9rem; }

  /* Timeline */
  .ss-about-timeline::before { left: 52px; }
  .ss-about-timeline-item { grid-template-columns: 44px 20px 1fr; gap: 10px; padding-left: 4px; margin-bottom: 28px; }
  .ss-about-timeline-year { font-size: 0.85rem; }
  .ss-about-timeline-dot { width: 10px; height: 10px; margin-top: 5px; }
  .ss-about-timeline-content h3 { font-size: 0.9rem; }
  .ss-about-timeline-content p { font-size: 0.82rem; }

  /* Values */
  .ss-about-values-grid { grid-template-columns: 1fr; gap: 12px; }
  .ss-about-value-card { padding: 20px 16px; display: flex; flex-direction: row; align-items: flex-start; gap: 16px; text-align: left; }
  .ss-about-value-icon { width: 52px; height: 52px; margin: 0; flex-shrink: 0; }
  .ss-about-value-card h3 { margin-bottom: 6px; }

  /* Photo grid */
  .ss-about-photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ss-about-photo-tall { grid-row: span 1; }
  .ss-about-photo-tall img { min-height: 200px; height: 200px; }
  .ss-about-photo-wide { grid-column: span 1; }
  .ss-about-photo-wide img { height: 200px; }
  .ss-about-photo-item img { height: 200px; }
}

/* --- DEALER FORM GRID --- */
.ss-dealer-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .ss-dealer-form-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --- DEALER FORM LAYOUT --- */
.ss-dealer-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ss-dealer-form-left {
  color: rgba(255,255,255,0.85);
}
.ss-dealer-form-left h2 {
  color: #fff;
  margin-bottom: 12px;
}
.ss-dealer-form-left p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  line-height: 1.65;
}
.ss-dealer-form-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ss-dealer-form-benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.ss-dealer-form-benefits-list li svg {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ss-dealer-form-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   RETOUR SECTIE - Volledig restyled (v8.2)
   ============================================================ */
.ss-retour-section {
  background: var(--brand-dark);
  padding: 80px 0;
}
.ss-retour-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
/* Left info column */
.ss-retour-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 12px;
}
.ss-retour-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px;
}
.ss-retour-lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}
.ss-retour-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ss-retour-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
}
.ss-retour-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.ss-retour-contact {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
}
.ss-retour-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.ss-retour-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.ss-retour-contact-link:hover {
  color: var(--brand-teal);
}
/* Right form card */
.ss-retour-form-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.ss-retour-form-header {
  background: var(--brand-teal);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.ss-retour-form-body {
  padding: 28px;
}
/* CF7 form styling inside the card */
.ss-retour-form-body .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ss-retour-form-body p {
  margin-bottom: 16px !important;
}
.ss-retour-form-body label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.ss-retour-form-body .wpcf7-form-control-wrap {
  display: block;
}
.ss-retour-form-body input[type="text"],
.ss-retour-form-body input[type="email"],
.ss-retour-form-body select,
.ss-retour-form-body textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9375rem;
  color: var(--brand-dark);
  background: #fafafa;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  box-sizing: border-box;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.ss-retour-form-body select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.ss-retour-form-body input[type="text"]:focus,
.ss-retour-form-body input[type="email"]:focus,
.ss-retour-form-body select:focus,
.ss-retour-form-body textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.12);
}
.ss-retour-form-body textarea {
  min-height: 90px;
  resize: vertical;
}
.ss-retour-form-body input[type="submit"] {
  width: 100%;
  padding: 14px 24px;
  background: var(--brand-teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 4px;
}
.ss-retour-form-body input[type="submit"]:hover {
  background: #00796b;
}
.ss-retour-form-body input[type="submit"]:active {
  transform: scale(0.98);
}
.ss-retour-form-body .wpcf7-not-valid-tip {
  color: #e53e3e;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}
.ss-retour-form-body .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.ss-retour-form-body .wpcf7-mail-sent-ok {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.ss-retour-form-body .wpcf7-validation-errors,
.ss-retour-form-body .wpcf7-mail-sent-ng {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
/* Mobile */
@media (max-width: 768px) {
  .ss-retour-section { padding: 50px 0; }
  .ss-retour-inner { grid-template-columns: 1fr; gap: 36px; }
  .ss-retour-form-body { padding: 20px; }
}

/* ===================================================================
   v8.3 FIXES: Loading state, dealer-worden mobile, hamburger menu, legal bullets
   =================================================================== */

/* --- Fix 2: Dealer locator loading state --- */
.ss-locator-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
}
.ss-locator-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(61,139,139,0.2);
  border-top-color: var(--brand-teal, #3d8b8b);
  border-radius: 50%;
  animation: ss-spin 0.8s linear infinite;
}
@keyframes ss-spin {
  to { transform: rotate(360deg); }
}
.ss-locator-loading-text {
  font-family: var(--font-body, 'Barlow', sans-serif);
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}
.ss-locator-dots::after {
  content: '';
  animation: ss-dots 1.4s steps(4, end) infinite;
}
@keyframes ss-dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

/* --- Fix 3: Dealer-worden hero — center on mobile, buttons centered --- */
@media (max-width: 600px) {
  .ss-dealer-hero-content {
    text-align: center;
    align-items: center;
  }
  .ss-dealer-hero-title { text-align: center; }
  .ss-dealer-hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .ss-dealer-hero-btns {
    justify-content: center;
    align-items: center;
  }
  .ss-dealer-hero-btns .ss-btn {
    width: auto;
    min-width: 200px;
    text-align: center;
    justify-content: center;
  }
  .ss-dealer-hero-trust { justify-content: center; }
}

/* --- Fix 4: Dealer-worden stappen — title above on mobile --- */
@media (max-width: 600px) {
  .ss-dealer-step-v2 {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    padding: 20px 0 !important;
  }
  .ss-dealer-step-num-v2 { order: -1; margin-bottom: 2px; }
  .ss-dealer-step-v2 h3 {
    order: 0;
    margin-top: 0 !important;
    font-size: 1.05rem !important;
  }
  .ss-dealer-step-v2 p {
    order: 1;
    font-size: 0.875rem !important;
  }
}

/* --- Fix 5: Dealer-worden form fields — reduce gap on mobile --- */
@media (max-width: 600px) {
  .ss-dealer-form .ss-form-row {
    gap: 0 !important;
    margin-bottom: 0 !important;
  }
  .ss-dealer-form .ss-form-field { margin-bottom: 10px !important; }
  .ss-dealer-form .ss-form-input,
  .ss-dealer-form .ss-form-select,
  .ss-dealer-form textarea.ss-form-input { margin-bottom: 0 !important; }
  .ss-dealer-form-layout { gap: 24px !important; }
}

/* --- Fix 6: Hamburger menu — primary/secondary split --- */
.ss-mobile-nav-primary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.ss-mobile-nav-secondary {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ss-mobile-nav-primary .ss-mobile-nav-item {
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  padding: 10px 0 !important;
  letter-spacing: 0.01em;
}
.ss-mobile-nav-secondary .ss-mobile-nav-item {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  padding: 7px 0 !important;
  opacity: 0.75;
}
.ss-mobile-nav-secondary .ss-mobile-nav-item:hover { opacity: 1; }

/* --- Fix 7: Verzenden-retourneren bullets — align with titles on mobile --- */
@media (max-width: 600px) {
  .ss-legal-article ul { padding-left: 0 !important; }
  .ss-legal-article ul li { padding-left: 26px !important; }
  .ss-legal-article ul li::before { left: 0 !important; }
}

/* ============================================================
   HAMBURGER MENU — Redesign: left-aligned, proper padding,
   CTA buttons below links, Dealer vinden = primary button
   ============================================================ */

/* Container: proper left padding so links aren't near the edge */
.ss-mobile-nav-links {
  padding: 16px 0 !important;
}

/* Primary items: left-aligned with proper left padding */
.ss-mobile-nav-primary .ss-mobile-nav-item {
  padding: 12px 24px !important;
  font-size: 1.2rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  text-align: left !important;
}

/* Secondary items: left-aligned, smaller, less prominent */
.ss-mobile-nav-secondary {
  padding-top: 8px !important;
  margin-top: 4px !important;
  border-top: 1px solid rgba(255,255,255,0.12) !important;
}
.ss-mobile-nav-secondary .ss-mobile-nav-item {
  padding: 9px 24px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  opacity: 0.65;
  border-bottom: none !important;
  text-align: left !important;
}
.ss-mobile-nav-secondary .ss-mobile-nav-item:hover {
  opacity: 1 !important;
}

/* Arrow: keep it right-aligned */
.ss-mobile-nav-item::after {
  right: 20px !important;
}

/* CTA section: Dealer vinden = primary (yellow), Online bestellen = secondary */
.ss-mobile-cta-primary {
  background: var(--brand-yellow, #f5c518) !important;
  color: #1a2e1a !important;
}
.ss-mobile-cta-secondary {
  border-color: rgba(255,255,255,0.5) !important;
}

/* Swap order: Dealer vinden first (yellow), Online bestellen second (outline) */
.ss-mobile-nav-cta {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 16px 24px 20px !important;
}

/* ============================================================
   MOBILE: Prevent zoom-in on input focus (iOS/Android)
   iOS Safari and Android Chrome zoom in when font-size < 16px
   ============================================================ */
@media (max-width: 768px) {
    input,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    input[type="search"],
    input[type="url"],
    input[type="date"],
    select,
    textarea,
    .ss-form-input,
    .ss-form-select,
    .woocommerce-checkout input,
    .woocommerce-checkout select,
    .woocommerce-checkout textarea,
    .woocommerce input,
    .woocommerce select,
    .woocommerce textarea,
    .wc-block-components-text-input input,
    .wc-block-components-select select,
    .wc-block-components-textarea textarea,
    .wp-block-woocommerce-checkout input,
    .wp-block-woocommerce-checkout select,
    .wp-block-woocommerce-checkout textarea,
    .woocommerce-form input,
    .woocommerce-form select,
    .woocommerce-form textarea,
    #order_comments,
    .input-text {
        font-size: 16px !important;
    }
}

/* --- Nav: "Het product" subtle icons (play + handleiding) --- */
.ss-nav-product-icons {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 5px;
  opacity: 0.45;
  vertical-align: middle;
  position: relative;
  top: -1px;
  transition: opacity 0.18s;
}
.ss-nav-product-link:hover .ss-nav-product-icons,
.ss-mobile-nav-product:hover .ss-nav-product-icons {
  opacity: 0.75;
}
/* Mobile: keep icons inline with text */
.ss-mobile-nav-product .ss-nav-product-icons {
  margin-left: 6px;
  top: 0;
}

/* ============================================================
   FIX: Desktop nav links — prevent wrapping to two lines
   FIX: Hamburger menu — prevent content overflow on small iPhones (< 375px)
   ============================================================ */

/* 1. Prevent nav link text from wrapping */
.ss-nav a,
.ss-header .ss-nav a {
  white-space: nowrap !important;
}
/* Also prevent the product icons from causing wrap */
.ss-nav-product-link {
  white-space: nowrap !important;
}

/* 2. Hamburger menu: ensure it never overflows the viewport on any screen size */
.ss-mobile-nav {
  width: 100vw !important;
  max-width: 360px !important;
  box-sizing: border-box !important;
}

/* 3. On very small screens (< 360px), reduce padding so content fits */
@media (max-width: 359px) {
  .ss-mobile-nav-header {
    padding: 16px 16px !important;
  }
  .ss-mobile-nav-primary .ss-mobile-nav-item {
    padding: 11px 16px !important;
    font-size: 1.05rem !important;
  }
  .ss-mobile-nav-secondary .ss-mobile-nav-item {
    padding: 8px 16px !important;
  }
  .ss-mobile-nav-cta {
    padding: 14px 16px 18px !important;
  }
  .ss-mobile-nav-social {
    padding: 14px 16px 20px !important;
  }
  .ss-mobile-nav-item::after {
    right: 12px !important;
  }
}

/* ============================================================
   FIX: de-stortslurf hero — proper left padding on all mobile sizes
   ============================================================ */
@media (max-width: 768px) {
  .ss-ds-hero-content.container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 480px) {
  .ss-ds-hero-content.container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ============================================================
   FIX: de-stortslurf checkmarks — styled teal circle (same as retour checklist)
   ============================================================ */
.ss-ds-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-dark);
}
.ss-ds-check svg {
  display: none; /* hide the plain SVG stroke */
}
.ss-ds-check::before {
  content: '';
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background-color: var(--brand-teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
  flex-shrink: 0;
}

/* ============================================================
   FIX: klantervaringen featured video — play button overlay visible
   ============================================================ */
.ss-video-featured .ss-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.ss-video-featured:hover .ss-video-play-btn {
  background: var(--brand-teal);
  transform: translate(-50%, -50%) scale(1.08);
}
/* Ensure the overlay gradient is always visible */
.ss-video-featured-info {
  z-index: 2;
}

/* ============================================================
   PHOTO LIGHTBOX — klantervaringen
   ============================================================ */
.ss-photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.ss-photo-lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ss-photo-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.ss-photo-lightbox-close:hover { opacity: 1; }
.ss-photo-lightbox-img-wrap {
  width: 100%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-photo-lightbox-img-wrap img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
}
.ss-photo-lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  text-align: center;
  margin: 0;
}
.ss-photo-lightbox-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  font-size: 0.875rem;
}
.ss-photo-lightbox-nav button {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.ss-photo-lightbox-nav button:hover { background: var(--brand-teal); }

/* Zoom hint on photo hover */
.ss-customer-photo-item {
  position: relative;
  overflow: hidden;
}
.ss-photo-zoom-hint {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.ss-customer-photo-item:hover .ss-photo-zoom-hint { opacity: 1; }
.ss-customer-photo-item:hover img {
  transform: scale(1.04);
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
}
.ss-customer-photo-item img {
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
}

/* ── FIX: Reduce white space between klantfotos and products sections ── */
.ss-klantfotos-section { padding-bottom: 40px !important; }
.ss-products-home-section { padding-top: 40px !important; }

/* ── FIX: Customer photos grid - prevent empty cells ── */
/* Desktop: 3 cols, wide photo spans 2 → row1: wide(2)+photo(1)=3, rows 2-3: 3 each = 9 cells for 8 photos... */
/* Better: use 4 cols on desktop, no wide span → 8 photos = 2 rows of 4 */
.ss-customer-photos-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
.ss-customer-photo.ss-customer-photo-wide {
  grid-column: span 1 !important;
  aspect-ratio: 1/1 !important;
}
@media (max-width: 900px) {
  .ss-customer-photos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .ss-customer-photo.ss-customer-photo-wide {
    grid-column: span 2 !important;
    aspect-ratio: 16/9 !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   FIX v9.8 — Breadcrumb compact, hover cleanup, sticky header
   ══════════════════════════════════════════════════════════════ */

/* 1. Compact breadcrumb bar on product pages */
.ss-breadcrumb-bar {
  padding: 6px 0 4px !important;
  background: transparent !important;
}
.woocommerce .woocommerce-breadcrumb {
  padding: 4px 0 !important;
  margin-bottom: 12px !important;
}

/* 2. Remove hover zoom on non-clickable photo sliders (homepage use-case grid and customer photos) */
.ss-use-case-item:hover img {
  transform: none !important;
}
.ss-customer-photo:hover img {
  transform: none !important;
}
.ss-customer-photo-item:hover img {
  transform: none !important;
}
/* Also remove hover on about page photos */
.ss-about-photo-item:hover img {
  transform: none !important;
}

/* 3. Sticky topbar + header — keep both fully visible on scroll */
.ss-topbar {
  position: sticky;
  top: 0;
  z-index: 101;
}
.ss-header {
  top: 0;
  z-index: 100;
}

/* ══════════════════════════════════════════════════════════════
   FIX v10.0 — Sticky wrapper: topbar + header always together
   ══════════════════════════════════════════════════════════════ */
.ss-sticky-wrapper {
  position: sticky;
  top: 0;
  z-index: 200;
}
/* Remove individual sticky from topbar and header — wrapper handles it */
.ss-topbar {
  position: static !important;
}
.ss-header {
  position: static !important;
}
/* Adjust sticky-dependent elements to account for combined header height (~37px topbar + ~65px header = ~102px) */
/* Only on desktop — on mobile these elements are not sticky */
@media (min-width: 769px) {
  .ss-shop-filters {
    top: 102px !important;
  }
  /* .ss-product-gallery sticky removed to fix grid alignment */
  .ss-faq-sidebar-box {
    top: 112px !important;
  }
  .ss-ds-step-img-wrap {
    top: 112px !important;
  }
  .ss-cart-page-summary-box {
    top: 112px !important;
  }
}

/* ── FIX: FAQ accordion open state (missing rule) ── */
.ss-faq-item.open .ss-faq-answer {
  max-height: 600px;
  padding-bottom: 16px;
}

/* === v10.2: Breadcrumb bar — remove divider line, ultra compact === */
.ss-breadcrumb-bar {
  padding: 6px 0 4px !important;
  border-bottom: none !important;
  background: transparent !important;
}
.ss-breadcrumb {
  font-size: 0.8125rem !important;
}

/* ── FOOTER BETAALMETHODEN (Mollie dynamisch) ─────────────── */
.ss-footer-payment-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.ss-footer-payment-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.ss-footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ss-footer-payment-icon {
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 48px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ss-footer-payment-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.ss-footer-payment-icon img {
  height: 20px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .ss-footer-payment-row { gap: 12px; }
  .ss-footer-payment-icon { height: 28px; min-width: 40px; padding: 3px 6px; }
  .ss-footer-payment-icon img { height: 16px; }
}


/* ============================================================
   MOBILE POLISH v11.0 — Breadcrumb, alignment, USP overflow
   ============================================================ */

/* ── MOBILE BREADCRUMB on product page ── */
.ss-mobile-breadcrumb {
  background: #f9fafb;
  border-bottom: 1px solid #f0f0f0;
  padding: 7px 0;
}
.ss-breadcrumb-mobile {
  display: flex;
  align-items: center;
}
.ss-breadcrumb-mobile a {
  font-size: 0.8125rem;
  color: #6b7280;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.ss-breadcrumb-mobile a:hover {
  color: var(--brand-teal);
}

/* ── SHOP HERO USPs: wrap on mobile instead of horizontal scroll ── */
@media (max-width: 768px) {
  .ss-shop-hero-usps {
    flex-wrap: wrap !important;
    overflow-x: visible !important;
    gap: 10px 16px !important;
  }
  .ss-shop-hero-usps span {
    font-size: 0.8125rem !important;
  }
}

/* ── PRODUCT PAGE: fix alignment of content below gallery on mobile ── */
@media (max-width: 768px) {
  /* Ensure the product info section (tabs, includes, etc.) aligns with container */
  .ss-product-tabs-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* Accordeon body padding consistent with container */
  .ss-accordeon-body:not(.ss-accordeon-closed) {
    padding: 16px 0 !important;
  }
  /* Includes grid: full width, no extra indent */
  .ss-product-includes-grid {
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 16px !important;
  }
  /* Specs table: no extra horizontal padding */
  .ss-specs-table th,
  .ss-specs-table td {
    padding: 10px 8px !important;
  }
  /* Tab body: no extra left/right padding on mobile */
  .ss-tab-body {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ── PRODUCT PAGE: inbegrepen/niet-inbegrepen alignment ── */
@media (max-width: 640px) {
  .ss-product-includes-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .ss-includes-col {
    padding: 12px 14px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
  }
  .ss-includes-col h4 {
    margin-bottom: 8px !important;
    font-size: 0.8125rem !important;
  }
  .ss-includes-col li {
    font-size: 0.8125rem !important;
  }
}

/* ── SHOP FILTER TABS: don't overflow on very small screens ── */
@media (max-width: 400px) {
  .ss-shop-filter-btn {
    font-size: 0.75rem !important;
    padding: 7px 12px !important;
  }
}

/* ── TOPBAR: improve wrapping on 640-768px range ── */
@media (max-width: 768px) and (min-width: 641px) {
  .ss-topbar .container {
    gap: 12px !important;
    font-size: 0.75rem !important;
  }
}

/* ── PRODUCT MOBILE HEADER: consistent left alignment ── */
@media (max-width: 768px) {
  .ss-product-mobile-header {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Urgency bar: consistent with container padding */
  .ss-mobile-urgency-bar {
    margin-left: 0;
    margin-right: 0;
  }
  /* VS comparison block: no extra horizontal margin */
  .ss-vs-comparison {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  /* Completeer je set block: consistent width */
  .ss-completeer-set {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  /* Shipping info block: consistent */
  .ss-product-shipping-info {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  /* ATC row: full width */
  .ss-product-atc-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  /* Price block: consistent */
  .ss-product-price-block {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  /* Qty calculator: consistent */
  .ss-qty-calculator {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* ── FAQ PAGE: mobile improvements ── */
@media (max-width: 768px) {
  .ss-faq-category {
    margin-bottom: 24px !important;
  }
  .ss-faq-question {
    padding: 14px 16px !important;
    font-size: 0.9375rem !important;
  }
  .ss-faq-answer {
    font-size: 0.9rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ss-faq-item.open .ss-faq-answer {
    padding-bottom: 14px !important;
  }
}

/* ── FOOTER: payment icons wrap nicely on all mobile sizes ── */
@media (max-width: 480px) {
  .ss-footer-payment-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .ss-footer-payment-icons {
    gap: 6px !important;
  }
}

/* ── GENERAL: prevent horizontal overflow on all pages ── */
body {
  overflow-x: hidden;
}
.ss-section,
.ss-product-single-section {
  overflow-x: hidden;
}

/* === MOBILE POLISH v11.1 === */
@media (max-width: 768px) {
  .ss-product-info {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .ss-product-price-block,
  .ss-qty-calculator,
  .ss-product-atc-row,
  .ss-product-shipping-info,
  .ss-completeer-set,
  .ss-vs-comparison,
  .ss-product-desktop-header {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ss-product-includes-grid {
    padding: 0 !important;
  }
  .ss-includes-col {
    padding: 14px 16px !important;
  }
  .ss-product-single-section .container {
    overflow-x: hidden;
  }
}
@media (max-width: 640px) {
  .ss-shop-hero-usps {
    flex-wrap: wrap !important;
    gap: 8px 16px !important;
    justify-content: flex-start !important;
  }
  .ss-shop-hero-usp {
    white-space: nowrap;
    font-size: 0.8125rem !important;
  }
}
@media (max-width: 400px) {
  .ss-topbar .container {
    gap: 8px !important;
    font-size: 0.6875rem !important;
  }
}
.ss-mobile-breadcrumb {
  font-size: 0.75rem;
  color: #9ca3af;
  padding: 8px 0 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.ss-mobile-breadcrumb a {
  color: #9ca3af;
  text-decoration: none;
}
.ss-mobile-breadcrumb a:hover { color: var(--brand-teal); }
.ss-mobile-breadcrumb .ss-bc-sep { color: #d1d5db; }
.ss-mobile-breadcrumb .ss-bc-current {
  color: #6b7280;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}

/* ── COMPLETEER + TRUST ROW MOBILE POLISH ── */
@media (max-width: 768px) {
  .ss-completeer-item-inner {
    padding: 12px 14px;
    gap: 12px;
  }
  .ss-completeer-set {
    border-radius: 12px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 14px !important;
    box-sizing: border-box !important;
  }
  .ss-product-trust-row {
    gap: 8px;
    padding: 8px 0;
    background: transparent;
    border-radius: 0;
    margin-top: 12px;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .ss-trust-badge {
    font-size: 0.8125rem;
    padding: 4px 8px;
  }
}

/* ── TRUST ROW IN RIGHT COLUMN: force horizontal, no wrap ── */
.ss-product-info .ss-product-trust-desktop {
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
}
.ss-product-info .ss-product-trust-desktop .ss-trust-badge {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.7rem;
  padding: 5px 10px;
}

/* ── TRUST ROW IN RIGHT COLUMN: force row layout on desktop ── */
@media (min-width: 769px) {
  .ss-product-info .ss-product-trust-desktop {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    background: transparent !important;
    padding: 0 !important;
    margin-top: 12px !important;
  }
  .ss-product-info .ss-product-trust-desktop .ss-trust-badge {
    white-space: nowrap !important;
    flex: 0 0 auto !important;
    font-size: 0.7rem !important;
    padding: 5px 10px !important;
  }
}

/* ── CART ITEM: clickable name & image ── */
.ss-cart-item-name-link {
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 150ms ease;
}
.ss-cart-item-name-link:hover {
  color: var(--brand-teal);
  text-decoration: underline;
}
.ss-cart-item-img-link {
  display: block;
  flex-shrink: 0;
  transition: opacity 150ms ease;
}
.ss-cart-item-img-link:hover {
  opacity: 0.85;
}

/* ── DEALER PICKUP NOTICE ── */
.ss-dealer-pickup-notice {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #6b7280;
}
.ss-dealer-pickup-notice svg {
  flex-shrink: 0;
  color: var(--brand-teal);
}
.ss-dealer-pickup-notice a {
  color: var(--brand-teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── FAQ: "Alle vragen bekijken" link style (not a button) ── */
.ss-product-faq-header .btn.btn-outline {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-teal);
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  box-shadow: none;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.ss-product-faq-header .btn.btn-outline:hover {
  color: var(--brand-dark);
}

/* ── FAQ: mobile left alignment ── */
@media (max-width: 768px) {
  .ss-product-faq-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ss-product-faq-header {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ss-faq-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ss-faq-question {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ss-faq-answer {
    padding-left: 0 !important;
  }
  .ss-faq-item.open .ss-faq-answer {
    padding-left: 0 !important;
  }
}

/* ── NL BADGE OVERLAY on product gallery ── */
.ss-gallery-slider-wrap {
  position: relative;
}
.ss-nl-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.92);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 5px 10px 5px 7px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
  pointer-events: none;
}
.ss-nl-flag {
  font-size: 1rem;
  line-height: 1;
}
.ss-nl-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ── NL trust badge ── */
.ss-trust-nl {
  gap: 5px;
}
.ss-nl-flag-sm {
  font-size: 0.9rem;
  line-height: 1;
}

/* ── PRODUCT VIDEO SLIDER ── */
.ss-product-video-section {
  padding: 48px 0 40px;
  border-top: 1px solid #f3f4f6;
}
.ss-product-video-section .ss-section-header {
  margin-bottom: 28px;
}
.ss-product-video-section .ss-section-title {
  margin-bottom: 8px;
}
.ss-video-section-sub {
  font-size: 0.9375rem;
  color: #6b7280;
  margin: 0 0 8px;
  max-width: 640px;
}
.ss-video-slider-wrap {
  position: relative;
  overflow: hidden;
}
.ss-video-slider {
  display: flex;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.ss-video-slide {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
}
.ss-video-thumb-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.ss-video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ss-video-thumb-wrap:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}
.ss-video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.ss-video-play-overlay:hover { transform: scale(1.08); }
.ss-video-play-overlay:active { transform: scale(0.97); }
.ss-video-slide-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin: 10px 0 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ss-video-slider-nav {
  position: absolute;
  top: calc(50% - 28px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: box-shadow 0.2s, opacity 0.2s;
}
.ss-video-slider-nav:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.18); }
.ss-video-slider-prev { left: -12px; }
.ss-video-slider-next { right: -12px; }
.ss-video-section-cta {
  margin-top: 20px;
  text-align: center;
}
.ss-video-more-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-teal);
  text-decoration: none;
}
.ss-video-more-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .ss-video-slide {
    flex: 0 0 calc(50% - 8px);
  }
  .ss-video-slider-prev { left: -8px; }
  .ss-video-slider-next { right: -8px; }
}
@media (max-width: 480px) {
  .ss-video-slide {
    flex: 0 0 calc(85%);
  }
  .ss-video-slider-prev { left: 0; }
  .ss-video-slider-next { right: 0; }
}

/* Info tooltip for meters display */
.ss-info-tooltip-btn { background: none; border: none; cursor: pointer; padding: 0 0 0 6px; color: var(--brand-teal); display: inline-flex; align-items: center; vertical-align: middle; opacity: 1; transition: opacity 0.15s; }
.ss-info-tooltip-btn:hover { opacity: 1; }
.ss-qty-meters-display { position: relative; display: inline-flex; align-items: center; gap: 2px; }
.ss-info-tooltip { display: none; position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: var(--brand-dark); color: #fff; font-size: 0.8125rem; line-height: 1.5; padding: 12px 14px 12px 12px; border-radius: 8px; width: 260px; z-index: 100; box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
.ss-info-tooltip.visible { display: block; }
.ss-info-tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: var(--brand-dark); }
.ss-info-tooltip-close { position: absolute; top: 6px; right: 8px; background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; font-size: 0.875rem; padding: 0; line-height: 1; }
.ss-info-tooltip-close:hover { color: #fff; }
@media (max-width: 480px) { .ss-info-tooltip { left: 0; transform: none; width: 240px; } .ss-info-tooltip::after { left: 30px; transform: none; } }

/* ============================================================
   FOTO SLIDER (links/rechts pijlen) — v15.3
   ============================================================ */
.ss-foto-slider-section { padding: 60px 0; }
.ss-foto-slider-wrap {
  position: relative;
  overflow: hidden;
}
.ss-foto-slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ss-foto-slider-track::-webkit-scrollbar { display: none; }
.ss-foto-slide {
  flex: 0 0 calc(33.333% - 11px);
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #e5e7eb;
}
.ss-foto-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ss-foto-slide:hover img { transform: scale(1.04); }
.ss-foto-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
  color: var(--brand-dark);
}
.ss-foto-slider-btn:hover {
  background: var(--brand-teal);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.ss-foto-slider-prev { left: 8px; }
.ss-foto-slider-next { right: 8px; }
@media (max-width: 768px) {
  .ss-foto-slide { flex: 0 0 calc(50% - 8px); }
  .ss-foto-slider-prev { left: 4px; }
  .ss-foto-slider-next { right: 4px; }
}
@media (max-width: 480px) {
  .ss-foto-slide { flex: 0 0 calc(85%); }
  .ss-foto-slider-btn { width: 36px; height: 36px; }
}

/* Reviews section header row */
.ss-section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 12px;
}
.ss-all-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--brand-teal);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  white-space: nowrap;
}
.ss-all-link:hover { text-decoration: underline; }
.ss-reviews-section { padding: 60px 0; }

/* ============================================================
   FIXES v11 — 2026-05-24
   1. FAQ sidebar: categories box sticky causes contact block to be hidden
   2. Mobile product gallery: show full image (contain not cover)
   3. Tablet (769-1024px): de-stortslurf hero text padding
   4. Tablet (769-1024px): product single page → mobile layout
   ============================================================ */

/* --- FIX 1: FAQ sidebar — remove sticky from categories box,
              make the whole aside sticky so both boxes scroll together --- */
.ss-faq-sidebar-box {
  position: static !important;
  top: auto !important;
}
.ss-faq-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
@media (max-width: 768px) {
  .ss-faq-sidebar {
    position: static;
    top: auto;
  }
}

/* --- FIX 2: Mobile product gallery — full image visible (object-fit: contain) --- */
@media (max-width: 768px) {
  .ss-gallery-slider-wrap {
    aspect-ratio: 1 / 1 !important;
    max-height: none !important;
    background: #f9fafb;
  }
  .ss-gallery-slide img {
    object-fit: contain !important;
    padding: 8px !important;
    background: #f9fafb;
  }
  /* Also fix the product-gallery-main if used */
  .ss-product-gallery-main {
    aspect-ratio: 1 / 1 !important;
  }
  .ss-product-gallery-main img {
    object-fit: contain !important;
  }
}

/* --- FIX 3: Tablet — de-stortslurf hero text: add proper left padding --- */
@media (min-width: 769px) and (max-width: 1024px) {
  .ss-ds-hero-content.container {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .ss-ds-hero-h1 {
    font-size: clamp(1.6rem, 4vw, 2.5rem) !important;
    white-space: normal !important;
  }
}

/* --- FIX 4: Tablet (769-1280px) — product single page: stack to mobile layout --- */
@media (min-width: 769px) and (max-width: 1280px) {
  .ss-product-single-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .ss-product-gallery {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .ss-gallery-slider-wrap {
    aspect-ratio: 4 / 3 !important;
    max-height: 480px !important;
    min-height: 300px !important;
  }
  .ss-gallery-slide img {
    object-fit: contain !important;
    padding: 8px !important;
  }
}

/* --- MOBILE SCROLL-AWARE HEADER --- */
@media (max-width: 768px) {
  .ss-header {
    transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.25s ease;
    will-change: transform;
  }
  .ss-header.ss-header--hidden {
    transform: translateY(-100%);
    box-shadow: none;
  }
  .ss-header.ss-header--scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  }
}

/* ── FAQ PAGE: mobile padding fix (v16.11) ── */
/* Restore proper inner padding on FAQ question and answer on mobile */
@media (max-width: 768px) {
  /* Ensure FAQ items have horizontal padding so number/text don't touch edges */
  .ss-faq-page .ss-faq-question {
    padding: 14px 16px !important;
  }
  .ss-faq-page .ss-faq-answer {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .ss-faq-page .ss-faq-item.open .ss-faq-answer {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-bottom: 14px !important;
  }
  /* Hide the "Neem contact op met ons team" sidebar block on mobile */
  .ss-faq-sidebar-contact {
    display: none !important;
  }
}

/* === Bekend van - individual logos (v16.12) === */
.ss-bekend-van-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ss-bekend-van-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.ss-bekend-van-logo:hover {
  opacity: 1;
}
@media (max-width: 600px) {
  .ss-bekend-van-inner {
    gap: 20px;
  }
  .ss-bekend-van-logo {
    height: 28px;
  }
}

/* === Bekend van - logo resize fix (v16.13) === */
.ss-bekend-van-logo {
  height: 22px !important;
  width: auto !important;
  object-fit: contain !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
@media (max-width: 600px) {
  .ss-bekend-van-logo {
    height: 18px !important;
  }
}

/* === Bekend van - uniform logo height fix (v16.14) === */
.ss-bekend-van-inner {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  flex-wrap: wrap !important;
}
.ss-bekend-van-logo {
  height: 24px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  display: inline-block !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}
@media (max-width: 600px) {
  .ss-bekend-van-inner {
    gap: 16px !important;
  }
  .ss-bekend-van-logo {
    height: 18px !important;
  }
}


/* === Bekend van - combined image (v16.15) === */
.ss-bekend-van-combined {
  height: 36px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .ss-bekend-van-combined {
    height: 28px;
  }
}

/* ============================================================
   SLEAK.CHAT: push chat button above sticky ATC bar on mobile
   Sticky ATC bar is ~72px tall; offset chat button accordingly
   ============================================================ */
@media (max-width: 768px) {
  #sleak-buttonwrap {
    bottom: calc(var(--sleak-button-offset-y, 20px) + 72px) !important;
    z-index: 998 !important;
  }
  /* When sticky ATC bar is NOT visible, reset to normal position */
  body:not(.ss-sticky-active) #sleak-buttonwrap {
    bottom: var(--sleak-button-offset-y, 20px) !important;
  }
}
