/* ============================================================
   Wal-Beschoeiing.nl – Conversion Landing Page Styles
   Houthandel Jan Sok | Modernized 2026
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --green-900:  #0d2818;
  --green-800:  #1a4d2e;
  --green-700:  #215f38;
  --green-600:  #2d6a4f;
  --green-500:  #3a8a60;
  --green-300:  #8fbc9f;
  --green-200:  #cde9d6;
  --green-100:  #e8f5ed;
  --green-50:   #f3faf6;

  --wood-800:   #5c3a1a;
  --wood-700:   #8b5e34;
  --wood-400:   #c69963;
  --wood-200:   #e8d5b7;
  --wood-100:   #f5eedd;

  --gold-700:   #a6844a;
  --gold-500:   #c9a227;
  --gold-300:   #e8c96a;
  --gold-100:   #fdf5d9;

  --neutral-950: #0a0a0a;
  --neutral-900: #141414;
  --neutral-800: #1e1e1e;
  --neutral-700: #2d2d2d;
  --neutral-600: #4a4a4a;
  --neutral-500: #6b6b6b;
  --neutral-400: #9a9a9a;
  --neutral-300: #c4c4c4;
  --neutral-200: #e0e0e0;
  --neutral-100: #f4f4f4;
  --neutral-50:  #fafafa;
  --white:       #ffffff;

  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.12);
  --shadow-md:  0 4px 12px rgba(0,0,0,.1),  0 2px 6px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.15), 0 8px 20px rgba(0,0,0,.1);
  --shadow-gold: 0 4px 20px rgba(201,162,39,.35);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 72px;
  --topbar-h: 36px;

  /* Checkout / cart mock alignment (Wal-Beschoeiing reference) */
  --brand-green: #244c3c;
  --brand-gold: #c0a058;
  --brand-gray-50: #f5f5f5;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

/* ── Utility ────────────────────────────────────────────────── */
.text-gold { color: var(--gold-500); }

[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}
.btn--lg  { padding: 14px 28px; font-size: 1rem; }
.btn--sm  { padding: 9px 18px;  font-size: 0.875rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-700), var(--gold-500));
  color: var(--neutral-950);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,.45);
}

/* Flat gold CTA — matches cart/checkout reference (green text on gold) */
.btn--cart-checkout {
  background: var(--brand-gold);
  color: var(--brand-green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: none;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.btn--cart-checkout:hover {
  filter: brightness(0.96);
  transform: none;
  box-shadow: none;
  color: var(--brand-green);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--green-800);
  border: 2px solid var(--green-800);
}
.btn--outline-dark:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--green-700);
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
}
.btn--ghost:hover { color: var(--gold-700); }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  height: var(--topbar-h);
  background: var(--green-900);
  color: rgba(255,255,255,.8);
  font-size: 0.8rem;
  font-family: var(--font-display);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
  gap: 1rem;
}
.topbar__left { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar__right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__item a { color: rgba(255,255,255,.85); transition: color var(--transition); }
.topbar__item a:hover { color: var(--gold-500); }
.topbar__hours { color: rgba(255,255,255,.55); }
.topbar__badge {
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .topbar {
    height: auto;
    padding-block: 6px;
  }
  .topbar__inner {
    align-items: flex-start;
    gap: 0.45rem;
  }
  .topbar__left {
    width: 100%;
    gap: 0.5rem 0.85rem;
  }
  .topbar__right { display: none; }
}
@media (max-width: 480px) {
  .topbar { font-size: 0.72rem; }
  .topbar__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .topbar__item {
    width: 100%;
  }
  .topbar__item a {
    overflow-wrap: anywhere;
  }
}

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
  gap: 1.5rem;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { flex-shrink: 0; line-height: 0; }
.logo-icon img { border-radius: 6px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text__primary {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-800);
  letter-spacing: -0.3px;
}
.logo-text__sub {
  font-size: 0.68rem;
  color: var(--neutral-400);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--neutral-700);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}
.nav__link:hover { color: var(--green-800); background: var(--green-50); }

.header__cta { flex-shrink: 0; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header__cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: var(--neutral-700);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}
.header__cart-btn:hover {
  color: var(--green-800);
  background: var(--green-50);
  border-color: rgba(45, 106, 79, 0.2);
}
.header__cart-btn--active {
  color: var(--green-800);
  background: var(--green-50);
  border-color: rgba(45, 106, 79, 0.25);
}

.cart-count--badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  background: var(--gold-500);
  border-radius: var(--radius-full);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.cart-count--badge.cart-count--empty {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-700);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header__cta { display: none; }
  .header__actions { gap: 0.25rem; }
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--neutral-600);
}
.mobile-nav__link {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--neutral-800);
  padding: 14px 0;
  border-bottom: 1px solid var(--neutral-100);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--green-800); }
.mobile-nav__contact { margin-top: auto; padding-top: 2rem; }
.mobile-nav__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green-800);
}

/* ── Section Shared ─────────────────────────────────────────── */
.section { padding-block: clamp(3rem, 8vw, 6rem); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.75rem;
}
.section-label--light { color: var(--gold-300); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--green-900);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title--left { text-align: left; }
.section-title--white { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--neutral-500);
  line-height: 1.7;
}
.section-sub--left { text-align: left; }
.section-sub--light { color: rgba(255,255,255,.7); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: max(600px, 90vh);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80&auto=format&fit=crop')
    center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 40, 24, 0.88) 0%,
    rgba(26, 77, 46, 0.78) 50%,
    rgba(13, 40, 24, 0.82) 100%
  );
}

.hero__water-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(10,40,24,0.4), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.35);
  color: var(--gold-300);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.7);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 15px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { top: 8px; opacity: 1; }
  80% { top: 28px; opacity: 0; }
}

/* ── USP Bar ────────────────────────────────────────────────── */
.usp-bar {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  padding-block: 0;
  box-shadow: var(--shadow-sm);
}
.usp-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.5rem clamp(0.75rem, 2vw, 1.75rem);
  border-right: 1px solid var(--neutral-200);
  transition: background var(--transition);
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: var(--green-50); }

.usp-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  display: grid;
  place-items: center;
  color: var(--green-700);
  border: 1px solid var(--green-100);
}
.usp-item__text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--neutral-800);
  margin-bottom: 2px;
}
.usp-item__text span {
  font-size: 0.78rem;
  color: var(--neutral-500);
}

@media (max-width: 900px) {
  .usp-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .usp-item:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .usp-bar__grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid var(--neutral-200); }
  .usp-item:last-child { border-bottom: none; }
}

/* ── Products Section ───────────────────────────────────────── */
.products { background: var(--neutral-50); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.products__grid--catalog {
  gap: 1.35rem;
  align-items: stretch;
}

.products__grid--catalog .product-card {
  overflow: hidden;
  height: 100%;
  min-height: 535px;
  align-self: stretch;
}

.products__grid--catalog .product-card__visual {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  /* Reset the base rule's `height: 160px; display: grid; place-items: center;`
     so the aspect-ratio actually drives the box and images fill it instead
     of being grid-centered at their intrinsic size. */
  height: auto;
  display: block;
  background: var(--neutral-100);
  flex: 0 0 auto;
}

.products__grid--catalog .product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.products__grid--catalog .product-card__visual--placeholder {
  background:
    linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-200) 100%);
}

.products__grid--catalog .product-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 4.8em;
}

.products__grid--catalog .product-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  min-height: 2.6em;
}

.products__grid--catalog .product-card__actions {
  margin-top: auto;
}

.products__grid--catalog .product-card__variants {
  min-height: 4.15rem;
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.product-card--featured {
  grid-column: span 1;
  border: 2px solid var(--gold-500);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,162,39,.1);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-500));
  color: var(--neutral-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.product-card__visual {
  height: 160px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.product-card__visual--prolock { background: linear-gradient(135deg, #0d2818, #1a4d2e); }
.product-card__visual--hardhout { background: linear-gradient(135deg, #3d1e08, #6b3516); }
.product-card__visual--hardhout40 { background: linear-gradient(135deg, #4a2510, #7d4420); }
.product-card__visual--palen { background: linear-gradient(135deg, #0b2d1e, #1a5235); }
.product-card__visual--dek { background: linear-gradient(135deg, #2a1a08, #4f3012); }
.product-card__visual--balken { background: linear-gradient(135deg, #4a2a0e, #6e3e18); }
.product-card__visual--image {
  padding: 0;
  background: var(--neutral-100);
}
.product-card__visual--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card__visual--placeholder {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  opacity: 0.85;
}

.products-catalog-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem;
  color: var(--neutral-600);
  font-size: 0.95rem;
}
.products-catalog-msg--error {
  color: #b42318;
  background: #fef3f2;
  border-radius: var(--radius-lg);
  border: 1px solid #fecdca;
}
.products-catalog-msg--empty {
  background: var(--white);
  border: 1px dashed var(--neutral-300);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

/* Producten page: room for 3 wider cards + sidebar */
#producten > .container {
  max-width: 1340px;
}

/* Producten catalog — sidebar + grid */
.products-catalog-layout {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: 1.75rem 1.75rem;
  align-items: start;
}

.products-catalog-layout__sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  z-index: 1;
}

.products-catalog-layout__main {
  min-width: 0;
}

@media (max-width: 900px) {
  .products-catalog-layout {
    grid-template-columns: 1fr;
  }
  .products-catalog-layout__sidebar {
    position: static;
    order: 2;
  }
  .products-catalog-layout__main {
    order: 1;
  }
}

/* Producten catalog — filters & toolbar */
.products-catalog-toolbar {
  margin-bottom: 1.75rem;
  padding: 1.25rem clamp(1rem, 3vw, 1.5rem);
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.products-catalog-layout .products-catalog-toolbar {
  margin-bottom: 0;
}

/* Narrow sidebar: stack toolbar rows and category chips vertically */
.products-catalog-layout .products-catalog-toolbar__top {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.products-catalog-layout .products-catalog-toolbar__controls {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.products-catalog-layout .products-catalog-toolbar__select {
  min-width: 0;
  width: 100%;
}

.products-catalog-layout .products-catalog-toolbar__search-wrap {
  max-width: none;
}

.products-catalog-layout .products-catalog-toolbar__chips-scroll {
  flex-direction: column;
  flex-wrap: nowrap;
  overflow-x: visible;
  align-items: stretch;
}

.products-catalog-layout .products-catalog-chip {
  justify-content: space-between;
  white-space: normal;
  text-align: left;
}

.products-catalog-toolbar__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.products-catalog-toolbar__meta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-900);
}

.products-catalog-toolbar__meta span {
  color: var(--neutral-500);
  font-weight: 600;
  font-size: 0.85rem;
}

.products-catalog-toolbar__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.products-catalog-toolbar__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neutral-500);
}

.products-catalog-toolbar__select {
  min-width: 200px;
  padding: 0.55rem 2rem 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.products-catalog-toolbar__select:hover {
  border-color: var(--neutral-300);
}

.products-catalog-toolbar__select:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.products-catalog-toolbar__reset {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.35rem 0;
}

.products-catalog-toolbar__reset:hover {
  color: var(--green-900);
}

.products-catalog-toolbar__search-wrap {
  position: relative;
  flex: 1;
  min-width: min(100%, 240px);
  max-width: 420px;
}

.products-catalog-toolbar__search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--neutral-400);
  pointer-events: none;
}

.products-catalog-toolbar__search {
  width: 100%;
  padding: 0.65rem 0.85rem 0.65rem 2.5rem;
  font-size: 0.9rem;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  background: var(--neutral-50);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.products-catalog-toolbar__search::placeholder {
  color: var(--neutral-400);
}

.products-catalog-toolbar__search:hover {
  border-color: var(--neutral-300);
}

.products-catalog-toolbar__search:focus {
  outline: none;
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.products-catalog-toolbar__chips-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neutral-600);
  margin-bottom: 0.5rem;
}

.products-catalog-toolbar__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.products-catalog-toolbar__chips-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 4px;
  margin: 0 -0.25rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

@media (min-width: 721px) {
  .products-catalog-toolbar__chips-scroll {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

@media (max-width: 720px) {
  .products-catalog-toolbar__chips {
    flex-direction: column;
    align-items: stretch;
  }
  .products-catalog-toolbar__chips-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}

.products-catalog-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--neutral-700);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-full);
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.products-catalog-chip:hover {
  border-color: var(--green-600);
  color: var(--green-800);
  background: var(--green-50);
}

.products-catalog-chip[aria-pressed="true"] {
  color: var(--neutral-950);
  background: linear-gradient(135deg, var(--gold-100), #fff8e6);
  border-color: var(--gold-500);
  box-shadow: 0 1px 4px rgba(201, 162, 39, 0.25);
}

.products-catalog-chip__count {
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--neutral-500);
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 0.1rem 0.45rem;
  border: 1px solid var(--neutral-200);
}

.products-catalog-chip[aria-pressed="true"] .products-catalog-chip__count {
  color: var(--green-800);
  border-color: rgba(201, 162, 39, 0.5);
}

.product-card--filtered-out {
  display: none !important;
}

.product-card__icon-wrap {
  opacity: 0.9;
  transition: transform var(--transition);
}
.product-card:hover .product-card__icon-wrap { transform: scale(1.06); }

.product-card__body {
  padding: 1.5rem;
  padding-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
  min-height: 0;
}

.product-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-900);
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-card__features li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--neutral-600);
  font-weight: 500;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--neutral-100);
}
.price-from { font-size: 0.75rem; color: var(--neutral-400); }
.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-800);
}
.price-unit { font-size: 0.75rem; color: var(--neutral-400); }

.product-card__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.product-card__actions--catalog {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.product-card__actions--catalog .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.product-card__media-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.product-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.product-card__title-link:hover {
  color: var(--green-800);
}

.product-card__variants {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.product-card__variant-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--neutral-600);
  letter-spacing: 0.02em;
}

.product-card__variant-select {
  width: 100%;
  font-family: var(--font-body, inherit);
  font-size: 0.875rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--neutral-200);
  background: var(--white);
  color: var(--neutral-800);
  cursor: pointer;
}

.product-card__variant-select:focus {
  outline: 2px solid var(--green-600);
  outline-offset: 1px;
}

.product-card__variant-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.products__cta {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.products__cta p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products__grid { grid-template-columns: 1fr; }
  .products__cta { flex-direction: column; text-align: center; }
}

/* ── Why Us ─────────────────────────────────────────────────── */
.why-us { background: var(--white); }
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  display: grid;
  place-items: center;
  color: var(--white);
}
.why-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

.why-us__visual {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stats-card {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--white);
}
.stat-item {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--gold-500);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold-500);
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider { height: 1px; background: rgba(255,255,255,.1); margin: 0.25rem 0; }

.contact-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-900);
  margin-bottom: 0.5rem;
}
.contact-card p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-bottom: 1.25rem;
}
.contact-card .btn { margin-bottom: 0.75rem; }
.contact-card__hours {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--neutral-400);
  margin-top: 0.75rem;
  justify-content: center;
}

@media (max-width: 1024px) {
  .why-us__inner { grid-template-columns: 1fr; }
  .why-us__visual { position: static; }
  .stats-card { display: flex; flex-wrap: wrap; gap: 0; }
  .stat-item { flex: 1; min-width: 100px; }
  .stat-divider { display: none; }
}

/* ── Process ────────────────────────────────────────────────── */
.process { background: var(--neutral-50); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-100), var(--green-300), var(--green-100));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem 1.5rem;
  position: relative;
  z-index: 1;
}
.process-step__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--gold-700);
  margin-bottom: 0.5rem;
}
.process-step__connector { display: none; }

.process-step__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-100);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  color: var(--green-700);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.process-step:hover .process-step__icon {
  border-color: var(--green-600);
  box-shadow: var(--shadow-lg);
  transform: scale(1.08);
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-900);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__steps::before { display: none; }
}
@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials { background: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.testimonial-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}
.testimonial-card__stars {
  color: var(--gold-500);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-card__text {
  font-size: 0.925rem;
  color: var(--neutral-600);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--neutral-800);
}
.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--neutral-400);
}

.testimonials__rating {
  display: flex;
  justify-content: center;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-xl);
}
.rating-score {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--gold-500);
}
.rating-info { display: flex; flex-direction: column; gap: 4px; }
.rating-stars { color: var(--gold-500); font-size: 1rem; }
.rating-info span:last-child { font-size: 0.82rem; color: rgba(255,255,255,.6); }

@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ── Quote / Offerte ────────────────────────────────────────── */
.quote {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 60%, var(--wood-800) 100%);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.quote__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.quote__guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1.5rem;
}
.quote-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.quote__direct {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.quote__direct p {
  color: rgba(255,255,255,.5);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.quote__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold-300);
  transition: color var(--transition);
}
.quote__phone:hover { color: var(--gold-500); }

/* Form */
.quote__form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row { display: flex; gap: 1rem; }
.form-row--half > * { flex: 1; min-width: 0; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--neutral-700);
  letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--neutral-800);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}
.form-group input.error,
.form-group select.error { border-color: #e53e3e; }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-error {
  font-size: 0.75rem;
  color: #e53e3e;
  font-weight: 500;
}

.form-group--checkbox { flex-direction: row; align-items: flex-start; gap: 0; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--neutral-600);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; }
.checkbox-custom {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--neutral-300);
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  top: 1px;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--green-700);
  border-color: var(--green-700);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}
.checkbox-label a { color: var(--green-700); text-decoration: underline; }

.form-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-800);
}
.form-success p { color: var(--neutral-500); font-size: 0.9rem; }

@media (max-width: 900px) {
  .quote__inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row--half { flex-direction: column; }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--neutral-50); }

.faq__grid {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.open { border-color: var(--green-200); }

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--neutral-800);
  background: none;
  cursor: pointer;
  border: none;
  transition: color var(--transition);
}
.faq-item.open .faq-item__trigger { color: var(--green-800); }
.faq-arrow {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-item__content {
  height: 0;
  overflow: hidden;
  transition: height var(--transition-slow);
}
.faq-item__content p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--green-900); color: rgba(255,255,255,.75); }

.footer__top { padding-block: 4rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer__logo { margin-bottom: 1rem; }
.footer__brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,.15); color: var(--white); }

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__contact svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-700); }
.footer__contact span, .footer__contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--white); }

.footer__kvk {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,.3);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: 1.5rem;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}
.footer__bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--white); }

.footer__payments { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.payment-icon {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.7rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  font-family: var(--font-display);
}

.footer__logo .logo-text__primary { color: var(--white); }
.footer__logo .logo-text__sub { color: rgba(255,255,255,.4); }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ── Floating CTA ───────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  text-decoration: none;
}
.float-cta:hover { transform: scale(1.05); box-shadow: var(--shadow-xl); }

@media (max-width: 768px) {
  .float-cta { display: flex; }
}

/* ── Responsive fine-tuning ─────────────────────────────────── */
@media (max-width: 640px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 0.6rem; }
}

/* ── Smooth fade-in on load ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__content { animation: fadeUp 0.8s ease both; }

/* ── Active Nav Link (multi-page) ───────────────────────────── */
.nav__link--active {
  color: var(--green-800) !important;
  background: var(--green-50) !important;
}
.mobile-nav__link--active { color: var(--green-800) !important; }
.header__cta--active {
  box-shadow: 0 0 0 2px var(--green-800);
  opacity: 1;
}

/* ── Page Hero (sub-pages) ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 60%, var(--wood-800) 100%);
  padding: 3rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__content { position: relative; z-index: 1; animation: fadeUp 0.6s ease both; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 1rem;
}
.page-hero__breadcrumb a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.page-hero__breadcrumb a:hover { color: var(--gold-300); }
.page-hero__breadcrumb .page-hero__crumb-muted { color: rgba(255,255,255,.45); }
.page-hero__breadcrumb .page-hero__crumb-current { color: var(--gold-400, var(--gold-500)); }
.page-hero__breadcrumb span:not(.page-hero__crumb-muted):not(.page-hero__crumb-current) { color: var(--gold-400, var(--gold-500)); }
.page-hero__breadcrumb svg { flex-shrink: 0; opacity: .4; }
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 640px;
  line-height: 1.65;
}

.page-hero--checkout {
  padding-bottom: 2.5rem;
}
.checkout-steps {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.38);
}
.checkout-steps__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,.45);
}
.checkout-steps__item--done { color: rgba(255,255,255,.55); }
.checkout-steps__item--active {
  color: var(--gold-400, var(--gold-500));
}
.checkout-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}
.checkout-steps__item--active .checkout-steps__num {
  background: rgba(195, 158, 74, 0.35);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(195, 158, 74, 0.5);
}
.checkout-steps__item--done .checkout-steps__num {
  background: rgba(76, 175, 140, 0.35);
  color: var(--white);
}
.checkout-steps__label { white-space: nowrap; }

/* ── Content Split Sections ─────────────────────────────────── */
.content-split--tinted { background: var(--neutral-50); }

.content-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.content-split__text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.content-split__body {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.8;
}

.content-split__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0.25rem 0;
}
.content-split__features li {
  font-size: 0.925rem;
  color: var(--neutral-700);
  font-weight: 500;
  line-height: 1.6;
}
/* Icon + text: stack text in one column (inline tags must not become flex rows) */
.content-split__features li:has(> svg) {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.35rem 10px;
  align-items: start;
}
.content-split__features li:has(> svg) > svg {
  grid-column: 1;
  grid-row: 1 / -1;
  margin-top: 0.15rem;
}
.content-split__features li:has(> svg) > *:not(svg) {
  grid-column: 2;
}
/* Arrow lists: normal block flow so long lines wrap correctly */
.content-split__features li:not(:has(> svg)) {
  display: block;
}

.content-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.content-split__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
}
.content-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.content-split__image:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .content-split__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .content-split__image { order: -1; }
}
@media (max-width: 540px) {
  .content-split__actions { flex-direction: column; }
  .content-split__actions .btn { width: 100%; justify-content: center; }
}

/* ── Home Nav Section (index.html) ─────────────────────────── */
.home-nav-section { background: var(--neutral-50); }
.home-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.home-nav-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.home-nav-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}
.home-nav-card--featured {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
}
.home-nav-card--featured:hover {
  box-shadow: 0 12px 40px rgba(201,162,39,.3);
}
.home-nav-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border: 1px solid var(--green-100);
  display: grid;
  place-items: center;
  color: var(--green-700);
  margin-bottom: 0.25rem;
  transition: var(--transition);
}
.home-nav-card--featured .home-nav-card__icon {
  background: linear-gradient(135deg, var(--gold-100), rgba(201,162,39,.15));
  border-color: rgba(201,162,39,.25);
  color: var(--gold-700);
}
.home-nav-card:hover .home-nav-card__icon { transform: scale(1.05); }
.home-nav-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-900);
}
.home-nav-card p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.6;
  flex: 1;
}
.home-nav-card__arrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--green-700);
  margin-top: auto;
  transition: color var(--transition);
}
.home-nav-card--featured .home-nav-card__arrow { color: var(--gold-700); }
.home-nav-card:hover .home-nav-card__arrow { color: var(--green-800); }

.home-nav__grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .home-nav__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .home-nav__grid { grid-template-columns: 1fr; }
  .home-nav__grid--2x2 { grid-template-columns: 1fr; }
}

.home-nav-card.is-static {
  cursor: default;
  pointer-events: none;
}
.home-nav-card.is-static:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--neutral-200);
}

/* ── Product info pages (Prolock Sigma, etc.) ──────────────── */
.product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-benefit-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-100), rgba(201, 162, 39, 0.12));
  border: 1px solid rgba(201, 162, 39, 0.25);
  display: grid;
  place-items: center;
  color: var(--gold-700);
}
.product-benefit-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-900);
}
.product-benefit-card p {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 0;
  font-size: 0.9375rem;
}
.data-table thead tr {
  border-bottom: 2px solid var(--green-200);
  background: var(--green-50);
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  vertical-align: top;
}
.data-table tbody tr {
  border-bottom: 1px solid var(--neutral-100);
}
.data-table tbody tr:last-child { border-bottom: none; }
.data-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-900);
}
.data-table td:first-child {
  font-weight: 500;
  color: var(--neutral-700);
  width: 38%;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  font-size: 0.9375rem;
}
.comparison-table thead tr {
  background: var(--green-800);
  color: var(--white);
}
.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  vertical-align: top;
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--neutral-100);
}
.comparison-table tbody tr:nth-child(even) {
  background: var(--neutral-50);
}
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table th { font-weight: 600; }

.blockquote-card {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--gold-500);
  background: var(--green-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--neutral-600);
  line-height: 1.65;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
}
.steps-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.steps-list__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background: var(--green-700);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  display: grid;
  place-items: center;
}
.steps-list__body strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 0.2rem;
}
.steps-list__body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

.spec-highlight {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--gold-100);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--neutral-700);
  line-height: 1.65;
}
.spec-highlight a { font-weight: 600; }

.product-cta-band {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  color: var(--white);
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.product-cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.product-cta-band p {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  opacity: 0.92;
  line-height: 1.7;
}
.product-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.product-cta-band .btn--outline-light {
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}
.product-cta-band .btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

@media (max-width: 900px) {
  .product-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .product-benefit-grid { grid-template-columns: 1fr; }
}

/* ── Contact Page ───────────────────────────────────────────── */
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  display: grid;
  place-items: center;
  color: var(--white);
}
.contact-info-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 3px;
}
.contact-info-item__value {
  display: block;
  font-size: 1rem;
  color: var(--neutral-800);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}
a.contact-info-item__value:hover { color: var(--green-700); }
.contact-info-item__note {
  display: block;
  font-size: 0.8rem;
  color: var(--neutral-400);
  margin-top: 2px;
}
.contact-page__cta { margin-top: 2rem; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-900);
  margin-bottom: 0.4rem;
}
.contact-form-card > p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-bottom: 1.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.company-info-card {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.company-info-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.4rem;
}
.company-info-card p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-bottom: 0.75rem;
}
.company-info-card__details {
  display: flex;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--neutral-600);
}

.form-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-800);
}
.form-success p { color: var(--neutral-500); font-size: 0.9rem; }

@media (max-width: 900px) {
  .contact-page__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Checkout (Mollie iDEAL / Bancontact + afhalen) ───────────── */
.wal-checkout {
  background: linear-gradient(180deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}
.wal-checkout__grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: 2rem 2.5rem;
  align-items: start;
}
@media (max-width: 960px) {
  .wal-checkout__grid { grid-template-columns: 1fr; gap: 1.75rem; }
}
.wal-checkout__form-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-md);
  padding: 1.5rem 1.5rem 1.75rem;
}
@media (min-width: 961px) {
  .wal-checkout__form-panel { padding: 1.75rem 2rem 2rem; }
}
.wal-checkout__fieldset {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem 1.25rem;
  margin-bottom: 1.25rem;
  background: var(--neutral-50);
}
.wal-checkout__legend {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--green-900);
  padding: 0 0.35rem;
}
.wal-checkout__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.15rem;
  border-bottom: 1px solid var(--neutral-200);
  cursor: pointer;
  transition: background 0.15s ease;
  border-radius: var(--radius-sm);
  margin: 0 -0.15rem;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}
.wal-checkout__option:hover { background: rgba(26, 77, 46, 0.04); }
.wal-checkout__option:last-of-type { border-bottom: none; }
.wal-checkout__option input { flex-shrink: 0; }
.shipping-price { margin-left: auto; font-weight: 600; color: var(--green-800); }
.wal-checkout__pay-note {
  font-size: 0.86rem;
  color: var(--neutral-600);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.wal-checkout__pay-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.wal-checkout__pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}
.wal-checkout__pay-badge--ideal {
  background: #fff;
  color: #c06;
  border-color: rgba(204, 0, 102, 0.25);
}
.wal-checkout__pay-badge--bancontact {
  background: #fff;
  color: #1e1e1e;
  border-color: #ff0;
  box-shadow: inset 0 -2px 0 #ff0;
}
.wal-checkout__pay-badge--gpay {
  background: #1f1f1f;
  color: #fff;
  border-color: #333;
}
.wal-checkout__pay-badge--apple {
  background: #000;
  color: #fff;
  border-color: #333;
}
.wal-checkout__summary-inner {
  position: sticky;
  top: 1rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 40, 30, 0.08);
}
.wal-checkout__summary-head {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  padding: 1rem 1.25rem 1.1rem;
  border-bottom: 3px solid var(--gold-500, #c39e4a);
}
.wal-checkout__summary-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.2rem;
  color: var(--white);
  font-weight: 800;
}
.wal-checkout__summary-tag {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.55);
}
.wal-checkout__summary-inner > .checkout-line-items,
.wal-checkout__summary-inner > #checkout-items,
.wal-checkout__summary-inner > #free-shipping-info {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.wal-checkout__summary-inner > #checkout-items { padding-top: 1rem; }
.wal-checkout__summary-inner > #free-shipping-info { padding-bottom: 0.25rem; }
.wal-checkout__totals {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
}
.checkout-line-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checkout-line-items__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--neutral-100);
  font-size: 0.88rem;
  line-height: 1.4;
}
.checkout-line-items__row:last-child { border-bottom: none; }
.checkout-line-items__name { color: var(--neutral-700); font-weight: 500; }
.checkout-line-items__qty { color: var(--neutral-500); font-weight: 600; }
.checkout-line-items__price {
  flex-shrink: 0;
  color: var(--green-900);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.wal-checkout__totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}
.wal-checkout__totals dt { margin: 0; font-weight: 500; color: var(--neutral-600); }
.wal-checkout__totals dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; }
.wal-checkout__total-row {
  border-top: 2px solid var(--neutral-200);
  margin-top: 0.5rem;
  padding-top: 0.75rem !important;
  font-size: 1.05rem !important;
}
.wal-checkout__total-row dt,
.wal-checkout__total-row dd { font-weight: 800 !important; color: var(--green-900); }
.wal-checkout__error {
  background: #fef3f2;
  color: #b42318;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.wal-checkout__hint { font-size: 0.82rem; color: var(--neutral-500); }
.wal-checkout__submit {
  width: 100%;
  margin-top: 0.75rem;
  box-shadow: 0 4px 14px rgba(195, 158, 74, 0.35);
}
.wal-checkout__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--neutral-500);
}
.wal-checkout__secure svg { flex-shrink: 0; opacity: 0.65; color: var(--green-700); }

/* ── Cart drawer (header winkelwagen) ───────────────────────── */
body.cart-drawer-open {
  overflow: hidden;
}

.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-drawer__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  width: min(100%, 440px);
  max-width: 100vw;
  height: 100%;
  height: 100dvh;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 1rem 1.25rem;
  border-bottom: 1px solid var(--neutral-200);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-900);
  margin: 0;
}
.cart-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--neutral-600);
  transition: var(--transition);
}
.cart-drawer__close:hover {
  color: var(--green-800);
  background: var(--green-50);
}

.cart-drawer__scroll {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 1rem 1rem;
}

.cart-drawer .cart-content {
  min-height: 120px;
}

.cart-drawer .cart-empty-state {
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.cart-drawer .cart-empty {
  color: var(--neutral-500);
  font-size: 0.95rem;
  margin: 0.75rem 0 1rem;
}

/* Cart line layout (drawer, winkelwagen page, checkout) */
.cart-items {
  display: flex;
  flex-direction: column;
}

.cart-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--neutral-200);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-page-main .cart-item:last-child {
  border-bottom: 1px solid var(--neutral-200);
}

.cart-item__row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .cart-item__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .cart-item__left {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .cart-item__right {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.cart-item__left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.cart-item-image {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: visible;
  background: var(--neutral-100);
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--white);
  background: var(--neutral-500);
  border-radius: var(--radius-full);
  line-height: 1;
}

.cart-item-info {
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin: 0 0 0.25rem;
  line-height: 1.35;
}

.cart-item-unit {
  font-size: 0.8rem;
  color: var(--neutral-500);
  margin: 0;
}

.cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cart-item__right-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

@media (max-width: 479px) {
  .cart-item__right {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }
  .cart-item-line-total {
    margin-right: auto;
  }
  .cart-item__right-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.cart-item-line-total {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--neutral-800);
}

.cart-item-quantity {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.cart-item-quantity--framed {
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.cart-item-quantity--framed .qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 0;
  background: var(--white);
}
.cart-item-quantity--framed .qty-btn:hover {
  background: var(--neutral-50);
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
  background: var(--white);
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-700);
  transition: var(--transition);
  cursor: pointer;
}
.qty-btn:hover {
  border-color: var(--green-600);
  color: var(--green-800);
}

.qty-input {
  width: 2.75rem;
  text-align: center;
  padding: 6px 4px;
  border: none;
  font-size: 0.875rem;
  font-family: inherit;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item-quantity--framed .qty-input {
  border-left: 1px solid var(--neutral-200);
  border-right: 1px solid var(--neutral-200);
}

.cart-item-remove {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  font-size: 0.8rem;
  font-family: inherit;
  color: var(--neutral-500);
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition);
}
.cart-item-remove:hover {
  color: var(--neutral-800);
  background: none;
}

.cart-drawer .cart-item-name {
  font-size: 0.88rem;
}

.cart-drawer .cart-summary {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-200);
}
.cart-drawer .cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--neutral-600);
}
.cart-drawer .cart-summary-row.cart-total {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-900);
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.cart-drawer .cart-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--neutral-200);
  background: var(--neutral-50);
  flex-shrink: 0;
}

.cart-drawer .cart-drawer__totals {
  border-bottom: 1px solid var(--neutral-200);
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
}

.cart-drawer--empty .cart-drawer__totals {
  display: none;
}

.cart-drawer--empty .cart-drawer__checkout {
  display: none;
}

.cart-footer__full {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-800);
  padding: 0.35rem 0.5rem;
  margin-bottom: 0.25rem;
  text-decoration: none;
}
.cart-footer__full:hover {
  text-decoration: underline;
  color: var(--green-900);
}

/* Full-page winkelwagen (reference layout) */
.cart-page-body main {
  background: var(--white);
}

.cart-page-hero .page-hero__sub {
  margin-bottom: 0.25rem;
}

.checkout-steps--cart {
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 520px) {
  .checkout-steps--cart .checkout-steps__label {
    white-space: normal;
    max-width: 5.5rem;
    line-height: 1.2;
  }
}
.cart-page-body .header__cta.btn--primary {
  background: var(--brand-green);
  box-shadow: none;
}
.cart-page-body .header__cta.btn--primary:hover {
  background: #1a3d2f;
  transform: none;
  box-shadow: none;
}

.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}
@media (min-width: 1024px) {
  .cart-page-layout {
    grid-template-columns: 1fr minmax(300px, 380px);
    gap: 3rem;
    align-items: start;
  }
}

.cart-page-layout--empty {
  display: block;
  padding: 0;
  max-width: none;
}
.cart-page-layout--empty .cart-page-sidebar {
  display: none;
}
.cart-page-layout--empty .cart-page-main {
  width: 100%;
}

/* Empty cart state — branded green canvas with wooden crate */
.cart-page-body--empty main {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 60%, var(--wood-800) 100%);
}
.cart-page-body--empty .cart-page-hero {
  background: transparent;
  padding-bottom: 0;
}
.cart-page-body--empty .cart-page-hero::before {
  display: none;
}
.cart-empty-state {
  position: relative;
  padding: 1.5rem 1.25rem 4.5rem;
  display: flex;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}
.cart-empty-state::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cart-empty-state__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 540px;
  padding: 1rem 0;
}
.cart-empty-state__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.35));
}
.cart-empty-state__icon svg {
  width: clamp(140px, 30vw, 200px);
  height: auto;
}
.cart-empty-state__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}
.cart-empty-state__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f5c542 0%, #e0a82c 100%);
  color: var(--green-900);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-full, 999px);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  letter-spacing: 0.01em;
}
.cart-empty-state__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32), inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, #ffd24a 0%, #e9b033 100%);
}
.cart-empty-state__cta:active {
  transform: translateY(0);
}

.cart-page-title__count {
  color: var(--neutral-400);
  font-weight: 500;
  margin-left: 0.25rem;
}

/* Total row styling for the order card */
.cart-summary-row--total {
  font-family: var(--font-display);
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: var(--green-900) !important;
  margin-top: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--neutral-200);
}
.cart-summary-row--total span:last-child {
  color: var(--green-900) !important;
  font-weight: 800 !important;
}

.cart-page-title {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--neutral-900);
  margin: 0 0 1.5rem;
}

.cart-page-main .cart-items {
  border-top: 1px solid var(--neutral-200);
}

.cart-order-card {
  background: var(--brand-gray-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cart-order-card__head {
  background: var(--brand-gold);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.65rem 1.25rem;
}
.cart-order-card__body {
  padding: 1.5rem;
}
.cart-order-card .cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-600);
}
.cart-order-card .cart-summary-row span:last-child {
  font-weight: 600;
  color: var(--neutral-800);
}
.cart-order-card .cart-summary-row--muted span:last-child {
  font-weight: 400;
  color: var(--neutral-500);
  font-size: 0.8125rem;
}
.cart-summary-row--shipping {
  padding-bottom: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--neutral-200);
}
.cart-order-card__discount {
  display: flex;
  gap: 0.5rem;
  margin-top: 0;
  padding-top: 0.5rem;
}
.cart-order-card__discount-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}
.cart-order-card__discount-btn {
  padding: 0.5rem 1rem;
  background: var(--neutral-200);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-600);
  cursor: not-allowed;
}
.cart-order-card__checkout {
  margin-top: 1rem;
}

/* Zichtbare CTA onder de titel op smalle schermen (sidebar staat onder de items) */
.cart-page-checkout-mobile {
  display: block;
  margin: 0 0 1.25rem;
}
.cart-page-checkout-mobile .btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding-block: 0.9rem;
}
@media (min-width: 1024px) {
  .cart-page-checkout-mobile {
    display: none;
  }
}
.cart-order-card__shipping-note {
  font-size: 0.72rem;
  color: var(--neutral-500);
  line-height: 1.45;
  margin: -0.25rem 0 0.5rem;
}
.cart-order-card__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--neutral-500);
  margin: 1rem 0 0;
}
.cart-order-card__pay-icons {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.cart-order-card__pay-icons span {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--neutral-200);
  border-radius: 4px;
  background: var(--white);
  color: var(--neutral-600);
}

.cart-upsells {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
}
.cart-upsells h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--green-900);
}
.cart-upsells--hidden {
  display: none !important;
}
.cart-upsells__intro {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin: 0 0 1rem;
  line-height: 1.45;
}
.cart-upsells__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .cart-upsells__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.cart-upsell-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  align-items: flex-start;
}
.cart-upsell-card__img-wrap {
  display: block;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--neutral-100);
  line-height: 0;
}
.cart-upsell-card__img-wrap:hover .cart-upsell-card__img {
  opacity: 0.92;
}
.cart-upsell-card__img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--neutral-100);
  object-fit: cover;
}
.cart-upsell-card__title-link {
  color: inherit;
  text-decoration: none;
}
.cart-upsell-card__title-link:hover {
  color: var(--brand-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cart-upsell-card h3 {
  font-size: 0.875rem;
  margin: 0 0 0.35rem;
  font-weight: 600;
  color: var(--neutral-900);
  line-height: 1.35;
}
.cart-upsell-card__price {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin: 0 0 0.75rem;
}
.cart-upsell-card .btn {
  margin-top: 0;
}
.cart-upsell-card__cta {
  background: var(--brand-green);
  color: var(--white);
  box-shadow: none;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
}
.cart-upsell-card__cta:hover {
  background: #1a3d2f;
  transform: none;
  box-shadow: none;
}

.cart-page-main .cart-item {
  padding: 1.5rem 0;
}
.cart-page-main .cart-item-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
}
.cart-page-main .cart-item-line-total {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ── Product detail (Shopify description + variants) ───────── */
.product-detail-section {
  background: var(--neutral-50);
  padding-bottom: 3rem;
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
  }
}
.product-detail__media {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.product-detail__thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
.product-detail__thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.product-detail__thumb--active {
  border-color: var(--green-700);
}
.product-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__hero {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  overflow: hidden;
  min-height: 280px;
}
.product-detail__hero img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.product-detail__hero-ph {
  min-height: 280px;
  background: linear-gradient(135deg, var(--neutral-100), var(--neutral-200));
}
.product-detail__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--green-950, #0f2918);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.product-detail__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.product-detail__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--green-900);
}
.product-detail__vat {
  font-size: 0.85rem;
  color: var(--neutral-500);
}
.product-detail__option-group {
  margin-bottom: 1rem;
}
.product-detail__option-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neutral-600);
  margin-bottom: 0.45rem;
}
.product-detail__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.product-detail__pill {
  border: 1px solid var(--neutral-300);
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neutral-800);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.product-detail__pill:hover:not(.product-detail__pill--disabled) {
  border-color: var(--green-600);
  color: var(--green-900);
}
.product-detail__pill--active {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--white);
}
.product-detail__pill--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}
.product-detail__qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.product-detail__qty-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-600);
}
.product-detail__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.product-detail__qty-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--neutral-700);
}
.product-detail__qty-btn:hover {
  background: var(--neutral-100);
}
.product-detail__qty input {
  width: 3rem;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  background: transparent;
}
.product-detail__stock {
  font-size: 0.88rem;
  color: var(--green-700);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.product-detail__stock::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}
.product-detail__stock--out {
  color: var(--neutral-500);
}
.product-detail__stock--out::before {
  background: var(--neutral-400);
}
.product-detail__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}
.product-detail__ext-link {
  text-align: center;
  font-size: 0.85rem;
  color: var(--neutral-500);
  margin-top: 0.25rem;
}
.product-detail__ext-link:hover {
  color: var(--green-800);
}
.product-detail__desc {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--neutral-200);
}
.product-detail__wysiwyg.wal-prose,
.wal-prose {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--neutral-700);
}
.wal-prose h1,
.wal-prose h2,
.wal-prose h3 {
  font-family: var(--font-display);
  color: var(--green-900);
  margin-bottom: 0.4rem;
}
.wal-prose h1,
.wal-prose h2 {
  font-size: 1.35rem;
  margin-top: 1.5rem;
}
.wal-prose h3 {
  font-size: 1.1rem;
  margin-top: 1.25rem;
}
.wal-prose p {
  margin-bottom: 0.85rem;
}
.wal-prose ul,
.wal-prose ol {
  margin: 0.5rem 0 1rem 1.25rem;
}
.wal-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}
.product-detail__related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
}
.product-detail__section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 1rem;
}
.product-detail__related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .product-detail__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-detail__related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.product-detail__related-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}
.product-detail__related-visual {
  aspect-ratio: 4 / 3;
  background: var(--neutral-100);
}
.product-detail__related-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__related-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--neutral-100), var(--neutral-200));
}
.product-detail__related-body {
  padding: 0.75rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.product-detail__related-brand {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--neutral-400);
}
.product-detail__related-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-900);
  line-height: 1.3;
}
.product-detail__related-price {
  font-size: 0.82rem;
  color: var(--neutral-600);
  font-weight: 600;
}

/* ── Order confirmation (thank-you page) ───────────────────── */
.order-confirm-body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #e8e8e8;
  font-family: var(--font-body);
  color: var(--neutral-800);
}

.order-confirm-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 0;
}

/* Full-viewport split: left = logo, right = image (not scoped to the confirmation card) */
.order-confirm-page__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: row;
  pointer-events: none;
}

.order-confirm-page__bg-left {
  position: relative;
  z-index: 0;
  flex: 0 0 50vw;
  width: 50vw;
  min-height: 100vh;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.order-confirm-page__bg-logo {
  display: block;
  max-width: min(630px, 38vw);
  max-height: min(590px, 40vh);
  width: auto;
  height: auto;
  object-fit: contain;
}

.order-confirm-page__bg-right {
  position: relative;
  z-index: 0;
  flex: 0 0 50vw;
  width: 50vw;
  min-height: 100vh;
  background: url('images/wal1.jpg') center center / cover no-repeat;
}

.order-confirm-page__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Same gradient as .hero__overlay, scaled to ~40% opacity — full-page background only */
.order-confirm-bg-overlay {
  background: linear-gradient(
    135deg,
    rgba(10, 40, 24, 0.352) 0%,
    rgba(26, 77, 46, 0.312) 50%,
    rgba(13, 40, 24, 0.328) 100%
  );
}

.order-confirm-page__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem) 1rem;
}

.order-confirm-dev-banner {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed #b45309;
  background: #fffbeb;
  color: #78350f;
  font-size: 0.9rem;
  text-align: left;
}

.order-confirm-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.order-confirm-card__hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin: calc(clamp(1.75rem, 4vw, 2.5rem) * -1);
  margin-bottom: 2rem;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
}

.order-confirm-card__hero-main {
  text-align: center;
}

@media (max-width: 479px) {
  .order-confirm-card__hero {
    margin-left: calc(clamp(1.75rem, 4vw, 2.5rem) * -1);
    margin-right: calc(clamp(1.75rem, 4vw, 2.5rem) * -1);
  }
}

.order-confirm-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-full);
  background: var(--brand-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-confirm-card__title {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--neutral-900);
  margin: 0 0 0.65rem;
  line-height: 1.25;
}

.order-confirm-card__sub {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.55;
  margin: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.order-confirm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 2rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .order-confirm-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.order-confirm-col__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin: 0 0 0.85rem;
}

.order-confirm-dl {
  margin: 0;
}

.order-confirm-dl__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  font-size: 0.875rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--neutral-200);
}

.order-confirm-dl__row:last-child {
  border-bottom: none;
}

.order-confirm-dl dt {
  font-weight: 700;
  color: var(--neutral-800);
}

.order-confirm-dl dd {
  margin: 0;
  color: var(--neutral-700);
}

.order-confirm-steps {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--neutral-700);
}

.order-confirm-steps li {
  margin-bottom: 0.5rem;
}

.order-confirm-contact {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--neutral-600);
  margin: 0;
}

.order-confirm-contact a {
  color: var(--brand-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.order-confirm-contact a:hover {
  color: var(--green-800);
}

.order-confirm-rule {
  border: none;
  border-top: 1px solid var(--neutral-200);
  margin: 0 0 1.5rem;
}

.order-confirm-overview {
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
}

.order-confirm-overview__inner {
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--white);
}

.order-confirm-overview__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--neutral-900);
}

.order-confirm-empty-lines {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin: 0 0 1rem;
}

.order-confirm-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--neutral-200);
  font-size: 0.875rem;
}

.order-confirm-line:last-child {
  border-bottom: none;
}

.order-confirm-line__thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--neutral-100);
}

.order-confirm-line__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-confirm-line__title {
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.35;
}

.order-confirm-line__meta {
  margin-top: 0.25rem;
  color: var(--neutral-500);
  font-size: 0.8125rem;
}

.order-confirm-line__price {
  font-weight: 700;
  color: var(--neutral-900);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 479px) {
  .order-confirm-line {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
  }
  .order-confirm-line__price {
    grid-column: 2 / -1;
    text-align: left;
  }
}

.order-confirm-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-200);
}

.order-confirm-total__label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--neutral-900);
}

.order-confirm-total__value {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.order-confirm-actions {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.order-confirm-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 280px);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  background: var(--brand-green);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(36, 76, 60, 0.25);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.order-confirm-cta:hover {
  filter: brightness(1.05);
  color: var(--white);
  transform: translateY(-1px);
}

.order-confirm-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: 100%;
  padding: 1.25rem clamp(1rem, 3vw, 1.5rem);
  background: var(--neutral-900);
}

.order-confirm-site-copy {
  text-align: center;
  font-size: 0.8125rem;
  color: #fff;
  margin: 0;
}
