/* =========================================================
   LAKPRO — Preview stylesheet
   Mobile-first, BEM-ish naming, design tokens in :root
   ========================================================= */

:root {
  /* Colors */
  --ink-1000: #0F1115;
  --ink-800:  #1B1E25;
  --ink-600:  #4A4E58;
  --ink-400:  #8B909B;
  --line-200: #E5E7EB;
  --line-100: #F3F4F6;
  --surface:  #FAFAFA;
  --white:    #FFFFFF;
  --red-600:  #E11D2A;
  --red-700:  #C8101D;
  --red-50:   #FEEAEC;
  --success:  #18A957;
  --warning:  #E89B19;
  --error:    #DC2626;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-24: 96px;

  /* Radius */
  --r-input: 6px;
  --r-btn:   10px;
  --r-card:  14px;
  --r-pill:  999px;

  /* Shadows */
  --shadow-card:  0 1px 2px rgba(15,17,21,.04), 0 1px 3px rgba(15,17,21,.06);
  --shadow-hover: 0 8px 24px rgba(15,17,21,.08);
  --shadow-modal: 0 20px 60px rgba(15,17,21,.18);

  /* Layout */
  --container: 1280px;
  --header-h: 72px;
  --topbar-h: 36px;
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-1000);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.01em; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .container { padding: 0 24px; } }

.section { padding: var(--s-12) 0; }
@media (min-width: 768px) { .section { padding: var(--s-16) 0; } }
.section--tight { padding: var(--s-8) 0; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-4); margin-bottom: var(--s-6); }
.section-head__title { font-size: 24px; }
@media (min-width: 768px) { .section-head__title { font-size: 28px; } }
.section-head__link { font-size: 14px; font-weight: 600; color: var(--ink-1000); display: inline-flex; align-items: center; gap: 6px; }
.section-head__link:hover { color: var(--red-600); }

/* ===== Topbar ===== */
.topbar {
  background: var(--ink-1000);
  color: var(--white);
  font-size: 13px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); width: 100%; }
.topbar__usps { display: none; gap: var(--s-6); }
@media (min-width: 768px) { .topbar__usps { display: flex; } }
.topbar__usp { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.85); }
.topbar__usp svg { width: 14px; height: 14px; color: var(--red-600); }
.topbar__right { display: flex; gap: var(--s-4); flex-wrap: nowrap; }
.topbar__link { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar__link:hover { color: var(--white); }
.topbar__link--points { color: #FFD27A; font-weight: 600; }
.topbar__link--points:hover { color: #FFE9B8; }
.topbar__link--points svg { color: #FFD27A; }

@media (max-width: 767px) {
  .topbar { font-size: 11px; }
  .topbar__right { gap: 10px; }
  .topbar__link { gap: 4px; }
  .topbar__link--points svg { width: 11px; height: 11px; }
}

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line-200);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-4);
  height: var(--header-h);
}
@media (min-width: 1024px) {
  .header__inner { grid-template-columns: auto 1fr auto auto; gap: var(--s-6); }
}
.header__brand { font-weight: 800; font-size: 22px; letter-spacing: 0.02em; }
.header__brand span { color: var(--red-600); }
.header__nav { display: none; }
@media (min-width: 1024px) { .header__nav { display: flex; gap: var(--s-6); } }
.header__nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-800);
  padding: 8px 0; position: relative;
}
.header__nav a:hover { color: var(--red-600); }
.header__search {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-input);
  padding: 0 12px;
  height: 42px;
  align-items: center;
  gap: 8px;
  min-width: 280px;
  max-width: 460px;
  flex: 1;
}
@media (min-width: 1024px) { .header__search { display: flex; } }
.header__search input { border: 0; background: transparent; flex: 1; outline: none; }
.header__search svg { color: var(--ink-400); width: 18px; height: 18px; }
.header__actions { display: flex; gap: var(--s-3); align-items: center; }
.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-input);
  position: relative;
  color: var(--ink-1000);
  transition: background .18s ease;
}
.icon-btn:hover { background: var(--surface); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn__badge {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--red-600);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.header__mobile-search {
  display: flex; align-items: center; gap: 8px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-input);
  padding: 0 12px;
  margin: 0 0 var(--s-3);
}
@media (min-width: 1024px) { .header__mobile-search { display: none; } }
.header__mobile-search input { border: 0; background: transparent; flex: 1; outline: none; }
.header__mobile-search svg { color: var(--ink-400); width: 18px; height: 18px; }

.header__menu-toggle { display: inline-flex; }
@media (min-width: 1024px) { .header__menu-toggle { display: none; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--r-btn);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--red-600); color: var(--white); }
.btn--primary:hover { background: var(--red-700); }
.btn--dark { background: var(--ink-1000); color: var(--white); }
.btn--dark:hover { background: var(--ink-800); }
.btn--outline { background: transparent; color: var(--ink-1000); border: 1px solid var(--line-200); }
.btn--outline:hover { border-color: var(--ink-1000); }
.btn--ghost { background: transparent; color: var(--ink-1000); }
.btn--ghost:hover { background: var(--surface); }
.btn--block { width: 100%; }
.btn--lg { height: 54px; padding: 0 28px; font-size: 15px; }
.btn--sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn svg { width: 18px; height: 18px; }

/* ===== USP bar ===== */
.usp-bar {
  background: var(--surface);
  border-top: 1px solid var(--line-200);
  border-bottom: 1px solid var(--line-200);
}
.usp-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  padding: var(--s-5) 0;
}
@media (min-width: 768px) { .usp-bar__grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-6); } }
.usp {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
}
.usp__icon {
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--r-input);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--red-600);
  flex-shrink: 0;
}
.usp__icon svg { width: 18px; height: 18px; }
.usp__title { font-weight: 600; color: var(--ink-1000); line-height: 1.2; }
.usp__sub { color: var(--ink-600); font-size: 12px; line-height: 1.3; }

/* ===== Hero ===== */
.hero { padding: var(--s-8) 0 var(--s-12); }
@media (min-width: 768px) { .hero { padding: var(--s-12) 0 var(--s-16); } }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: var(--s-12); }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-50);
  color: var(--red-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-4);
}
.hero__title { font-size: 36px; }
@media (min-width: 768px) { .hero__title { font-size: 52px; } }
@media (min-width: 1280px) { .hero__title { font-size: 60px; } }
.hero__title em { font-style: normal; color: var(--red-600); }
.hero__sub {
  color: var(--ink-600);
  font-size: 17px;
  margin-top: var(--s-4);
  max-width: 520px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.hero__meta { display: flex; align-items: center; gap: var(--s-4); margin-top: var(--s-6); color: var(--ink-600); font-size: 13px; }
.hero__meta svg { width: 16px; height: 16px; color: var(--success); }
.hero__meta--trustpilot { max-width: 320px; position: relative; }
.hero__meta--trustpilot .trustpilot-widget { width: 100%; }
.hero__meta-trustpilot-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-indent: -9999px;
  overflow: hidden;
}

/* === Custom Trustpilot-look widget === */
.hero__meta--lakpro-tp,
.lakpro-tp {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-1000);
  text-decoration: none !important;
  transition: opacity .15s ease;
  flex-wrap: wrap;
}
.lakpro-tp:hover { opacity: 0.85; }
.lakpro-tp__stars {
  display: inline-flex;
  gap: 2px;
  line-height: 0;
}
.lakpro-tp__star {
  width: 18px;
  height: 18px;
  background: linear-gradient(90deg, #00b67a var(--p, 0%), #DCDCE6 var(--p, 0%));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lakpro-tp__star svg {
  width: 12px;
  height: 12px;
  color: white;
  display: block;
}
.lakpro-tp__score {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-1000);
}
.lakpro-tp__count {
  font-size: 12px;
  color: var(--ink-600);
}
.lakpro-tp__divider {
  color: var(--ink-600);
  font-size: 12px;
}
.lakpro-tp__pipe {
  width: 1px;
  height: 16px;
  background: var(--line-200);
}
.lakpro-tp__logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-1000);
}
.lakpro-tp__logo-star {
  width: 14px;
  height: 14px;
  color: #00b67a;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(140deg, #f7f7f8 0%, #ececef 100%);
  border-radius: var(--r-card);
  border: 1px solid var(--line-200);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero__visual::after {
  content: ""; position: absolute; inset: auto -20% -30% auto;
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(225,29,42,.18), transparent 70%);
}
.hero__visual-svg { width: 88%; max-width: 540px; position: relative; z-index: 1; }
.hero__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__pill {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__pill svg { width: 14px; height: 14px; color: var(--red-600); }
.hero__pill--tl { top: 24px; left: 24px; }
.hero__pill--br { bottom: 24px; right: 24px; }

/* ===== Category cards ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); } }
.cat-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  overflow: hidden;
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
  min-height: 180px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.cat-card:hover { border-color: var(--ink-1000); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.cat-card__visual {
  width: 64px; height: 64px;
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--red-600);
  overflow: hidden;
  position: relative; z-index: 2;
}
.cat-card__visual svg { width: 32px; height: 32px; }
.cat-card__visual--img { padding: 6px; }
.cat-card__img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cat-card__title { font-size: 16px; font-weight: 700; }
.cat-card__sub { font-size: 13px; color: var(--ink-600); }
.cat-card__more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-1000);
  display: inline-flex; align-items: center; gap: 4px;
}
.cat-card__more::after { content: "→"; transition: transform .18s ease; }
.cat-card:hover .cat-card__more { color: var(--red-600); }
.cat-card:hover .cat-card__more::after { transform: translateX(3px); }

/* ===== Product cards — desktop grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }
@media (min-width: 1280px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

/* Default card layout: desktop card style at 640px+ */
.product-card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
@media (min-width: 640px) {
  .product-card { flex-direction: column; }
}
.product-card:hover { border-color: var(--ink-1000); box-shadow: var(--shadow-hover); }

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex: 0 0 112px;
}
@media (min-width: 640px) { .product-card__media { flex: 1; } }
.product-card__media svg { width: 60%; max-width: 200px; }
.product-card__badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--ink-1000);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--r-pill);
}
.product-card__badge--red { background: var(--red-600); }
.product-card__wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  color: var(--ink-600);
  transition: color .18s ease, border-color .18s ease;
}
@media (min-width: 640px) { .product-card__wishlist { display: inline-flex; } }
.product-card__wishlist:hover { color: var(--red-600); border-color: var(--red-600); }
.product-card__wishlist svg { width: 16px; height: 16px; }

.product-card__body {
  padding: 14px;
  display: flex; flex-direction: column;
  flex: 1;
  gap: 6px;
  min-width: 0;
}
@media (min-width: 640px) { .product-card__body { padding: var(--s-4) var(--s-4) var(--s-5); gap: 8px; } }
.product-card__brand { font-size: 11px; font-weight: 600; color: var(--ink-400); letter-spacing: 0.06em; text-transform: uppercase; }
.product-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-1000);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
@media (min-width: 640px) { .product-card__title { font-size: 15px; } }
.product-card__meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-600);
}
.product-card__stock { display: inline-flex; align-items: center; gap: 4px; }
.product-card__stock::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success);
}
.product-card__stock--low::before { background: var(--warning); }
.product-card__price-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
@media (min-width: 640px) { .product-card__price-row { padding-top: 8px; } }
.product-card__price { font-size: 16px; font-weight: 700; color: var(--ink-1000); }
.product-card__price-sub { font-size: 11px; color: var(--ink-600); display: block; font-weight: 400; }
.product-card__cta {
  width: 38px; height: 38px;
  background: var(--red-600);
  color: var(--white);
  border-radius: var(--r-input);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s ease;
  flex-shrink: 0;
}
.product-card__cta:hover { background: var(--red-700); }
.product-card__cta svg { width: 18px; height: 18px; }
.product-card__cta--variable svg { width: 18px; height: 18px; }

/* ===== Breadcrumbs ===== */
.crumbs {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 13px;
  color: var(--ink-600);
  padding: var(--s-4) 0;
}
.crumbs a:hover { color: var(--red-600); }
.crumbs__sep { color: var(--ink-400); }
.crumbs__current { color: var(--ink-1000); font-weight: 500; }

/* ===== Category / shop page ===== */
.shop-header { padding: var(--s-4) 0 var(--s-6); }
.shop-header__title { font-size: 28px; }
@media (min-width: 768px) { .shop-header__title { font-size: 36px; } }
.shop-header__desc { color: var(--ink-600); margin-top: var(--s-3); max-width: 720px; }

.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 1024px) {
  .shop-layout { grid-template-columns: 264px 1fr; gap: var(--s-8); }
}

/* Sidebar (filters) */
.filters { display: none; }
@media (min-width: 1024px) {
  .filters { display: block; }
  .filters:empty { display: none; }
  .shop-layout:has(.filters:empty) { grid-template-columns: 1fr; }
}
.filters__group { border-bottom: 1px solid var(--line-200); padding: var(--s-5) 0; }
.filters__group:first-child { padding-top: 0; }
.filters__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--s-3);
  display: flex; justify-content: space-between; align-items: center;
}
.filters__title button { font-size: 12px; color: var(--ink-600); font-weight: 500; }
.filters__list { display: flex; flex-direction: column; gap: 10px; }
.filter-opt {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ink-800);
  cursor: pointer;
}
.filter-opt input { accent-color: var(--red-600); width: 16px; height: 16px; }
.filter-opt__count { margin-left: auto; color: var(--ink-400); font-size: 12px; }
.filter-opt:hover { color: var(--red-600); }

.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.color-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-200);
  cursor: pointer;
  position: relative;
  transition: transform .18s ease;
}
.color-swatch:hover { transform: scale(1.08); }
.color-swatch[data-checked] { box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--ink-1000); }

/* Toolbar */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}
.shop-toolbar__count { font-size: 13px; color: var(--ink-600); }
.shop-toolbar__right { display: flex; gap: var(--s-3); align-items: center; }
.shop-toolbar__sort {
  height: 40px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--line-200);
  border-radius: var(--r-input);
  background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5L6 6.5L11 1.5' stroke='%230F1115' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat right 12px center;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
}
.shop-toolbar__filter-mobile {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-200);
  border-radius: var(--r-input);
  font-size: 14px; font-weight: 600;
}
@media (min-width: 1024px) { .shop-toolbar__filter-mobile { display: none; } }
.shop-toolbar__filter-mobile svg { width: 16px; height: 16px; }

/* Pagination */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: var(--s-10); }
.pagination button, .pagination span {
  min-width: 40px; height: 40px;
  padding: 0 10px;
  border-radius: var(--r-input);
  border: 1px solid var(--line-200);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  background: var(--white);
}
.pagination [aria-current="page"] { background: var(--ink-1000); color: var(--white); border-color: var(--ink-1000); }
.pagination button:hover { border-color: var(--ink-1000); }

/* ===== Filter drawer (mobile) ===== */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(15,17,21,.45);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; bottom: 0;
  z-index: 70;
  background: var(--white);
  width: min(420px, 92vw);
  box-shadow: var(--shadow-modal);
  display: flex; flex-direction: column;
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
.drawer--left { left: 0; transform: translateX(-105%); }
.drawer--left.is-open { transform: translateX(0); }
.drawer--right { right: 0; width: min(440px, 100vw); transform: translateX(105%); }
.drawer--right.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--line-200);
}
.drawer__title { font-size: 16px; font-weight: 700; }
.drawer__close {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-input);
}
.drawer__close:hover { background: var(--surface); }
.drawer__close svg { width: 18px; height: 18px; }
.drawer__body { padding: var(--s-5); overflow-y: auto; flex: 1; }
.drawer__footer {
  padding: var(--s-4) var(--s-5);
  border-top: 1px solid var(--line-200);
  display: flex; gap: var(--s-3);
}

/* ===== Product detail page ===== */
.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-6);
  padding-top: var(--s-3);
}
@media (min-width: 1024px) {
  .product { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: var(--s-12); padding-top: var(--s-5); }
}
.product__gallery,
.product__info { min-width: 0; }
.product__main-image img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__thumb img { max-width: 100%; height: 100%; object-fit: contain; }

.product__gallery { display: flex; flex-direction: column; gap: var(--s-3); }
.product__main-image {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product__main-image svg { width: 60%; max-width: 380px; }
.product__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.product__thumb {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .18s ease;
}
.product__thumb svg { width: 60%; }
.product__thumb[aria-current="true"] { border-color: var(--ink-1000); }
.product__thumb:hover { border-color: var(--ink-600); }

.product__info { display: flex; flex-direction: column; }
.product__brand { font-size: 12px; font-weight: 600; color: var(--ink-400); letter-spacing: 0.08em; text-transform: uppercase; }
.product__title { font-size: 28px; margin-top: 8px; }
@media (min-width: 768px) { .product__title { font-size: 36px; } }
.product__meta-row { display: flex; align-items: center; gap: var(--s-4); margin-top: var(--s-3); font-size: 13px; color: var(--ink-600); flex-wrap: wrap; }
.product__rating { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-600); }
.product__rating-stars {
  display: inline-flex;
  gap: 2px;
  line-height: 0;
}
.product__rating-text { color: var(--ink-600); }

/* Gedeelde single-layer star (geen overlay-gedoe meer) */
.lakpro-star,
.product__rating-star {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: linear-gradient(90deg, var(--warning) var(--p, 0%), #E5E7EB var(--p, 0%));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>") center / contain no-repeat;
  flex-shrink: 0;
}
.lakpro-star--lg { width: 20px; height: 20px; }
.lakpro-review-stars .lakpro-star { width: 16px; height: 16px; }
.product__sku { color: var(--ink-600); }

.product__advies { margin-bottom: 6px; display: flex; align-items: baseline; gap: 8px; }
.product__advies-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); }
.product__advies-price { font-size: 13px; color: var(--ink-500); text-decoration: line-through; text-decoration-color: var(--ink-400, #9ca3af); }
.product__advies-tax { text-decoration: none; font-size: 10px; font-weight: 500; margin-left: 2px; color: var(--ink-400); }

.product__price-block { margin-top: var(--s-3); padding: var(--s-5) 0; border-top: 1px solid var(--line-200); }
.product__price--placeholder { color: var(--ink-700); font-weight: 700; }

/* Verberg WC's eigen variation-price block (we tonen 'm in de top price-block) */
.single-product .woocommerce-variation-price,
.single-product .woocommerce-variation-availability { display: none !important; }
.single-product .woocommerce-variation { padding: 0 !important; }
.product__price { font-size: 32px; font-weight: 700; }
.product__price-tax { display: block; font-size: 13px; color: var(--ink-600); font-weight: 400; margin-top: 4px; }
.product__price-ex { color: var(--ink-600); font-size: 14px; margin-left: 8px; font-weight: 500; }
.product__stock-row { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--success); margin-top: var(--s-3); font-weight: 600; }
.product__stock-row svg { width: 16px; height: 16px; }

.product__short { color: var(--ink-600); margin-top: var(--s-5); line-height: 1.65; }

.product__variants { margin-top: var(--s-5); display: flex; flex-direction: column; gap: var(--s-4); }
.variant-group__label {
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 600; margin-bottom: 8px;
}
.variant-group__label span:last-child { color: var(--ink-600); font-weight: 400; }
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-opt {
  min-width: 64px; height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line-200);
  border-radius: var(--r-input);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.variant-opt:hover { border-color: var(--ink-1000); }
.variant-opt[aria-pressed="true"] { border-color: var(--ink-1000); background: var(--ink-1000); color: var(--white); }
.variant-opt[disabled] { color: var(--ink-400); text-decoration: line-through; cursor: not-allowed; opacity: .6; }

.product__buy-row { display: flex; gap: var(--s-3); margin-top: var(--s-6); align-items: stretch; }
.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-200);
  border-radius: var(--r-btn);
  height: 54px;
  overflow: hidden;
}
.qty button { width: 44px; height: 100%; font-size: 18px; color: var(--ink-1000); }
.qty button:hover { background: var(--surface); }
.qty input {
  width: 44px; height: 100%;
  border: 0; outline: 0; text-align: center;
  font-size: 15px; font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product__usps {
  margin-top: var(--s-6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.product__usp {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  padding: 10px 12px;
  border: 1px solid var(--line-200);
  border-radius: var(--r-input);
  background: var(--white);
}
.product__usp svg { width: 16px; height: 16px; color: var(--red-600); }

.product__msds {
  margin-top: var(--s-4);
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border: 1px dashed var(--line-200);
  border-radius: var(--r-input);
  font-size: 13px;
}
.product__msds svg { width: 20px; height: 20px; color: var(--ink-1000); }
.product__msds a { font-weight: 600; color: var(--ink-1000); margin-left: auto; }
.product__msds a:hover { color: var(--red-600); }

.product__payment-icons { display: flex; gap: 8px; margin-top: var(--s-4); align-items: center; }
.pay-icon {
  height: 28px; padding: 0 10px;
  background: var(--white); border: 1px solid var(--line-200); border-radius: 6px;
  display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; color: var(--ink-600);
  letter-spacing: 0.04em;
}

/* Tabs */
.tabs { margin-top: var(--s-12); position: relative; }
.tabs__nav {
  display: flex; gap: var(--s-2);
  border-bottom: 1px solid var(--line-200);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.tabs__nav::-webkit-scrollbar { display: none; }
.tabs__btn {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-600);
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .tabs__nav { gap: 0; }
  .tabs__btn { padding: 12px 12px; font-size: 13px; }
  /* Fade-out gradient rechts om aan te geven dat er gescrolled kan worden */
  .tabs::after {
    content: ""; position: absolute; right: 0; top: 0; bottom: 0;
    width: 28px; pointer-events: none;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
    border-bottom: 1px solid var(--line-200);
  }
}
.tabs__btn[aria-selected="true"] { color: var(--ink-1000); }
.tabs__btn[aria-selected="true"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--red-600);
}
/* Desktop tab-mode (uitklapbaar gedrag is alleen voor mobiel) */
.tabs__panel { padding: var(--s-6) 0; display: none; }
.tabs__panel.is-active { display: block; }
.tabs__panel-body { display: block; max-width: 860px; }
.tabs__summary { display: none; background: none; border: 0; padding: 0; width: 100%; text-align: left; font: inherit; cursor: pointer; }

/* Productbeschrijving — leesbare typografie */
.tabs__panel-body p { color: var(--ink-700); line-height: 1.7; margin: 0 0 14px; font-size: 15px; }
.tabs__panel-body p:last-child { margin-bottom: 0; }
.tabs__panel-body h1,
.tabs__panel-body h2,
.tabs__panel-body h3,
.tabs__panel-body h4 {
  color: var(--ink-1000); line-height: 1.3;
  margin: 28px 0 12px; font-weight: 800;
}
.tabs__panel-body h1:first-child,
.tabs__panel-body h2:first-child,
.tabs__panel-body h3:first-child,
.tabs__panel-body h4:first-child { margin-top: 0; }
.tabs__panel-body h2 { font-size: 20px; }
.tabs__panel-body h3 { font-size: 17px; }
.tabs__panel-body h4 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; }
.tabs__panel-body ul,
.tabs__panel-body ol { margin: 0 0 16px; padding-left: 22px; color: var(--ink-700); line-height: 1.7; }
.tabs__panel-body li { margin: 0 0 6px; }
.tabs__panel-body li:last-child { margin-bottom: 0; }
.tabs__panel-body strong { color: var(--ink-1000); }
.tabs__panel-body a { color: var(--red-600); text-decoration: underline; }

/* Backward-compat */
.tabs__panel p { color: var(--ink-700); line-height: 1.7; max-width: 860px; margin: 0 0 14px; }
@media (max-width: 640px) {
  .tabs__nav { display: none; }
  .tabs::after { display: none; }
  .tabs__panel,
  .tabs__panel.is-active { display: block; padding: 0; border-bottom: 1px solid var(--line-200); }
  .tabs__panel:first-of-type { border-top: 1px solid var(--line-200); }
  .tabs__panel .tabs__panel-body { display: none; }
  .tabs__panel.is-open .tabs__panel-body { display: block; padding: 0 0 18px; }
  .tabs__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-weight: 700;
    color: var(--ink-1000);
    font-size: 15px;
  }
  .tabs__summary svg { transition: transform .18s ease; flex-shrink: 0; }
  .tabs__panel.is-open .tabs__summary svg { transform: rotate(180deg); }
  .tabs__panel-body p { font-size: 14px; }
}

.specs { display: grid; grid-template-columns: 1fr 2fr; gap: 1px; background: var(--line-200); border: 1px solid var(--line-200); border-radius: 10px; overflow: hidden; max-width: 760px; }
.specs dt, .specs dd { padding: 12px 16px; background: var(--white); font-size: 14px; margin: 0; }
.specs dt { color: var(--ink-600); }
.specs dd { font-weight: 500; }

/* ===== Cart sidebar ===== */
.cart-sidebar__head { padding: var(--s-4) var(--s-5); border-bottom: 1px solid var(--line-200); display: flex; justify-content: space-between; align-items: center; }
.cart-sidebar__body { flex: 1; overflow-y: auto; padding: var(--s-4) var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); }
.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line-100);
  align-items: flex-start;
}
.cart-line__image {
  width: 72px; height: 72px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.cart-line__image svg { width: 65%; }
.cart-line__title { font-size: 13px; font-weight: 600; line-height: 1.35; margin-bottom: 4px; }
.cart-line__variant { font-size: 12px; color: var(--ink-600); margin-bottom: 8px; }
.cart-line__qty {
  display: inline-flex; align-items: center; border: 1px solid var(--line-200); border-radius: var(--r-input); height: 30px;
}
.cart-line__qty button { width: 28px; height: 100%; font-size: 14px; }
.cart-line__qty input { width: 32px; text-align: center; border: 0; background: transparent; height: 100%; font-size: 13px; font-weight: 600; -moz-appearance: textfield; appearance: textfield; }
.cart-line__qty input::-webkit-outer-spin-button,
.cart-line__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-line__price { font-weight: 700; font-size: 14px; text-align: right; }
.cart-line__remove { display: inline-flex; margin-top: 6px; font-size: 11px; color: var(--ink-600); }
.cart-line__remove:hover { color: var(--red-600); }
.cart-line__col-right { text-align: right; }

.cart-sidebar__foot { border-top: 1px solid var(--line-200); padding: var(--s-4) var(--s-5); background: var(--surface); display: flex; flex-direction: column; gap: 12px; }
.cart-sidebar__row { display: flex; justify-content: space-between; align-items: center; }
.cart-sidebar__sub { font-size: 13px; color: var(--ink-600); }
.cart-sidebar__total { font-size: 18px; font-weight: 700; }
.cart-sidebar__buttons { display: flex; gap: 10px; }
.cart-sidebar__note { font-size: 11px; color: var(--ink-600); text-align: center; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 30px);
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: 14px;
  box-shadow: var(--shadow-modal);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  z-index: 100;
  max-width: 92vw;
  width: 380px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,.7,.2,1);
}
@media (min-width: 768px) { .toast { left: auto; right: 24px; transform: translate(0, 30px); } }
.toast.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
@media (min-width: 768px) { .toast.is-open { transform: translate(0, 0); } }
.toast__icon {
  width: 36px; height: 36px;
  background: var(--red-50);
  color: var(--red-600);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.toast__body { flex: 1; min-width: 0; }
.toast__title { font-size: 13px; font-weight: 700; }
.toast__sub { font-size: 12px; color: var(--ink-600); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.toast__actions { display: flex; gap: 6px; flex-shrink: 0; }
.toast__actions .btn--sm { height: 32px; padding: 0 12px; font-size: 12px; }

/* ===== Cart page ===== */
.cart-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 1024px) {
  .cart-page { grid-template-columns: 1fr 380px; gap: var(--s-8); align-items: flex-start; }
}

.cart-list { display: flex; flex-direction: column; }
.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line-200);
  align-items: center;
}
.cart-row:first-child { border-top: 1px solid var(--line-200); }
@media (min-width: 768px) {
  .cart-row { grid-template-columns: 120px 1fr 120px 130px 130px 32px; }
}
.cart-row__image {
  width: 96px; height: 96px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 768px) { .cart-row__image { width: 120px; height: 120px; } }
.cart-row__image svg { width: 65%; }
.cart-row__title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.cart-row__brand { font-size: 12px; color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.cart-row__variant { font-size: 13px; color: var(--ink-600); }
.cart-row__price-mobile { display: block; font-size: 14px; color: var(--ink-600); margin-top: 8px; }
@media (min-width: 768px) { .cart-row__price-mobile { display: none; } }
.cart-row__unit-price { display: none; font-size: 14px; }
@media (min-width: 768px) { .cart-row__unit-price { display: block; } }
.cart-row__qty-cell {
  display: flex; justify-content: flex-end;
}
@media (min-width: 768px) {
  .cart-row__qty-cell { justify-content: flex-start; }
  .cart-row .qty { height: 44px; }
}
.cart-row__sub { display: none; font-size: 16px; font-weight: 700; }
@media (min-width: 768px) { .cart-row__sub { display: block; } }
.cart-row__remove {
  grid-column: 3; grid-row: 1;
  align-self: flex-start;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-600);
  border-radius: var(--r-input);
}
@media (min-width: 768px) { .cart-row__remove { grid-column: auto; grid-row: auto; align-self: center; } }
.cart-row__remove:hover { color: var(--red-600); background: var(--surface); }

.cart-foot {
  display: flex; flex-direction: column; gap: var(--s-4);
  padding-top: var(--s-5);
}
@media (min-width: 768px) { .cart-foot { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.cart-coupon { display: flex; gap: 8px; max-width: 360px; }
.cart-coupon input {
  flex: 1;
  height: 46px;
  border: 1px solid var(--line-200);
  border-radius: var(--r-input);
  padding: 0 14px;
  outline: none;
}
.cart-coupon input:focus { border-color: var(--ink-1000); }

.woocommerce-cart-form.is-updating { opacity: 0.6; pointer-events: none; transition: opacity 0.15s ease; }

/* ===== Retour pagina ===== */
.lakpro-retour { max-width: 1100px; }
.lakpro-retour__hero { background: var(--surface); padding: 56px 0 40px; margin: 0 -24px; padding-left: 24px; padding-right: 24px; border-bottom: 1px solid var(--line-200); }
@media (min-width: 768px) { .lakpro-retour__hero { padding-left: 48px; padding-right: 48px; margin: 0 -48px; } }
.lakpro-retour__eye { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-600); background: rgba(225,29,42,0.08); padding: 5px 10px; border-radius: 999px; margin: 8px 0 12px; }
.lakpro-retour__title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--ink-1000); margin: 0 0 14px; letter-spacing: -0.01em; line-height: 1.15; }
.lakpro-retour__sub { font-size: 16px; color: var(--ink-600); max-width: 700px; margin: 0; line-height: 1.6; }
.lakpro-retour__usps { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 24px; }
.lakpro-retour__usp { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-800); font-weight: 600; }
.lakpro-retour__usp svg { width: 18px; height: 18px; color: var(--red-600); flex-shrink: 0; }

.lakpro-retour__grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
@media (min-width: 900px) { .lakpro-retour__grid { grid-template-columns: 1fr 360px; gap: 48px; } }

.lakpro-retour__section { margin-bottom: 36px; }
.lakpro-retour__section h2 { font-size: 22px; color: var(--ink-1000); font-weight: 800; margin: 0 0 14px; }
.lakpro-retour__section h3 { font-size: 16px; color: var(--ink-1000); font-weight: 700; margin: 0 0 12px; }
.lakpro-retour__section p { margin: 0 0 14px; color: var(--ink-700); line-height: 1.6; }

.lakpro-retour__steps { display: grid; gap: 14px; }
@media (min-width: 600px) { .lakpro-retour__steps { grid-template-columns: 1fr 1fr; } }
.lakpro-retour__step { background: #fff; border: 1px solid var(--line-200); border-radius: 12px; padding: 18px; }
.lakpro-retour__step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--red-50); color: var(--red-600); font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.lakpro-retour__step strong { display: block; color: var(--ink-1000); font-size: 15px; margin-bottom: 4px; }
.lakpro-retour__step span { color: var(--ink-600); font-size: 13px; line-height: 1.55; }

.lakpro-retour__conditions { background: var(--surface); border: 1px solid var(--line-200); border-radius: 14px; padding: 22px 24px; }
.lakpro-retour__conditions ul { margin: 0; padding-left: 18px; color: var(--ink-700); }
.lakpro-retour__conditions li { margin-bottom: 6px; font-size: 14px; line-height: 1.55; }
.lakpro-retour__conditions li strong { color: var(--ink-1000); }

.lakpro-retour__faq details { border: 1px solid var(--line-200); border-radius: 10px; padding: 14px 18px; margin-bottom: 10px; background: #fff; }
.lakpro-retour__faq summary { font-weight: 700; cursor: pointer; color: var(--ink-1000); font-size: 15px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lakpro-retour__faq summary::-webkit-details-marker { display: none; }
.lakpro-retour__faq summary::after { content: "+"; color: var(--red-600); font-size: 22px; font-weight: 400; transition: transform .2s; line-height: 1; }
.lakpro-retour__faq details[open] summary::after { transform: rotate(45deg); }
.lakpro-retour__faq details[open] > div { margin-top: 12px; color: var(--ink-700); font-size: 14px; line-height: 1.65; }

.lakpro-retour__form-card { background: #fff; border: 1px solid var(--line-200); border-radius: 14px; padding: 28px; }
.lakpro-retour__form { display: flex; flex-direction: column; gap: 12px; }
.lakpro-retour__field { display: flex; flex-direction: column; gap: 6px; }
.lakpro-retour__field label { font-size: 13px; font-weight: 600; color: var(--ink-1000); }
.lakpro-retour__field input,
.lakpro-retour__field textarea,
.lakpro-retour__field select {
  border: 1px solid var(--line-200); border-radius: 8px; padding: 11px 14px;
  font: inherit; color: var(--ink-1000); background: #fff; outline: none;
  transition: border-color .15s ease;
}
.lakpro-retour__field input:focus,
.lakpro-retour__field textarea:focus,
.lakpro-retour__field select:focus { border-color: var(--ink-1000); }
.lakpro-retour__field textarea { min-height: 100px; resize: vertical; font-family: inherit; }
.lakpro-retour__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .lakpro-retour__field-row { grid-template-columns: 1fr; } }
.lakpro-retour__form button { align-self: flex-start; margin-top: 8px; }

.lakpro-retour__success { background: #E7F8EE; border: 1px solid #B7E4C7; border-radius: 10px; padding: 14px 18px; margin-bottom: 18px; color: #1a7f37; }
.lakpro-retour__success strong { display: block; margin-bottom: 4px; }
.lakpro-retour__success p { margin: 0; color: var(--ink-700); font-size: 14px; }
.lakpro-retour__error { background: #FEF3F5; border: 1px solid #FBD5D9; border-radius: 10px; padding: 14px 18px; margin-bottom: 18px; color: var(--red-600); font-weight: 600; }

.lakpro-retour__sidebar { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 900px) { .lakpro-retour__sidebar { position: sticky; top: 96px; align-self: start; } }
.lakpro-retour__card { background: #fff; border: 1px solid var(--line-200); border-radius: 14px; padding: 22px 24px; }
.lakpro-retour__card h3 { margin: 0 0 12px; font-size: 16px; color: var(--ink-1000); font-weight: 800; }
.lakpro-retour__contact { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line-200); border-radius: 10px; text-decoration: none; color: var(--ink-800); font-size: 14px; margin-bottom: 8px; transition: border-color .15s ease, background .15s ease; }
.lakpro-retour__contact:hover { border-color: var(--red-600); background: var(--red-50); }
.lakpro-retour__contact strong { display: block; color: var(--ink-1000); font-size: 13px; line-height: 1.3; }
.lakpro-retour__contact small { color: var(--ink-600); font-size: 11px; }
.lakpro-retour__ic { width: 36px; height: 36px; border-radius: 50%; background: var(--red-50); color: var(--red-600); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lakpro-retour__ic--wa { background: #E7F8EE; color: #25D366; }
.lakpro-retour__ic svg { width: 16px; height: 16px; }

/* Verberg WC's "Bekijk winkelwagen" link na AJAX add-to-cart (we hebben al een side cart) */
.added_to_cart.wc-forward,
.product-card a.added_to_cart,
.products a.added_to_cart { display: none !important; }

/* Datasheet download-links (TDS/SDS) */
.lakpro-datasheets {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.lakpro-datasheet-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; min-width: 120px;
  background: #fff; border: 1px solid var(--line-200); border-radius: 8px;
  color: var(--ink-800); text-decoration: none; font-size: 13px;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.lakpro-datasheet-link:hover { border-color: var(--red-600); background: #FEF3F5; color: var(--ink-1000); }
.lakpro-datasheet-link svg { color: var(--red-600); flex-shrink: 0; }
.lakpro-datasheet-link strong { color: var(--ink-1000); font-weight: 700; letter-spacing: 0.02em; }
@media (max-width: 640px) {
  .lakpro-datasheet-link { flex: 1; min-width: 0; max-width: 200px; }
}

/* ===== Brands overview page ===== */
.lakpro-brands-page { max-width: 1200px; }
.lakpro-brands__intro { margin: 8px 0 32px; }
.lakpro-brands__eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-600); background: rgba(225,29,42,0.08);
  padding: 5px 10px; border-radius: 999px; margin-bottom: 14px;
}
.lakpro-brands__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--ink-1000); margin: 0 0 12px; }
.lakpro-brands__sub { font-size: 16px; color: var(--ink-600); margin: 0 0 24px; max-width: 640px; line-height: 1.6; }
.lakpro-brands__empty { padding: 48px 24px; text-align: center; background: #FAFBFC; border-radius: 12px; }

/* Cluster (parent + spider-web children) */
.lakpro-cluster {
  display: grid; gap: 24px; align-items: stretch;
  margin: 0 0 56px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid var(--line-200);
  border-radius: 16px;
}
.lakpro-cluster[data-has-kids="1"] { grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .lakpro-cluster[data-has-kids="1"] { grid-template-columns: 320px 1fr; }
}
@media (max-width: 640px) {
  .lakpro-cluster { padding: 16px; gap: 20px; border-radius: 12px; margin: 0 0 36px; }
}

/* Hub (parent brand) */
.lakpro-cluster__hub {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #FEF3F5 0%, #FFFFFF 100%);
  border: 1px solid var(--line-200);
  border-radius: 12px;
  color: var(--ink-1000); text-decoration: none;
  transition: border-color .18s ease, transform .18s ease;
}
@media (max-width: 640px) {
  .lakpro-cluster__hub { padding: 14px 16px; gap: 14px; }
  .lakpro-cluster__hub-logo { width: 52px; height: 52px; }
  .lakpro-cluster__hub-name { font-size: 18px; }
  .lakpro-cluster__hub-arrow { font-size: 18px; }
}
.lakpro-cluster__hub:hover { border-color: var(--ink-1000); transform: translateY(-1px); }
.lakpro-cluster__hub-logo {
  flex-shrink: 0; width: 64px; height: 64px;
  background: #fff; border: 1px solid var(--line-200); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.lakpro-cluster__hub-logo img { max-width: 80%; max-height: 80%; object-fit: contain; }
.lakpro-cluster__hub-initials {
  font-size: 20px; font-weight: 800; color: var(--red-600); letter-spacing: 0.02em;
}
.lakpro-cluster__hub-text { flex: 1; min-width: 0; }
.lakpro-cluster__hub-name { font-size: 20px; font-weight: 800; margin: 0 0 4px; color: var(--ink-1000); }
.lakpro-cluster__hub-count { font-size: 12px; color: var(--ink-600); margin: 0; font-weight: 600; }
.lakpro-cluster__hub-desc { font-size: 13px; color: var(--ink-600); margin: 6px 0 0; line-height: 1.5; }
.lakpro-cluster__hub-arrow { font-size: 20px; color: var(--red-600); flex-shrink: 0; }

/* Satellites (children) — spider-web layout */
.lakpro-cluster__satellites {
  position: relative;
  display: flex; align-items: center;
  padding-left: 0;
}
@media (min-width: 768px) {
  .lakpro-cluster__satellites { padding-left: 12px; }
}
.lakpro-cluster__web {
  display: none;
  position: absolute; left: -32px; top: 0; bottom: 0;
  width: 36px; height: 100%;
  pointer-events: none;
}
@media (min-width: 900px) { .lakpro-cluster__web { display: block; } }

.lakpro-cluster__kids {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px; flex: 1; position: relative; z-index: 1;
  width: 100%;
}
@media (max-width: 640px) {
  .lakpro-cluster__kids {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 28px;
    border-left: 1px dashed rgba(225,29,42,0.35);
    margin-left: 24px;
    margin-top: 6px;
  }
  .lakpro-cluster__kids li { position: relative; }
  .lakpro-cluster__kids li::before {
    content: ""; position: absolute;
    left: -28px; top: 50%;
    width: 22px; height: 1px;
    border-top: 1px dashed rgba(225,29,42,0.35);
  }
}
.lakpro-cluster__kid {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: 10px;
  color: var(--ink-800); text-decoration: none;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.lakpro-cluster__kid:hover {
  border-color: var(--red-600);
  background: #FEF3F5;
  transform: translateX(2px);
}
.lakpro-cluster__kid-logo-box {
  flex-shrink: 0; width: 44px; height: 44px;
  background: #fff;
  border: 1px solid var(--line-200);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lakpro-cluster__kid-logo {
  max-width: 80%; max-height: 80%; object-fit: contain;
}
.lakpro-cluster__kid-initials {
  font-size: 13px; font-weight: 800;
  color: var(--red-600); letter-spacing: 0.02em;
}
.lakpro-cluster__kid-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.lakpro-cluster__kid-name {
  font-size: 13px; font-weight: 700; color: var(--ink-1000); line-height: 1.3;
  word-break: break-word;
}
.lakpro-cluster__kid-count-text {
  font-size: 11px; color: var(--ink-500); font-weight: 500;
}

/* Punten-widget in cart / mini-cart */
.lakpro-cart-points {
  background: linear-gradient(135deg, #FEF3F5 0%, #FFFFFF 100%);
  border: 1px solid #FBD5D9;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink-800);
  display: flex; flex-direction: column; gap: 10px;
}
.lakpro-cart-points__top { display: flex; align-items: center; gap: 8px; }
.lakpro-cart-points__top svg { width: 18px; height: 18px; color: #E11D2A; flex-shrink: 0; }
.lakpro-cart-points__top strong { color: var(--ink-1000); }
.lakpro-cart-points__top--guest svg { color: #9AA0AA; }
.lakpro-cart-points__top--guest a { color: #E11D2A; text-decoration: underline; font-weight: 600; }
.lakpro-cart-points__bonus-label { color: var(--ink-600); font-size: 12px; }
.lakpro-cart-points__progress { display: flex; flex-direction: column; gap: 6px; }
.lakpro-cart-points__bar {
  height: 6px; background: #FBE2E5; border-radius: 3px; overflow: hidden;
}
.lakpro-cart-points__bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #E11D2A, #FF5A66);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.lakpro-cart-points__hint { font-size: 12px; color: var(--ink-600); }
.lakpro-cart-points__hint strong { color: var(--ink-1000); font-weight: 700; }
.lakpro-cart-points--page { margin: 0 0 12px; }

.cart-summary {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  padding: var(--s-5);
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.cart-summary__title { font-size: 18px; margin-bottom: var(--s-4); }
.cart-summary__row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; color: var(--ink-800); }
.cart-summary__row--total { border-top: 1px solid var(--line-200); padding-top: 16px; margin-top: 8px; font-size: 18px; font-weight: 700; color: var(--ink-1000); }
.cart-summary__total-tax { font-size: 11px; font-weight: 400; color: var(--ink-600); display: block; }
.cart-summary__cta { margin-top: var(--s-4); }
.cart-summary__trust { display: flex; flex-direction: column; gap: 8px; margin-top: var(--s-4); font-size: 12px; color: var(--ink-600); }
.cart-summary__trust div { display: flex; align-items: center; gap: 8px; }
.cart-summary__trust svg { width: 14px; height: 14px; color: var(--success); }

/* Empty state */
.empty-state {
  text-align: center;
  padding: var(--s-16) var(--s-4);
}
.empty-state__icon {
  width: 72px; height: 72px;
  margin: 0 auto var(--s-5);
  background: var(--surface);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-600);
}
.empty-state__icon svg { width: 32px; height: 32px; }
.empty-state h2 { font-size: 24px; }
.empty-state p { color: var(--ink-600); margin-top: var(--s-3); max-width: 460px; margin-left: auto; margin-right: auto; }
.empty-state__ctas { margin-top: var(--s-5); display: inline-flex; gap: var(--s-3); flex-wrap: wrap; justify-content: center; }
.empty-state__suggestions { margin-top: var(--s-8); }
.empty-state__suggestions h3 { font-size: 14px; color: var(--ink-600); font-weight: 500; margin-bottom: var(--s-3); }
.empty-state__chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 14px;
  border: 1px solid var(--line-200);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-800);
  background: var(--white);
}
.chip:hover { border-color: var(--ink-1000); }

/* ===== Checkout ===== */
.checkout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 1024px) {
  .checkout { grid-template-columns: 1fr 400px; gap: var(--s-10); align-items: flex-start; }
}

.checkout__main { display: flex; flex-direction: column; gap: var(--s-6); }
.checkout-card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  padding: var(--s-5);
}
@media (min-width: 768px) { .checkout-card { padding: var(--s-6) var(--s-6); } }
.checkout-card__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: var(--s-4);
}
.checkout-card__num {
  width: 28px; height: 28px;
  background: var(--ink-1000);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.checkout-card__title { font-size: 18px; }

.cust-type {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-btn);
  margin-bottom: var(--s-5);
}
.cust-type__btn {
  height: 44px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-600);
  transition: background .18s ease, color .18s ease;
}
.cust-type__btn.is-active { background: var(--white); color: var(--ink-1000); box-shadow: var(--shadow-card); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid--full > * { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-800); }
.field label .optional { color: var(--ink-400); font-weight: 400; }
.field input, .field select, .field textarea {
  height: 46px;
  border: 1px solid var(--line-200);
  border-radius: var(--r-input);
  padding: 0 14px;
  outline: none;
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field select { appearance: none; background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5L6 6.5L11 1.5' stroke='%230F1115' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat right 14px center; padding-right: 38px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red-600);
  box-shadow: 0 0 0 3px rgba(225,29,42,.2);
}
.field--error input, .field--error select { border-color: var(--error); }
.field__error { font-size: 12px; color: var(--error); }
.field__hint { font-size: 12px; color: var(--ink-600); }

.payment-list { display: flex; flex-direction: column; gap: 8px; }
.payment-opt {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-200);
  border-radius: var(--r-input);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.payment-opt:hover { border-color: var(--ink-1000); }
.payment-opt input { accent-color: var(--red-600); }
.payment-opt[data-checked="true"] { border-color: var(--ink-1000); background: var(--surface); }
.payment-opt__name { font-weight: 600; font-size: 14px; flex: 1; }
.payment-opt__logo {
  height: 26px;
  min-width: 40px;
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--ink-600);
  padding: 0 8px;
}

.shipping-list { display: flex; flex-direction: column; gap: 8px; }

.checkout-summary {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.checkout-summary__head { padding: var(--s-5); border-bottom: 1px solid var(--line-200); display: flex; justify-content: space-between; align-items: center; background: var(--white); }
.checkout-summary__head h3 { font-size: 16px; }
.checkout-summary__head a { font-size: 13px; font-weight: 600; color: var(--ink-1000); }
.checkout-summary__head a:hover { color: var(--red-600); }
.checkout-summary__lines { padding: var(--s-4) var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); background: var(--white); border-bottom: 1px solid var(--line-200); max-height: 320px; overflow-y: auto; }
.summary-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; }
.summary-line__img {
  width: 56px; height: 56px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--line-200);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.summary-line__img svg { width: 60%; }
.summary-line__img::after {
  content: attr(data-qty);
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px;
  background: var(--ink-1000);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.summary-line__title { font-size: 13px; font-weight: 600; line-height: 1.3; }
.summary-line__sub { font-size: 12px; color: var(--ink-600); margin-top: 2px; }
.summary-line__price { font-size: 13px; font-weight: 600; }

.checkout-summary__totals { padding: var(--s-4) var(--s-5); display: flex; flex-direction: column; gap: 8px; background: var(--white); }
.checkout-summary__row { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-800); }
.checkout-summary__row--total { padding-top: 12px; border-top: 1px solid var(--line-200); margin-top: 4px; font-size: 18px; font-weight: 700; color: var(--ink-1000); }
.checkout-summary__row--total small { display: block; font-size: 11px; font-weight: 400; color: var(--ink-600); }

.checkout-place { padding: var(--s-5); background: var(--surface); display: flex; flex-direction: column; gap: 10px; }
.checkout-place__terms { font-size: 12px; color: var(--ink-600); display: flex; gap: 10px; align-items: flex-start; }
.checkout-place__terms input { accent-color: var(--red-600); margin-top: 3px; }

/* ===== Footer ===== */
.cta-band {
  background: var(--ink-1000);
  color: var(--white);
  padding: var(--s-12) 0;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 768px) { .cta-band__inner { grid-template-columns: 1.2fr 1fr; gap: var(--s-10); } }
.cta-band__eyebrow { color: var(--red-600); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.cta-band__title { font-size: 28px; }
@media (min-width: 768px) { .cta-band__title { font-size: 36px; } }
.cta-band__sub { color: rgba(255,255,255,.7); margin-top: 12px; max-width: 480px; }
.cta-band__form { display: flex; gap: 8px; max-width: 460px; }
.cta-band__form input {
  flex: 1;
  min-width: 0;
  height: 54px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-btn);
  background: rgba(255,255,255,.06);
  color: var(--white);
  padding: 0 16px;
  outline: none;
}
@media (max-width: 480px) {
  .cta-band__form { gap: 6px; }
  .cta-band__form input { height: 48px; padding: 0 12px; font-size: 14px; }
  .cta-band__form .btn { padding-left: 16px; padding-right: 16px; }
}
.cta-band__form input::placeholder { color: rgba(255,255,255,.5); }
.cta-band__form input:focus { border-color: var(--red-600); background: rgba(255,255,255,.1); }

.footer { background: #FFFFFF; color: var(--ink-700); padding: var(--s-12) 0 var(--s-6); border-top: 1px solid var(--line-200); }
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.5fr repeat(3, 1fr); gap: var(--s-8); } }
.footer__brand { color: var(--ink-1000); font-weight: 800; font-size: 22px; margin-bottom: 12px; letter-spacing: 0.02em; }
.footer__brand span { color: var(--red-600); }
.footer__about { font-size: 14px; max-width: 320px; line-height: 1.6; color: var(--ink-600); }
.footer__col h4 { color: var(--ink-1000); font-size: 14px; margin-bottom: var(--s-3); }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer__col a { color: var(--ink-700); }
.footer__col a:hover { color: var(--red-600); }
.footer__bottom {
  border-top: 1px solid var(--line-200);
  margin-top: var(--s-10);
  padding-top: var(--s-5);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--ink-600);
}
.footer__bottom a { color: var(--ink-700); }
.footer__bottom a:hover { color: var(--red-600); }

/* ===== Search bar (search page) ===== */
.search-page-bar {
  display: flex; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  padding: 10px;
  margin: var(--s-4) 0 var(--s-6);
}
.search-page-bar input {
  flex: 1;
  height: 46px;
  border: 0;
  outline: 0;
  padding: 0 14px;
  font-size: 15px;
  background: transparent;
}

/* ===== Helpers ===== */
.is-hidden { display: none !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }

/* ===== Sliding panels behavior controlled by JS via .is-open ===== */
body.no-scroll { overflow: hidden; }

/* =========================================================
   WooCommerce default elements — restyle to match design system
   ========================================================= */

/* --- Notices --- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-NoticeGroup {
  list-style: none;
  margin: 0 0 16px;
  padding: 14px 18px;
  border-radius: var(--r-input);
  font-size: 14px;
  border-left: 3px solid var(--ink-1000);
  background: var(--surface);
}
.woocommerce-error { border-left-color: var(--error); background: #FEEAEC; color: #7A0F1A; }
.woocommerce-message { border-left-color: var(--success); background: #E6F6EC; color: #0F5F33; }
.woocommerce-info { border-left-color: var(--ink-1000); }
.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button { display: none; }

/* --- Form rows (used in checkout & account) --- */
.woocommerce form .form-row,
.woocommerce-page form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 var(--s-4);
  padding: 0;
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  font-size: 13px; font-weight: 600; color: var(--ink-800);
}
.woocommerce form .form-row label .optional { color: var(--ink-400); font-weight: 400; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row select,
.woocommerce-page form .form-row textarea {
  height: 46px;
  border: 1px solid var(--line-200);
  border-radius: var(--r-input);
  padding: 0 14px;
  outline: none;
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
  width: 100%;
}
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row textarea {
  height: auto; min-height: 96px; padding: 12px 14px;
}
.woocommerce form .form-row select { appearance: none; padding-right: 38px; background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5L6 6.5L11 1.5' stroke='%230F1115' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat right 14px center; }
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--red-600); box-shadow: 0 0 0 3px rgba(225,29,42,.2); }

/* Field validation states */
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select { border-color: var(--error); }
.woocommerce form .form-row.woocommerce-validated input.input-text { border-color: var(--success); }

/* Form-row grid layout in checkout */
.woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 640px) {
  .woocommerce-billing-fields__field-wrapper,
  .woocommerce-shipping-fields__field-wrapper,
  .woocommerce-additional-fields__field-wrapper { grid-template-columns: 1fr 1fr; }
  .woocommerce-billing-fields__field-wrapper .form-row-wide,
  .woocommerce-shipping-fields__field-wrapper .form-row-wide { grid-column: 1 / -1; }
  .woocommerce-billing-fields__field-wrapper .form-row-first { grid-column: 1 / 2; }
  .woocommerce-billing-fields__field-wrapper .form-row-last  { grid-column: 2 / 3; }
}

/* Country/state dropdowns from Select2 */
.select2-container--default .select2-selection--single {
  height: 46px;
  border: 1px solid var(--line-200) !important;
  border-radius: var(--r-input) !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 44px !important;
  padding-left: 14px !important;
  color: var(--ink-1000);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px !important;
}

/* --- Quantity input (default WC) --- */
.woocommerce .quantity {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-200);
  border-radius: var(--r-btn);
  height: 44px;
  overflow: hidden;
}
.woocommerce .quantity input.qty {
  width: 44px; height: 100%;
  border: 0; outline: 0; text-align: center;
  font-size: 15px; font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
  padding: 0;
}
.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.woocommerce .quantity button[data-qty-minus],
.woocommerce .quantity button[data-qty-plus] {
  width: 40px; height: 100%; font-size: 18px; color: var(--ink-1000);
  border: 0; background: transparent; cursor: pointer;
}
.woocommerce .quantity button:hover { background: var(--surface); }

/* --- Variations form on single product --- */
.variations_form { margin-top: var(--s-5); }
.variations_form .variations {
  width: 100%;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 0 14px;
  padding: 18px 18px 6px;
  background: var(--surface);
  border-radius: 14px;
}
.variations_form .variations tbody { display: contents; }
.variations_form .variations tr {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
}
.variations_form .variations tr:last-child { margin-bottom: 4px; }
.variations_form .variations th,
.variations_form .variations td {
  display: block;
  text-align: left;
  padding: 0;
  border: 0;
  background: transparent;
}
.variations_form .variations th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-600);
  margin: 0;
  line-height: 1.4;
}
.variations_form .variations th label { margin: 0; padding: 0; font: inherit; color: inherit; }
.variations_form .variations td.value {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.variations_form .variations select {
  flex: 1 1 220px;
  min-width: 0;
  height: 50px;
  border: 1.5px solid var(--line-200);
  border-radius: 10px;
  padding: 0 42px 0 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-1000);
  background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1.5L6 6.5L11 1.5' stroke='%230F1115' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 16px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.variations_form .variations select:hover {
  border-color: var(--ink-1000);
}
.variations_form .variations select:focus {
  border-color: var(--ink-1000);
  box-shadow: 0 0 0 3px rgba(15,17,21,.08);
  outline: none;
}
.variations_form .variations select.has-value,
.variations_form .variations select:valid:not(:placeholder-shown) {
  border-color: var(--ink-1000);
  background-color: var(--white);
  font-weight: 600;
}
.variations_form .variations select option {
  font-weight: 500;
  color: var(--ink-1000);
}
.variations_form .variations select option[value=""] {
  color: var(--ink-400);
}
.variations_form .reset_variations {
  display: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin: 0;
  padding: 0;
}
.variations_form .reset_variations:hover { color: var(--red-600); }
.variations_form.lakpro-has-value .reset_variations { display: inline-block; }

@media (max-width: 640px) {
  .variations_form .variations { padding: 14px 14px 4px; }
  .variations_form .variations select { height: 48px; flex-basis: 100%; }
}

.single_variation_wrap { margin-top: var(--s-5); }
.single_variation .price { font-size: 24px; font-weight: 700; }
.woocommerce-variation-add-to-cart {
  display: flex; gap: var(--s-3); margin-top: var(--s-5); align-items: stretch;
}
.woocommerce-variation-add-to-cart .quantity { height: 54px; }
.single_add_to_cart_button {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 54px;
  padding: 0 28px;
  border-radius: var(--r-btn);
  font-size: 15px;
  font-weight: 600;
  background: var(--red-600);
  color: var(--white);
  border: 0;
  cursor: pointer;
  transition: background .18s ease;
}
.single_add_to_cart_button:hover { background: var(--red-700); }
.single_add_to_cart_button.disabled { background: var(--ink-400); cursor: not-allowed; }
.single_add_to_cart_button.loading { opacity: 0.7; }

/* Reset link visibility handled by variations rules above */

/* --- Variation pills (vervangt visueel de native <select>) --- */
.variations_form .variations select.lakpro-variation-select {
  display: none !important;
}
.variations_form .lakpro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  flex: 1 1 100%;
}
.variations_form .lakpro-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 38px;
  padding: 0 16px;
  background: var(--white);
  border: 1.5px solid var(--line-200);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-1000);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
  line-height: 1;
}
.variations_form .lakpro-pill:hover:not(:disabled) {
  border-color: var(--ink-1000);
}
.variations_form .lakpro-pill.is-active {
  background: var(--ink-1000);
  color: var(--white);
  border-color: var(--ink-1000);
}
.variations_form .lakpro-pill.is-disabled,
.variations_form .lakpro-pill:disabled {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
}
.variations_form .lakpro-pill:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(15,17,21,.12);
}

/* --- Per-review sterren (single-layer-per-ster) --- */
.lakpro-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 8px;
}
.lakpro-review-stars__row {
  display: inline-flex;
  gap: 2px;
  line-height: 0;
}
.lakpro-review-stars__num {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-1000);
}
/* Verberg WC's default 'Waardering 4 uit 5' tekst-output */
.product-details .commentlist .star-rating,
.product-details .commentlist p.meta + .description .star-rating,
.product-details .commentlist .description p:first-child:has(strong.rating) {
  display: none !important;
}

/* --- Already-reviewed notice --- */
.lakpro-review-done {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line-200);
  border-radius: 12px;
  background: var(--surface);
  margin-top: 16px;
}
.lakpro-review-done__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #E6F7EC;
  color: #15803D;
}
.lakpro-review-done__icon svg { width: 18px; height: 18px; }
.lakpro-review-done strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-1000);
  margin-bottom: 2px;
}
.lakpro-review-done span {
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.5;
}

/* --- WC default tabs hidden (we render our own) --- */
.woocommerce-tabs .tabs.wc-tabs { display: none; }
.woocommerce-tabs .panel { padding: var(--s-6) 0; }

/* --- Pagination --- */
.woocommerce-pagination ul.page-numbers {
  display: flex; gap: 4px; justify-content: center; margin: var(--s-10) 0 0;
  padding: 0; list-style: none; border: 0;
}
.woocommerce-pagination ul.page-numbers li { display: inline-block; border: 0; }
.woocommerce-pagination .page-numbers {
  min-width: 40px; height: 40px;
  padding: 0 10px;
  border-radius: var(--r-input);
  border: 1px solid var(--line-200);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  background: var(--white);
  color: var(--ink-1000);
}
.woocommerce-pagination .page-numbers.current { background: var(--ink-1000); color: var(--white); border-color: var(--ink-1000); }
.woocommerce-pagination .page-numbers:hover { border-color: var(--ink-1000); }

/* --- Remove icon (default cart line) --- */
.remove_from_cart_button { font-size: 11px; color: var(--ink-600); }
.remove_from_cart_button:hover { color: var(--red-600); }

/* --- Result count label --- */
.woocommerce-result-count { margin: 0; font-size: 13px; color: var(--ink-600); }

/* --- Login / Register forms --- */
.woocommerce-form-login, .woocommerce-form-register {
  max-width: 480px;
  margin: 0 auto;
  padding: var(--s-6);
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
}
.woocommerce-form-login__submit, .woocommerce-form-register__submit, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px;
  border-radius: var(--r-btn);
  font-size: 14px; font-weight: 600;
  background: var(--ink-1000);
  color: var(--white);
  border: 0;
  cursor: pointer;
  transition: background .18s ease;
}
.button.alt, button.single_add_to_cart_button { background: var(--red-600); }
.button:hover { background: var(--ink-800); }
.button.alt:hover { background: var(--red-700); }

/* --- My account navigation --- */
.woocommerce-MyAccount-navigation ul {
  list-style: none; padding: 0; margin: 0 0 var(--s-6);
  display: flex; flex-wrap: wrap; gap: 4px;
}
.woocommerce-MyAccount-navigation ul li a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-200);
  font-size: 13px; font-weight: 600;
  color: var(--ink-1000);
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover { background: var(--ink-1000); color: var(--white); border-color: var(--ink-1000); }

/* --- Order tables (My account, thankyou) --- */
table.shop_table, table.woocommerce-checkout-review-order-table, table.woocommerce-table {
  width: 100%;
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
table.shop_table th, table.shop_table td { padding: 14px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line-200); }
table.shop_table thead th { background: var(--surface); font-weight: 700; }
table.shop_table tr:last-child td { border-bottom: 0; }

/* --- Star rating widget --- */
.star-rating { color: var(--warning); }

/* --- Layout: Single product variants — when using <select> wrap visually --- */
.variations + .single_variation_wrap .price { margin: 0; }

/* --- Search results page header form --- */
.search-page-bar { background: var(--surface); }

/* =========================================================
   FIX v1.0.1 — Header nav, dropdowns, logo safety
   ========================================================= */

/* Logo: always strict size, regardless of upload dimensions */
.header__brand-img,
.custom-logo {
  max-height: 40px !important;
  max-width: 180px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}
@media (min-width: 1024px) {
  .header__brand-img,
  .custom-logo { max-height: 44px !important; max-width: 220px !important; }
}

/* Nav list — replaces the old `.header__nav a` direct-child rule */
.header__nav-list,
.header__nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--s-6);
  align-items: center;
}
.header__nav-list li,
.header__nav > ul li {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.header__nav-list a,
.header__nav > ul a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-800);
  padding: 8px 0;
  white-space: nowrap;
  text-decoration: none;
}
.header__nav-list a:hover,
.header__nav > ul a:hover { color: var(--red-600); }

/* Sub-menu dropdowns — hidden by default, shown on hover/focus (desktop) */
.header__nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-hover);
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 60;
}
.header__nav .sub-menu li {
  display: block;
  width: 100%;
}
.header__nav .sub-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  width: 100%;
  white-space: normal;
}
.header__nav .sub-menu a:hover { background: var(--surface); color: var(--red-600); }

@media (min-width: 1024px) {
  .header__nav-list li:hover > .sub-menu,
  .header__nav-list li:focus-within > .sub-menu,
  .header__nav > ul li:hover > .sub-menu,
  .header__nav > ul li:focus-within > .sub-menu { display: flex; }
}

/* Caret indicator for items with submenu */
.header__nav-list .menu-item-has-children > a::after,
.header__nav > ul .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  opacity: .6;
}

/* Make sure the header's grid does NOT push the nav off-screen on desktop */
@media (min-width: 1024px) {
  .header__inner {
    grid-template-columns: auto auto 1fr auto !important;
  }
  .header__nav { min-width: 0; overflow: visible; }
  .header__search { justify-self: end; }
}

/* Mobile menu drawer — make sure nested ULs render readable */
.lakpro-mobile-nav ul.sub-menu {
  padding-left: 16px;
  margin: 4px 0 8px;
  border-left: 2px solid var(--line-200);
}
.lakpro-mobile-nav ul.sub-menu a { font-weight: 500; font-size: 13px; padding: 8px 12px; border-bottom: 0; }

/* =========================================================
   FIX v1.0.2 — WC product loop grid + compact mobile cards
   ========================================================= */

/* WooCommerce wraps the product loop in <ul class="products columns-N">.
   Override its layout so it matches our .product-grid behaviour. */
.woocommerce ul.products,
ul.products {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: var(--s-3) !important;
}
@media (min-width: 640px) {
  .woocommerce ul.products,
  ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: var(--s-4) !important; }
}
@media (min-width: 1024px) {
  .woocommerce ul.products,
  ul.products { grid-template-columns: repeat(3, 1fr) !important; gap: var(--s-5) !important; }
}
@media (min-width: 1280px) {
  .woocommerce ul.products,
  ul.products { grid-template-columns: repeat(4, 1fr) !important; }
}

/* Cancel WC's float-based columns-N styling */
.woocommerce ul.products li.product,
.woocommerce ul.products article.product-card,
ul.products article.product-card,
ul.products li.product {
  width: auto !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}

/* =========================================================
   Compact mobile product card  (< 640px)
   ========================================================= */
@media (max-width: 639px) {
  .product-card {
    flex-direction: row !important;
    border-radius: 10px;
    min-height: 96px;
  }
  .product-card__media {
    flex: 0 0 96px !important;
    width: 96px;
    height: 96px;
    aspect-ratio: 1 / 1;
    align-self: stretch;
  }
  .product-card__media img,
  .product-card__media svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
  }
  .product-card__body {
    padding: 10px 12px !important;
    gap: 2px !important;
    min-width: 0;
    justify-content: space-between;
  }
  .product-card__brand {
    font-size: 10px;
    letter-spacing: 0.05em;
    line-height: 1.2;
  }
  .product-card__title {
    font-size: 13px !important;
    line-height: 1.3 !important;
    -webkit-line-clamp: 2;
    min-height: 0 !important;
    margin: 1px 0 2px;
  }
  .product-card__meta { font-size: 11px; gap: 6px; }
  .product-card__meta span { line-height: 1.2; }
  .product-card__price-row {
    padding-top: 4px !important;
    gap: 8px;
    align-items: flex-end;
  }
  .product-card__price { font-size: 14px !important; line-height: 1; }
  .product-card__price-sub {
    font-size: 10px;
    line-height: 1.2;
    margin-top: 1px;
  }
  .product-card__cta {
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px;
    flex-shrink: 0;
  }
  .product-card__cta svg { width: 16px; height: 16px; }
  .product-card__cta--variable {
    width: auto !important;
    padding: 0 10px !important;
    font-size: 11px !important;
    height: 34px !important;
    gap: 4px;
  }
  .product-card__cta--variable svg { width: 12px; height: 12px; }
  .product-card__badge {
    font-size: 9px !important;
    padding: 3px 6px !important;
    top: 6px;
    left: 6px;
    letter-spacing: 0.04em;
  }
  /* Wishlist heart only on tablet+ — too cramped on mobile */
  .product-card__wishlist { display: none !important; }
}

/* Tablet (640-767) — make sure cards revert to vertical layout */
@media (min-width: 640px) {
  .product-card {
    flex-direction: column !important;
  }
  .product-card__media {
    flex: 1 !important;
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .product-card__media img,
  .product-card__media svg {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    padding: 0;
  }
}

/* WC's standard product image stretching → keep contained */
.product-card__media img.attachment-woocommerce_thumbnail {
  width: auto !important;
  height: auto !important;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
@media (max-width: 639px) {
  .product-card__media img.attachment-woocommerce_thumbnail {
    max-width: 100%;
    max-height: 100%;
    padding: 6px;
  }
}

/* =========================================================
   FIX v1.0.3 — Z-index above Elementor (9998)
   ========================================================= */
.drawer-overlay { z-index: 99998 !important; }
.drawer         { z-index: 99999 !important; }
.toast          { z-index: 99999 !important; }
.header         { z-index: 9999 !important; }

/* Force visibility when open (defensive — overrides any Elementor sticky-bar) */
.drawer.is-open { transform: translateX(0) !important; visibility: visible !important; }
.drawer-overlay.is-open { opacity: 1 !important; pointer-events: auto !important; }

/* =========================================================
   FIX v1.0.4 — Force image sizing in cart/checkout containers
   (My CSS only sized inline <svg> — but WC uses <img> uploads)
   ========================================================= */

/* Checkout summary line — small 56×56 thumb */
.summary-line__img {
  width: 56px !important;
  height: 56px !important;
  flex: 0 0 56px !important;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}
.summary-line__img img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  padding: 4px;
  display: block;
}

/* Mini cart (cart sidebar) line images */
.cart-line__image {
  width: 72px !important;
  height: 72px !important;
  flex: 0 0 72px !important;
  overflow: hidden;
}
.cart-line__image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  padding: 6px;
  display: block;
}

/* Cart page row images */
.cart-row__image {
  width: 96px !important;
  height: 96px !important;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .cart-row__image { width: 120px !important; height: 120px !important; }
}
.cart-row__image img,
.cart-row__image a img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  padding: 8px;
  display: block;
}

/* Cart-row remove anchor (×) — keep it inline */
.cart-row__image a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Product detail main image */
.product__main-image {
  overflow: hidden;
}
.product__main-image img,
.product__main-image .woocommerce-product-gallery__image img,
.product__main-image .woocommerce-product-gallery__image a img {
  width: 100% !important;
  height: 100% !important;
  max-width: 90% !important;
  max-height: 90% !important;
  object-fit: contain !important;
  margin: auto;
  display: block;
}

/* Product thumbnails */
.product__thumb {
  overflow: hidden;
}
.product__thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: 80% !important;
  max-height: 80% !important;
  object-fit: contain !important;
  margin: auto;
  display: block;
}

/* Category card visuals — admin upload vult de tile */
.cat-card__visual img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  display: block;
}

/* Cat-card met achtergrond-foto: foto vult de hele tile, lichte witte
   overlay zodat het kleine icoon + tekst leesbaar blijven. */
.cat-card--has-bg {
  position: relative;
  background-color: var(--white);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  isolation: isolate;
  color: inherit;
}
.cat-card--has-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.85) 60%, rgba(255,255,255,0.96) 100%);
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
}
.cat-card--has-bg .cat-card__title,
.cat-card--has-bg .cat-card__sub,
.cat-card--has-bg .cat-card__more {
  position: relative; z-index: 2;
}

/* Quantity badge dot stays at -6 -6 of the inner box */
.summary-line__img::after {
  position: absolute !important;
  top: -6px !important;
  right: -6px !important;
  width: 20px !important;
  height: 20px !important;
  z-index: 2;
}

/* Product card media — when an actual <img> is used (not svg) */
.product-card__media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 85% !important;
  max-height: 85% !important;
  object-fit: contain !important;
  padding: 8px;
}
@media (max-width: 639px) {
  .product-card__media img {
    width: 100% !important;
    height: 100% !important;
    max-width: 92% !important;
    max-height: 92% !important;
    padding: 6px;
  }
}

/* WooCommerce product gallery shenanigans — keep contained */
.woocommerce-product-gallery,
.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image {
  width: 100%;
  max-width: 100%;
}

/* =========================================================
   FIX v1.0.5 — NUCLEAR override against plugin CSS conflicts
   (Berocket Ajax Filters, PWB Brands, ReviewX, etc.)
   ========================================================= */

/* DESKTOP: force vertical product cards no matter what */
@media (min-width: 640px) {
  body .product-card,
  body article.product-card,
  body ul.products .product-card,
  body ul.products article.product-card,
  body ul.products li.product-card,
  body .woocommerce ul.products .product-card,
  body .woocommerce ul.products article.product-card,
  html body .product-card {
    display: flex !important;
    flex-direction: column !important;
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
  }

  body .product-card .product-card__media,
  body article.product-card .product-card__media,
  body ul.products .product-card .product-card__media {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
  }

  body .product-card .product-card__body,
  body article.product-card .product-card__body {
    flex: 0 0 auto !important;
    width: 100% !important;
    padding: 16px 16px 20px !important;
  }
}

/* MOBILE: force horizontal compact cards */
@media (max-width: 639px) {
  body .product-card,
  body article.product-card,
  body ul.products .product-card,
  body ul.products article.product-card,
  html body .product-card {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    min-height: 96px !important;
  }
  body .product-card .product-card__media,
  body article.product-card .product-card__media {
    flex: 0 0 96px !important;
    width: 96px !important;
    height: 96px !important;
    aspect-ratio: 1 / 1 !important;
  }
}

/* PRODUCT GRID — force grid no matter what plugin says */
body ul.products,
body .woocommerce ul.products,
html body ul.products {
  display: grid !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 639px) {
  body ul.products,
  body .woocommerce ul.products { grid-template-columns: 1fr !important; gap: 12px !important; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  body ul.products,
  body .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  body ul.products,
  body .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; gap: 20px !important; }
}
@media (min-width: 1280px) {
  body ul.products,
  body .woocommerce ul.products { grid-template-columns: repeat(4, 1fr) !important; gap: 20px !important; }
}

/* Reset any plugin floats/width overrides on product cards */
body .woocommerce ul.products li.product,
body .woocommerce-page ul.products li.product,
body ul.products li.product,
body ul.products article.product {
  width: auto !important;
  margin-right: 0 !important;
  float: none !important;
}

/* =========================================================
   FIX v1.0.6 — Bottom spacing, mobile header full width,
   symmetric mobile product grid padding
   ========================================================= */

/* 1. Meer ruimte onderaan shop/category/cart/checkout */
body.woocommerce main.container,
body.woocommerce-page main.container,
main.lakpro-wc-main,
body.archive main.container,
body.tax-product_cat main.container,
body.post-type-archive-product main.container,
body.woocommerce-cart main.container,
body.woocommerce-checkout main.container {
  padding-bottom: 96px !important;
}

/* Pagination / load-more breathing room */
.woocommerce-pagination,
.lmp_load_more_wrapper,
.pagination {
  margin-top: 48px !important;
  margin-bottom: 32px !important;
}

/* 2. Header full width op mobiel + alle viewports — geen body margin */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden;
}

.topbar,
.header {
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0 !important;
  box-sizing: border-box;
}
.topbar > .container,
.header > .container {
  width: 100%;
  max-width: var(--container);
  box-sizing: border-box;
}

/* 3. Symmetrische padding op mobiel — productblokken */
@media (max-width: 639px) {
  body .container,
  body main.container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  /* ul.products: geen browser-default ul padding-left, geen margins */
  body ul.products,
  body .woocommerce ul.products,
  html body ul.products {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    list-style: none !important;
    box-sizing: border-box !important;
  }

  /* Product card: vol breedte binnen de grid-cel, gelijke margins */
  body ul.products > *,
  body .woocommerce ul.products > * {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* Geen overhang van plugin-CSS die marges op .product zet */
  body ul.products li.product,
  body ul.products article.product,
  body ul.products article.product-card {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 10px !important;
    overflow: hidden;
  }
}

/* =========================================================
   FIX v1.0.7 — Sticky cart/checkout summary
   ========================================================= */

/* `overflow-x: hidden` on html/body BREAKS position:sticky.
   `overflow-x: clip` does the same visual job without breaking sticky. */
html,
body {
  overflow-x: clip !important;
}
/* Fallback for older browsers: keep hidden but ensure sticky parents
   aren't inside any overflow-hidden ancestor. */
@supports not (overflow-x: clip) {
  html, body { overflow-x: hidden !important; }
}

/* Cart page sticky summary */
@media (min-width: 1024px) {
  body .cart-page {
    align-items: start !important;
  }
  body .cart-summary,
  body aside.cart-summary {
    position: sticky !important;
    top: calc(var(--header-h, 72px) + 16px) !important;
    align-self: start !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Checkout summary sticky (same trick) */
@media (min-width: 1024px) {
  body .checkout {
    align-items: start !important;
  }
  body .checkout-summary,
  body aside.checkout-summary {
    position: sticky !important;
    top: calc(var(--header-h, 72px) + 16px) !important;
    align-self: start !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* =========================================================
   FIX v1.0.8 — Hide mobile search by default, toggle via button
   ========================================================= */

/* Mobile search input: hidden by default, opens only on click */
.header__mobile-search {
  display: none !important;
}
.header__mobile-search.is-open {
  display: flex !important;
}

/* Search toggle button: only show on mobile */
.header__search-toggle {
  display: inline-flex !important;
}
@media (min-width: 1024px) {
  .header__search-toggle { display: none !important; }
}

/* When mobile search is open, sit it under the header row */
.header__mobile-search.is-open {
  margin-top: 12px;
  margin-bottom: 12px;
  width: 100%;
}

/* =========================================================
   FIX v1.0.9 — Mobile product card: visible CTA + compact
   ========================================================= */

@media (max-width: 639px) {
  /* Card: auto height (geen min-height clamp), row layout */
  body .product-card,
  body article.product-card,
  body ul.products article.product-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
    border-radius: 10px !important;
  }

  /* Media links — 110px breed, hoogte volgt content (geen aspect-ratio clamp) */
  body .product-card .product-card__media,
  body article.product-card .product-card__media {
    flex: 0 0 110px !important;
    width: 110px !important;
    min-height: 110px !important;
    height: auto !important;
    aspect-ratio: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  body .product-card .product-card__media img,
  body .product-card .product-card__media svg {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    padding: 8px !important;
  }

  /* Body: vult rest, content verticaal verdeeld */
  body .product-card .product-card__body,
  body article.product-card .product-card__body {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 10px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    justify-content: space-between !important;
  }

  /* Brand / meta / title strakker */
  .product-card__brand { font-size: 10px !important; line-height: 1.2 !important; }
  .product-card__title {
    font-size: 13px !important;
    line-height: 1.3 !important;
    -webkit-line-clamp: 2 !important;
    min-height: 0 !important;
    margin: 0 !important;
  }
  .product-card__meta { font-size: 11px !important; }

  /* Price row: horizontaal, prijs links, knop ALTIJD rechts zichtbaar */
  .product-card__price-row {
    margin-top: auto !important;
    padding-top: 4px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .product-card__price { font-size: 14px !important; line-height: 1 !important; }
  .product-card__price-sub { font-size: 10px !important; line-height: 1.2 !important; }

  /* CTA: compact 32×32, ALTIJD zichtbaar (geen overflow problem) */
  .product-card__cta {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .product-card__cta svg { width: 14px !important; height: 14px !important; }
  .product-card__cta--variable {
    width: auto !important;
    padding: 0 10px !important;
    height: 32px !important;
    font-size: 11px !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
  }

  /* Badge linksboven (Variant/Bestseller) — kleiner op mobiel */
  .product-card__badge {
    font-size: 9px !important;
    padding: 3px 6px !important;
    top: 6px !important;
    left: 6px !important;
    letter-spacing: 0.04em !important;
  }
  .product-card__wishlist { display: none !important; }
}

/* =========================================================
   FIX v1.0.10 — Mobile right-side spacing + filter hide
   ========================================================= */

/* Verberg filter sidebar HARD op alles < 1024px */
@media (max-width: 1023px) {
  body aside.filters,
  body .shop-layout > aside.filters,
  html body aside.filters {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}

/* Container — symmetrische 16px padding GEGARANDEERD */
@media (max-width: 639px) {
  body .container,
  body main.container,
  html body .container,
  html body main.container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  /* Shop layout binnen container — geen extra padding/margin */
  body .shop-layout,
  body main.container .shop-layout {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Section wrapper rond products */
  body .shop-layout > section,
  body main.container > section {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  /* UL.products zelf — geen padding, vol breedte */
  body ul.products,
  body .woocommerce ul.products,
  html body ul.products {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Product cards — vol breedte van hun grid cel */
  body ul.products > article.product-card,
  body ul.products > li.product,
  body .woocommerce ul.products > article {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
}

/* =========================================================
   FIX v1.0.12 — Cart sidebar: sticky foot, compact qty, layout
   ========================================================= */

/* Drawer internal: head fixed top, body scrolls, foot fixed bottom */
body #cart-sidebar,
body .drawer.drawer--right {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* WC's .widget_shopping_cart_content wraps everything — make it flex too */
#cart-sidebar > .widget_shopping_cart_content {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  width: 100% !important;
}

/* Head: fixed at top */
#cart-sidebar .cart-sidebar__head {
  flex: 0 0 auto !important;
  padding: 18px 20px !important;
  border-bottom: 1px solid var(--line-200);
  background: var(--white);
}

/* Body: takes remaining space, scrollable */
#cart-sidebar .cart-sidebar__body {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 16px 20px !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Foot: ALWAYS sticky at bottom */
#cart-sidebar .cart-sidebar__foot {
  flex: 0 0 auto !important;
  border-top: 1px solid var(--line-200) !important;
  background: var(--surface) !important;
  padding: 16px 20px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================================================
   Cart line — image | content | price column
   ========================================================= */
#cart-sidebar .cart-line {
  display: grid !important;
  grid-template-columns: 64px 1fr auto !important;
  gap: 12px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid var(--line-100) !important;
  align-items: flex-start !important;
}
#cart-sidebar .cart-line:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Compact image 64×64 */
#cart-sidebar .cart-line__image {
  width: 64px !important;
  height: 64px !important;
  flex: 0 0 64px !important;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cart-sidebar .cart-line__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 4px !important;
}

/* Title + variant + qty stacked in middle column */
#cart-sidebar .cart-line > div:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#cart-sidebar .cart-line__title {
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#cart-sidebar .cart-line__title a {
  color: var(--ink-1000) !important;
}
#cart-sidebar .cart-line__variant {
  font-size: 11px !important;
  color: var(--ink-600) !important;
  margin: 0 !important;
}

/* Compact qty stepper */
#cart-sidebar .cart-line__qty,
#cart-sidebar .quantity.cart-line__qty,
#cart-sidebar .quantity {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  max-width: 100px !important;
  height: 28px !important;
  border: 1px solid var(--line-200) !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  margin-top: 4px !important;
  background: var(--white);
}
#cart-sidebar .cart-line__qty input,
#cart-sidebar .cart-line__qty input.qty,
#cart-sidebar .quantity input {
  width: 32px !important;
  height: 26px !important;
  text-align: center !important;
  border: 0 !important;
  background: transparent !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  -moz-appearance: textfield !important;
}
#cart-sidebar .cart-line__qty input::-webkit-outer-spin-button,
#cart-sidebar .cart-line__qty input::-webkit-inner-spin-button { -webkit-appearance: none !important; margin: 0 !important; }
#cart-sidebar .cart-line__qty button,
#cart-sidebar .quantity button {
  width: 26px !important;
  height: 100% !important;
  font-size: 14px !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  color: var(--ink-1000);
}
#cart-sidebar .cart-line__qty button:hover,
#cart-sidebar .quantity button:hover { background: var(--surface) !important; }

/* Hide WC's accessibility label and <br> tags inside the quantity wrapper */
#cart-sidebar .quantity label,
#cart-sidebar .cart-line__qty label,
#cart-sidebar .quantity > br { display: none !important; }

/* Right column: price + remove */
#cart-sidebar .cart-line__col-right,
#cart-sidebar .cart-line > div:nth-child(3) {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
#cart-sidebar .cart-line__price {
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 1 !important;
}
#cart-sidebar .cart-line__remove,
#cart-sidebar .remove_from_cart_button {
  font-size: 11px !important;
  color: var(--ink-600) !important;
  margin-top: 4px !important;
  background: transparent !important;
  border: 0 !important;
  text-decoration: none !important;
}
#cart-sidebar .cart-line__remove:hover,
#cart-sidebar .remove_from_cart_button:hover { color: var(--red-600) !important; }

/* Foot rows */
#cart-sidebar .cart-sidebar__row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin: 0 !important;
}
#cart-sidebar .cart-sidebar__sub { font-size: 13px; color: var(--ink-600); }
#cart-sidebar .cart-sidebar__total { font-size: 16px; font-weight: 700; }
#cart-sidebar .cart-sidebar__buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  margin-top: 4px;
}
#cart-sidebar .cart-sidebar__buttons .btn { height: 44px !important; font-size: 13px !important; padding: 0 12px !important; }
#cart-sidebar .cart-sidebar__note {
  font-size: 11px !important;
  color: var(--ink-600) !important;
  text-align: center !important;
  margin: 0 !important;
}

/* =========================================================
   FIX v1.0.13 — Hide toast everywhere (cart sidebar opens instead)
   ========================================================= */
.toast,
#toast,
body .toast,
html body .toast {
  display: none !important;
  visibility: hidden !important;
}

/* =========================================================
   FIX v1.0.14 — Hide native number spinners in qty inputs
   ========================================================= */
input[type="number"].qty,
.cart-line__qty input,
.quantity input.qty,
.qty input {
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}
input[type="number"].qty::-webkit-outer-spin-button,
input[type="number"].qty::-webkit-inner-spin-button,
.cart-line__qty input::-webkit-outer-spin-button,
.cart-line__qty input::-webkit-inner-spin-button,
.quantity input.qty::-webkit-outer-spin-button,
.quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
  display: none !important;
}

/* =========================================================
   FIX v1.0.16 — Checkout styling polish
   ========================================================= */

/* Order summary right column — payment list styling */
body .checkout-summary ul.payment_methods,
body .woocommerce-checkout #payment ul.payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  background: transparent !important;
  border: 0 !important;
}
body .checkout-summary ul.payment_methods > li,
body .woocommerce-checkout #payment ul.payment_methods > li {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border: 1px solid var(--line-200) !important;
  border-radius: var(--r-input) !important;
  padding: 12px 14px !important;
  cursor: pointer !important;
  background: var(--white) !important;
  margin: 0 !important;
  list-style: none !important;
  flex-wrap: wrap !important;
}
body .checkout-summary ul.payment_methods > li:has(input:checked),
body .woocommerce-checkout #payment ul.payment_methods > li:has(input:checked) {
  border-color: var(--ink-1000) !important;
  background: var(--surface) !important;
}
body .checkout-summary ul.payment_methods > li input[type="radio"] {
  margin: 0 !important;
  accent-color: var(--red-600);
}
body .checkout-summary ul.payment_methods > li label {
  flex: 1 !important;
  margin: 0 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: var(--ink-1000) !important;
  cursor: pointer !important;
}
body .checkout-summary ul.payment_methods > li label img {
  height: 24px !important;
  width: auto !important;
  margin: 0 4px !important;
  vertical-align: middle !important;
  display: inline !important;
}
body .checkout-summary ul.payment_methods > li .payment_box {
  flex: 1 0 100% !important;
  background: var(--surface) !important;
  border: 0 !important;
  padding: 12px 0 0 !important;
  margin: 12px 0 0 !important;
  border-top: 1px solid var(--line-200) !important;
  font-size: 13px !important;
}
body .checkout-summary ul.payment_methods > li .payment_box::before {
  display: none !important;
}

/* Shipping methods radio styling (in order summary) */
body .checkout-summary .shipping ul#shipping_method,
body .woocommerce-shipping-totals ul#shipping_method,
body ul#shipping_method {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}
body ul#shipping_method li {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid var(--line-200) !important;
  border-radius: var(--r-input) !important;
  padding: 10px 14px !important;
  cursor: pointer !important;
  background: var(--white) !important;
  margin: 0 !important;
  font-size: 13px !important;
}
body ul#shipping_method li:has(input:checked) {
  border-color: var(--ink-1000) !important;
  background: var(--surface) !important;
}
body ul#shipping_method li input[type="radio"] { margin: 0 !important; accent-color: var(--red-600); }
body ul#shipping_method li label { margin: 0 !important; flex: 1 !important; font-size: 13px !important; color: var(--ink-800) !important; cursor: pointer !important; font-weight: 500 !important; }

/* Verstop de "Bezending"-table thead/tr structure die WC wrapt */
body .checkout-summary tr.shipping,
body .checkout-summary tr.cart-subtotal,
body .checkout-summary tr.order-total,
body .checkout-summary tr.tax-rate {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  padding: 8px 0 !important;
  border: 0 !important;
}
body .checkout-summary tr.shipping th,
body .checkout-summary tr.shipping td {
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  font-weight: 500 !important;
}
body .checkout-summary tr.shipping th { font-size: 13px; color: var(--ink-800); width: 100px; flex-shrink: 0; }
body .checkout-summary tr.shipping td { flex: 1; }

/* Coupon link netter */
body .checkout_coupon,
body .woocommerce-form-coupon-toggle {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 0 20px !important;
  border: 0 !important;
}
body .woocommerce-info {
  background: var(--surface) !important;
  border: 1px solid var(--line-200) !important;
  border-left: 3px solid var(--ink-1000) !important;
  padding: 12px 16px !important;
  font-size: 13px !important;
  border-radius: var(--r-input) !important;
}
body .woocommerce-info a,
body .showcoupon { color: var(--red-600) !important; font-weight: 600 !important; text-decoration: none !important; }
body .woocommerce-info a:hover { text-decoration: underline !important; }

/* Stripped in v1.0.23 — was hiding place_order button */

/* Stripped in v1.0.23 — was hiding place_order button */

/* WC English-language fallback strings hidden — we'll show NL via filter */
body .woocommerce-privacy-policy-text {
  font-size: 12px !important;
  color: var(--ink-600) !important;
  margin: 12px 0 !important;
  line-height: 1.5 !important;
}
body .woocommerce-privacy-policy-text p { margin: 0 !important; }

/* Terms checkbox styling */
body .woocommerce-terms-and-conditions-wrapper label,
body .validate-required label.checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 12px !important;
  color: var(--ink-600) !important;
  line-height: 1.5 !important;
  margin: 8px 0 !important;
}
body .woocommerce-terms-and-conditions-wrapper input[type="checkbox"],
body .validate-required input.input-checkbox {
  margin-top: 2px !important;
  accent-color: var(--red-600);
  flex-shrink: 0;
}

/* Order summary scroll fix */
body .checkout-summary {
  overflow-y: auto !important;
  scrollbar-width: thin;
}

/* Quantity badge on summary lines — make sure it shows */
body .summary-line__img { overflow: visible !important; }
body .summary-line__img::after {
  position: absolute !important;
  top: -8px !important; right: -8px !important;
  width: 22px !important; height: 22px !important;
  background: var(--ink-1000) !important;
  color: var(--white) !important;
  border-radius: 50% !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 3 !important;
}



/* =========================================================
   FIX v1.0.24 — DEFINITIVE clean checkout layout + width + button
   (alle v1.0.17–1.0.23 patches gestript, dit is de SINGLE source)
   ========================================================= */

/* --- Container & Layout op checkout pagina --- */


/* --- Het .checkout element ZELF moet 100% breedte van container nemen --- */
body.woocommerce-checkout form.checkout,
body.woocommerce-checkout div.checkout {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* --- Grid layout binnen .checkout --- */
body.woocommerce-checkout .checkout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 100% !important;
  align-items: flex-start !important;
  box-sizing: border-box !important;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .checkout {
    grid-template-columns: minmax(0, 1fr) 440px !important;
    gap: 48px !important;
  }
}

/* --- Form column (.checkout__main) — vol breedte van zijn grid cel --- */
body.woocommerce-checkout .checkout__main,
body.woocommerce-checkout .checkout > .checkout__main {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  box-sizing: border-box !important;
}

/* --- Summary column — vol breedte van zijn grid cel (440px) --- */
body.woocommerce-checkout .checkout-summary,
body.woocommerce-checkout aside.checkout-summary {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  position: sticky !important;
  top: 88px !important;
  align-self: start !important;
  background: var(--surface) !important;
  border: 1px solid var(--line-200) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

/* --- Checkout cards — vol breedte --- */
body.woocommerce-checkout .checkout-card {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: 14px;
  padding: 24px;
}

/* --- Summary lines en totals — geen max-height clamp --- */
body.woocommerce-checkout .checkout-summary__lines {
  max-height: none !important;
  overflow: visible !important;
  padding: 16px 20px !important;
  background: var(--white) !important;
}
body.woocommerce-checkout .checkout-summary__totals {
  padding: 16px 20px !important;
  background: var(--white) !important;
  border-top: 1px solid var(--line-200) !important;
}

/* --- Place-order ALWAYS visible — wint van alles --- */
body.woocommerce-checkout #place_order,
body.woocommerce-checkout button[name="woocommerce_checkout_place_order"],
body.woocommerce-checkout .form-row.place-order #place_order,
body.woocommerce-checkout .checkout-place #place_order {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  height: 54px !important;
  align-items: center !important;
  justify-content: center !important;
  background: #E11D2A !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  padding: 0 24px !important;
  /* iOS Safari renderingfix: zonder -webkit-appearance: none worden custom kleuren/text genegeerd */
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-transform: none !important;
  text-indent: 0 !important;
  white-space: normal !important;
  overflow: visible !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: none !important;
}
/* Op smalle telefoons iets kleiner zodat lange totals (€xxxxx,xx) niet overlopen */
@media (max-width: 480px) {
  body.woocommerce-checkout #place_order,
  body.woocommerce-checkout .checkout-place #place_order {
    font-size: 14px !important;
    padding: 0 14px !important;
  }
}
body.woocommerce-checkout #place_order:hover {
  background: #C8101D !important;
}

/* Place-order wrapper styles */
body.woocommerce-checkout .checkout-place {
  padding: 20px !important;
  background: var(--surface) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
body.woocommerce-checkout .checkout-place .form-row.place-order {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

/* Hide hard-injected duplicate place_order outside our .checkout-place */
body.woocommerce-checkout form.checkout > #place_order,
body.woocommerce-checkout form.checkout > .form-row.place-order,
body.woocommerce-checkout .checkout-summary > .form-row.place-order:not(.checkout-place .form-row.place-order),
body.woocommerce-checkout .checkout-summary > #place_order {
  display: none !important;
}

/* Verberg WC default privacy-policy buiten ons .checkout-place block */
body.woocommerce-checkout form.checkout > .woocommerce-privacy-policy-text,
body.woocommerce-checkout form.checkout > .woocommerce-terms-and-conditions-wrapper {
  display: none !important;
}

/* =========================================================
   FIX v1.0.25 — Force-center container + CSS-only duplicate hide
   ========================================================= */

/* Force center container met maximum specificity */


/* En de body force flex-center voor extra zekerheid */
body.woocommerce-checkout {
  display: block !important;
  text-align: initial !important;
}

/* =========================================================
   CSS-only duplicate place_order/payment hiding
   ========================================================= */

/* Hide place_order buttons die NIET in .form-row.place-order zitten */
body.woocommerce-checkout .checkout-place > button[name="woocommerce_checkout_place_order"],
body.woocommerce-checkout .checkout-place > #place_order {
  display: none !important;
}

/* Hide tweede en latere .form-row.place-order */
body.woocommerce-checkout .form-row.place-order ~ .form-row.place-order {
  display: none !important;
}

/* Hide tweede en latere ul.payment_methods */
body.woocommerce-checkout ul.payment_methods ~ ul.payment_methods,
body.woocommerce-checkout ul.wc_payment_methods ~ ul.wc_payment_methods {
  display: none !important;
}

/* Hide tweede en latere #payment divs */
body.woocommerce-checkout #payment ~ #payment {
  display: none !important;
}

/* =========================================================
   FIX v1.0.26 — Checkout container = same as rest (1280px)
   ========================================================= */

/* Container blijft 1280px (default --container var), maar gegarandeerd gecentreerd */

@media (min-width: 768px) {
  html body.woocommerce-checkout main.container,
  html body.woocommerce-checkout div.container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* En het .checkout element binnen de container MOET 100% gebruiken */
body.woocommerce-checkout form.checkout,
body.woocommerce-checkout > .checkout,
html body.woocommerce-checkout form.checkout,
html body.woocommerce-checkout .checkout {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* Grid layout binnen .checkout — exact preview */
body.woocommerce-checkout .checkout {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 100% !important;
  align-items: flex-start !important;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .checkout {
    grid-template-columns: minmax(0, 1fr) 400px !important;
    gap: 40px !important;
  }
}

/* Cards + summary nemen volle breedte van hun grid cel */
body.woocommerce-checkout .checkout__main,
body.woocommerce-checkout .checkout-summary,
body.woocommerce-checkout .checkout-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* =========================================================
   FIX v1.0.27 — WC form-row layout binnen form-grid + slim header
   ========================================================= */

/* WC's form-row classes binnen mijn form-grid:
   - form-row-wide  → volledige breedte (1 / -1)
   - form-row-first → kolom 1
   - form-row-last  → kolom 2 */
body.woocommerce-checkout .form-grid .form-row {
  margin: 0 !important;
  padding: 0 !important;
}
body.woocommerce-checkout .form-grid .form-row.form-row-wide,
body.woocommerce-checkout .form-grid #billing_country_field,
body.woocommerce-checkout .form-grid #billing_address_1_field,
body.woocommerce-checkout .form-grid #billing_email_field,
body.woocommerce-checkout .form-grid #billing_phone_field {
  grid-column: 1 / -1 !important;
}
body.woocommerce-checkout .form-grid .form-row.form-row-first {
  grid-column: 1 !important;
}
body.woocommerce-checkout .form-grid .form-row.form-row-last {
  grid-column: 2 !important;
}
@media (max-width: 639px) {
  body.woocommerce-checkout .form-grid .form-row.form-row-first,
  body.woocommerce-checkout .form-grid .form-row.form-row-last {
    grid-column: 1 / -1 !important;
  }
}

/* Form-row label en input styling — match preview */
body.woocommerce-checkout .form-grid .form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
  margin-bottom: 6px;
}
body.woocommerce-checkout .form-grid .form-row input,
body.woocommerce-checkout .form-grid .form-row select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line-200);
  border-radius: 6px;
  padding: 0 14px;
  font-size: 14px;
  box-sizing: border-box;
}
body.woocommerce-checkout .form-grid .form-row .input-text {
  width: 100% !important;
}

/* =========================================================
   FIX v1.0.28 — FORCE CENTER via flexbox (margin auto wint niet)
   ========================================================= */

/* Body wordt flex column, alle direct children worden gecentreerd */


/* Header en main worden 100% breedte van body */
html body.woocommerce-checkout > header,
html body.woocommerce-checkout > main,
html body.woocommerce-checkout > footer,
html body.woocommerce-checkout > div {
  width: 100% !important;
  max-width: 100% !important;
}

/* De .container binnen header / main wordt zelf gecentreerd via margin auto,
   wat WEL werkt nu de body geen flex justify-start meer doet */


/* =========================================================
   FIX v1.0.29 — Checkout container 1440px (breder)
   ========================================================= */



/* Met breder container krijgt de form column meer ruimte — summary blijft 400 */
@media (min-width: 1024px) {
  body.woocommerce-checkout .checkout {
    grid-template-columns: minmax(0, 1fr) 400px !important;
    gap: 48px !important;
  }
}

/* =========================================================
   FIX v1.0.30 — FINAL: container 1440 centered via margin auto
   (body stays block — geen flexbox die margin auto breekt)
   ========================================================= */

/* Body terug naar block layout — geen flex centering trick */
html, body, html body.woocommerce-checkout {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Container — 1440 max, margin auto centers het in body */
body.woocommerce-checkout main.container,
body.woocommerce-checkout > main.container,
body.woocommerce-checkout header > .container,
html body.woocommerce-checkout main.container,
html body.woocommerce-checkout header > .container {
  display: block !important;
  max-width: 1440px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
  box-sizing: border-box !important;
  float: none !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
}

/* =========================================================
   FIX v1.0.31 — Diagnostic + nuclear centering
   ========================================================= */

/* Geef body een gekleurde achtergrond, container een rode rand zodat we zien
   waar het EIGENLIJK staat */
html body.woocommerce-checkout > main.container,
html body.woocommerce-checkout main.container {
  background: white !important;
  display: block !important;
  width: 1440px !important;
  max-width: calc(100vw - 32px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
  box-sizing: border-box !important;
  float: none !important;
  position: relative !important;
  inset: auto !important;
}

/* =========================================================
   FIX v1.0.32 — 1280px container + hide duplicate payment in summary
   ========================================================= */

/* Container 1280px (zelfde als rest van pagina's) */
body.woocommerce-checkout main.container,
body.woocommerce-checkout > main.container,
body.woocommerce-checkout header > .container,
html body.woocommerce-checkout main.container,
html body.woocommerce-checkout header > .container {
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}
@media (min-width: 768px) {
  body.woocommerce-checkout main.container,
  body.woocommerce-checkout header > .container,
  html body.woocommerce-checkout main.container,
  html body.woocommerce-checkout header > .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* Grid op 1024+ — terug naar 1fr 400px */
@media (min-width: 1024px) {
  body.woocommerce-checkout .checkout {
    grid-template-columns: minmax(0, 1fr) 400px !important;
    gap: 40px !important;
  }
}

/* Verberg WC's default ul.payment_methods + #payment binnen summary
   (de echte payment-list staat in Card 4 in de form column, niet hier) */
body.woocommerce-checkout .checkout-summary ul.payment_methods,
body.woocommerce-checkout .checkout-summary ul.wc_payment_methods,
body.woocommerce-checkout .checkout-summary #payment,
body.woocommerce-checkout #order_review ul.payment_methods,
body.woocommerce-checkout #order_review ul.wc_payment_methods,
body.woocommerce-checkout #order_review #payment,
body.woocommerce-checkout #order_review .woocommerce-checkout-payment ul,
body.woocommerce-checkout aside.checkout-summary ul.payment_methods {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* =========================================================
   FIX v1.0.33 — BTW/KvK + hint text + header centering
   ========================================================= */

/* Force ALLE .container binnen woocommerce-checkout body gecentreerd */
body.woocommerce-checkout .container,
body.woocommerce-checkout header.header .container,
body.woocommerce-checkout > header .container,
body.woocommerce-checkout > header.header .container,
html body.woocommerce-checkout .container,
html body.woocommerce-checkout header .container {
  max-width: 1280px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  box-sizing: border-box !important;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .container,
  body.woocommerce-checkout header .container,
  html body.woocommerce-checkout .container,
  html body.woocommerce-checkout header .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* Description text styling (hint onder veld) */
body.woocommerce-checkout .form-grid .form-row .description,
body.woocommerce-checkout .form-grid .form-row span.description {
  display: block !important;
  font-size: 12px !important;
  color: var(--ink-600) !important;
  margin-top: 6px !important;
  line-height: 1.4 !important;
}

/* Optional label styling — toont "(optioneel)" naast labels */
body.woocommerce-checkout .form-grid .form-row.lakpro-optional-label label::after,
body.woocommerce-checkout .form-grid .form-row label.lakpro-optional-label::after {
  content: " (optioneel)";
  color: var(--ink-400);
  font-weight: 400;
  font-size: 12px;
}

/* =========================================================
   FIX v1.0.34 — Meer breedte op mobiel (kleinere padding)
   ========================================================= */
@media (max-width: 767px) {
  body.woocommerce-checkout .container,
  body.woocommerce-checkout main.container,
  body.woocommerce-checkout header .container,
  html body.woocommerce-checkout .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  body.woocommerce-checkout .checkout-card {
    padding: 16px !important;
  }

  body.woocommerce-checkout .checkout-summary {
    padding: 0 !important;
  }
  body.woocommerce-checkout .checkout-summary__head,
  body.woocommerce-checkout .checkout-summary__lines,
  body.woocommerce-checkout .checkout-summary__totals,
  body.woocommerce-checkout .checkout-place {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* =========================================================
   FIX v1.0.36 — Dynamische filter sidebar styling
   ========================================================= */

.filter-opt {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 7px 0 !important;
  font-size: 14px !important;
  color: var(--ink-800) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: color .15s ease;
}
.filter-opt:hover { color: var(--red-600) !important; }

/* Custom checkbox visual — leeg vakje */
.filter-opt__checkbox {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
  border: 1.5px solid var(--line-200) !important;
  border-radius: 4px !important;
  background: var(--white) !important;
  display: inline-block !important;
  position: relative !important;
  transition: border-color .15s ease, background .15s ease;
}
.filter-opt:hover .filter-opt__checkbox { border-color: var(--ink-1000) !important; }

/* Active state — gevuld vakje met vink */
.filter-opt.is-active { color: var(--ink-1000) !important; font-weight: 600 !important; }
.filter-opt.is-active .filter-opt__checkbox {
  background: var(--red-600) !important;
  border-color: var(--red-600) !important;
}
.filter-opt.is-active .filter-opt__checkbox::after {
  content: "" !important;
  position: absolute !important;
  inset: 2px !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.filter-opt__label {
  flex: 1 !important;
  line-height: 1.3 !important;
}
.filter-opt__count {
  color: var(--ink-400) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}
.filter-opt.is-active .filter-opt__count { color: var(--ink-600) !important; }

/* Compact filter groups */
.filters__group { padding: 16px 0 !important; border-bottom: 1px solid var(--line-200) !important; }
.filters__group:first-child { padding-top: 0 !important; }
.filters__group:last-child { border-bottom: 0 !important; }
.filters__title {
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: var(--ink-1000) !important;
  margin-bottom: 8px !important;
}
.filters__list { display: flex !important; flex-direction: column !important; gap: 2px !important; }

/* Price filter form */
.lakpro-price-filter input[type="number"] {
  font-size: 13px !important;
  font-family: inherit !important;
}
.lakpro-price-filter .btn { width: 100% !important; }

/* ============================================================
   Product details — tabs (left) + reviews (right)
   ============================================================ */
.product-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  margin-top: 80px;
  align-items: start;
}
/* Ademruimte tussen details-blok en gerelateerde producten */
.related.products,
section.related.products,
.up-sells.products,
section.up-sells.products {
  margin-top: 80px !important;
}
.related.products > h2,
.up-sells.products > h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--ink-1000);
}
.product-details__main { margin-top: 0; overflow: visible; max-height: none; min-width: 0; }
.product-details__main .woocommerce-tabs,
.product-details__main .wc-tabs-wrapper,
.product-details__main .panel {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}
.product-details__reviews {
  border: 1px solid var(--line-200);
  border-radius: 16px;
  padding: 28px;
  background: var(--white);
  position: sticky;
  top: 96px;
  box-shadow: 0 1px 3px rgba(15, 17, 21, 0.04);
}
.product-details__reviews-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ink-1000);
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-details__reviews-title::before {
  content: '';
  width: 28px; height: 28px;
  background: var(--red-50);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E11D2A'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  flex-shrink: 0;
}
.product-details__reviews-empty {
  color: var(--ink-600);
  font-size: 14px;
  margin: 8px 0 0;
  padding: 16px 0;
  text-align: center;
  background: var(--surface);
  border-radius: 10px;
  border: 1px dashed var(--line-200);
}

/* WC reviews list inside the panel */
.product-details__reviews #reviews { margin: 0; }
.product-details__reviews #reviews > h2,
.product-details__reviews #reviews > h3 { display: none; }
.product-details__reviews #comments h2 { display: none; }
.product-details__reviews .woocommerce-noreviews {
  display: block;
  font-size: 14px;
  color: var(--ink-600);
  background: var(--surface);
  border: 1px dashed var(--line-200);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 12px 0;
  text-align: center;
}
.product-details__reviews .commentlist {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.product-details__reviews .commentlist li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-100);
}
.product-details__reviews .commentlist li:last-child { border-bottom: 0; padding-bottom: 0; }
.product-details__reviews .comment_container { display: flex; gap: 12px; }
.product-details__reviews .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--line-200);
}
.product-details__reviews .comment-text { flex: 1; min-width: 0; }
.product-details__reviews .meta {
  font-size: 12px;
  color: var(--ink-400);
  margin: 0 0 4px;
  font-style: normal;
}
.product-details__reviews .meta strong { color: var(--ink-800); font-weight: 600; }
.product-details__reviews .star-rating {
  display: inline-block;
  width: 80px; height: 14px;
  position: relative;
  font-size: 14px;
  margin-bottom: 4px;
  color: #FBBF24;
}
.product-details__reviews .description {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0;
}
.product-details__reviews .description p { margin: 0; }

/* Reply title (form heading) */
.product-details__reviews #review_form_wrapper {
  border-top: 1px solid var(--line-200);
  padding-top: 20px;
  margin-top: 20px;
}
.product-details__reviews .comment-reply-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-1000);
  margin: 0 0 4px;
}
.product-details__reviews .must-log-in,
.product-details__reviews .logged-in-as {
  font-size: 12px;
  color: var(--ink-400);
  margin: 0 0 16px;
}
.product-details__reviews .comment-form > p { margin: 0 0 14px; }
.product-details__reviews .comment-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
  margin-bottom: 6px;
}
.product-details__reviews .comment-form label .required {
  color: var(--red-600);
  font-weight: 700;
}
.product-details__reviews .comment-form textarea,
.product-details__reviews .comment-form input[type="text"],
.product-details__reviews .comment-form input[type="email"],
.product-details__reviews .comment-form input[type="url"] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-200);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink-1000);
  box-sizing: border-box;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.product-details__reviews .comment-form textarea::placeholder,
.product-details__reviews .comment-form input::placeholder {
  color: var(--ink-400);
}
.product-details__reviews .comment-form textarea:focus,
.product-details__reviews .comment-form input:focus {
  outline: none;
  border-color: var(--ink-800);
  box-shadow: 0 0 0 3px rgba(15, 17, 21, 0.06);
}
.product-details__reviews .comment-form textarea {
  resize: vertical;
  min-height: 90px;
}

/* Name + Email side by side (>440px) */
.product-details__reviews .comment-form-author,
.product-details__reviews .comment-form-email {
  display: inline-block;
  width: calc(50% - 6px);
  vertical-align: top;
}
.product-details__reviews .comment-form-author { margin-right: 8px; }
@media (max-width: 480px) {
  .product-details__reviews .comment-form-author,
  .product-details__reviews .comment-form-email {
    display: block;
    width: 100%;
  }
  .product-details__reviews .comment-form-author { margin-right: 0; }
}

/* Submit button — red primary CTA */
.product-details__reviews .form-submit { margin-top: 4px; }
.product-details__reviews .comment-form .submit,
.product-details__reviews .comment-form input[type="submit"],
.product-details__reviews .lakpro-review-submit {
  background: var(--red-600) !important;
  color: var(--white) !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  border: 0 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease;
  width: auto;
  font-family: inherit;
}
.product-details__reviews .comment-form .submit:hover,
.product-details__reviews .comment-form input[type="submit"]:hover,
.product-details__reviews .lakpro-review-submit:hover {
  background: var(--red-700) !important;
}
.product-details__reviews .comment-form .submit:active,
.product-details__reviews .lakpro-review-submit:active {
  transform: translateY(1px);
}

/* Hide WC's native rating dropdown (we render stars) */
.product-details__reviews .comment-form-rating { display: none; }

/* Custom star rating */
.lakpro-review-rating {
  margin-bottom: 18px;
}
.lakpro-review-rating__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
  margin-bottom: 8px;
}
.lakpro-review-rating__label .required {
  color: var(--red-600);
  font-weight: 700;
}
/* Klikbare sterren input (review-form, 1..5 hele sterren) */
.product-details__reviews .lakpro-stars {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
  position: relative;
}
.product-details__reviews .lakpro-stars input {
  position: absolute;
  left: 0; top: 0;
  width: 1px; height: 1px;
  opacity: 0;
  margin: 0;
}
.product-details__reviews .lakpro-stars > label {
  cursor: pointer;
  color: #E5E7EB !important;
  width: 32px; height: 32px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: color .15s ease, transform .1s ease;
  margin: 0 !important;
  padding: 0;
  font-weight: normal;
  border-radius: 4px;
  user-select: none;
  font-size: 0;
}
.product-details__reviews .lakpro-stars > label svg {
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}
.product-details__reviews .lakpro-stars > label:hover {
  transform: scale(1.12);
}
.product-details__reviews .lakpro-stars input:checked ~ label,
.product-details__reviews .lakpro-stars > label:hover,
.product-details__reviews .lakpro-stars > label:hover ~ label {
  color: #FBBF24 !important;
}
.product-details__reviews .lakpro-stars input:focus-visible + label {
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.35);
}

@media (max-width: 1023px) {
  .product-details {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 56px;
  }
  .product-details__reviews { position: static; margin-bottom: 16px; }
  .related.products,
  section.related.products,
  .up-sells.products,
  section.up-sells.products { margin-top: 56px !important; }
  .related.products > h2,
  .up-sells.products > h2 { font-size: 22px; margin-bottom: 20px; }
}

/* ============================================================
   Delivery card (vervangt WC's "Beschikbaar via nabestelling")
   ============================================================ */
.product__delivery {
  margin: 12px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line-200);
  border-radius: 10px;
  padding: 10px 14px;
  background: var(--white);
}
.product__delivery-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.product__delivery-row + .product__delivery-row {
  padding-top: 8px;
  border-top: 1px solid var(--line-100);
}
.product__delivery-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product__delivery-icon svg { width: 13px; height: 13px; }
.product__delivery-row--stock .product__delivery-icon { background: #DCFCE7; color: #15803D; }
.product__delivery-row--date .product__delivery-icon  { background: var(--line-100); color: var(--ink-800); }
.product__delivery-row--backorder .product__delivery-icon { background: #FEF3C7; color: #B45309; }
.product__delivery-row--out .product__delivery-icon   { background: var(--red-50); color: var(--red-600); }
.product__delivery-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 13px;
  line-height: 1.35;
}
.product__delivery-text strong { color: var(--ink-1000); font-weight: 700; font-size: 13px; }
.product__delivery-text span   { color: var(--ink-600); font-size: 12px; }

/* Verberg native WC stock-paragraph in summary (defensief, naast de filter) */
.single-product .summary p.stock,
.single-product .product .stock { display: none !important; }

/* ============================================================
   Sticky add-to-cart bar
   ============================================================ */
.product-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--line-200);
  box-shadow: 0 -6px 24px rgba(15, 17, 21, 0.08);
  transform: translateY(110%);
  transition: transform .25s ease;
  padding: 12px 0;
  pointer-events: none;
}
.product-sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.product-sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-sticky-cta__info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-sticky-cta__img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-sticky-cta__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-sticky-cta__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}
.product-sticky-cta__text strong {
  font-size: 14px;
  color: var(--ink-1000);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.product-sticky-cta__price { font-size: 13px; color: var(--ink-600); }
.product-sticky-cta__price .price { font-weight: 700; color: var(--ink-1000); }
.product-sticky-cta__price .price del,
.product-sticky-cta__price .product__price-ex { display: none; }
.product-sticky-cta__btn {
  white-space: nowrap;
  padding: 12px 22px;
  flex-shrink: 0;
  font-weight: 600;
}

@media (max-width: 640px) {
  .product-sticky-cta { padding: 10px 0; }
  .product-sticky-cta__img { display: none; }
  .product-sticky-cta__text strong { font-size: 13px; }
  .product-sticky-cta__btn { padding: 10px 16px; font-size: 13px; }
}

/* Ademruimte onderaan single product zodat sticky bar niets bedekt */
body.single-product { padding-bottom: 96px !important; }
@media (max-width: 640px) {
  body.single-product { padding-bottom: 80px !important; }
}

/* ============================================================
   Definitief: scrollbar IN tabs/product-details kill (overflow visible everywhere)
   ============================================================ */
html body .product-details,
html body .product-details > *,
html body .product-details__main,
html body .product-details__main > *,
html body .product-details .woocommerce-tabs,
html body .product-details .woocommerce-tabs > *,
html body .product-details .wc-tabs-wrapper,
html body .product-details .wc-tabs-wrapper > *,
html body .product-details ul.tabs,
html body .product-details ul.wc-tabs,
html body .product-details .panel,
html body .product-details .woocommerce-Tabs-panel,
html body .product-details .entry-content {
  overflow: visible !important;
  overflow-y: visible !important;
  overflow-x: visible !important;
  max-height: none !important;
  height: auto !important;
}

/* ============================================================
   Reviews summary (gemiddelde sterren + aantal in sidebar)
   ============================================================ */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 20px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line-100);
}
.reviews-summary.no-reviews { background: var(--white); border: 1px dashed var(--line-200); }
.reviews-summary__stars {
  display: inline-flex;
  gap: 2px;
  line-height: 0;
  flex-shrink: 0;
}
.reviews-summary__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.reviews-summary__text strong {
  font-size: 16px;
  color: var(--ink-1000);
  line-height: 1.1;
  font-weight: 700;
}
.reviews-summary__text span {
  font-size: 12px;
  color: var(--ink-600);
}
.reviews-summary.no-reviews .reviews-summary__text strong { font-size: 14px; }

/* ============================================================
   Reviews list in de Beoordelingen-tab (links)
   ============================================================ */
.lakpro-reviews-list { padding: 8px 0; }
.lakpro-reviews-list__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-1000);
  margin: 0 0 20px;
}
.lakpro-reviews-list .commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lakpro-reviews-list .commentlist li {
  border: 1px solid var(--line-200);
  border-radius: 12px;
  padding: 18px 20px;
  background: var(--white);
}
.lakpro-reviews-list .comment_container {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lakpro-reviews-list .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-200);
  flex-shrink: 0;
}
.lakpro-reviews-list .comment-text { flex: 1; min-width: 0; }
.lakpro-reviews-list .star-rating {
  display: inline-block;
  position: relative;
  width: 80px; height: 14px;
  font-size: 14px;
  margin-bottom: 6px;
  color: #FBBF24;
}
.lakpro-reviews-list .meta {
  font-size: 13px;
  color: var(--ink-400);
  font-style: normal;
  margin: 0 0 8px;
}
.lakpro-reviews-list .meta strong {
  color: var(--ink-1000);
  font-weight: 700;
  margin-right: 4px;
}
.lakpro-reviews-list .description {
  font-size: 14px;
  color: var(--ink-800);
  line-height: 1.6;
}
.lakpro-reviews-list .description p { margin: 0 0 8px; }
.lakpro-reviews-list .description p:last-child { margin-bottom: 0; }

/* Empty state in tab */
.lakpro-reviews-empty {
  text-align: center;
  padding: 40px 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px dashed var(--line-200);
}
.lakpro-reviews-empty__icon {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--red-50);
  color: var(--red-600);
  display: flex; align-items: center; justify-content: center;
}
.lakpro-reviews-empty__icon svg { width: 28px; height: 28px; }
.lakpro-reviews-empty p { margin: 4px 0; }
.lakpro-reviews-empty p strong { font-size: 16px; color: var(--ink-1000); }
.lakpro-reviews-empty__sub { font-size: 14px; color: var(--ink-600); }

/* Verberg de oude empty state in de sidebar — nieuwe reviews-summary heeft die rol */
.product-details__reviews-empty { display: none; }

/* ============================================================
   Account / Auth pagina (login + register)
   ============================================================ */
.lakpro-auth { padding: 40px 0 80px; }
.lakpro-auth__header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.lakpro-auth__title { font-size: 36px; font-weight: 800; margin: 0 0 12px; color: var(--ink-1000); letter-spacing: -0.01em; }
.lakpro-auth__intro { font-size: 16px; color: var(--ink-600); line-height: 1.6; margin: 0; }

.lakpro-auth__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1080px; margin: 0 auto; }
.lakpro-auth__grid.login-only { grid-template-columns: 1fr; max-width: 520px; }

html body .lakpro-auth,
html body .lakpro-auth__grid,
html body .lakpro-auth__card,
html body .lakpro-auth .woocommerce-form,
html body .lakpro-auth form {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  background-image: none !important;
}
.lakpro-auth__card {
  background: #FFFFFF !important;
  border: 1px solid var(--line-200);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(15, 17, 21, 0.04);
}
.lakpro-auth__card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.lakpro-auth__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--line-100);
  color: var(--ink-800);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lakpro-auth__icon--red { background: var(--red-50); color: var(--red-600); }
.lakpro-auth__icon svg { width: 22px; height: 22px; }
.lakpro-auth__card-title { font-size: 22px; font-weight: 700; margin: 0; color: var(--ink-1000); }
.lakpro-auth__card-sub { font-size: 13px; color: var(--ink-600); margin: 2px 0 0; }

.lakpro-form { display: flex; flex-direction: column; gap: 16px; }
.lakpro-form-group { display: flex; flex-direction: column; gap: 6px; }
.lakpro-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
}
.lakpro-form-group label .required { color: var(--red-600); }
.lakpro-form-group input {
  padding: 12px 14px;
  border: 1px solid var(--line-200);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink-1000);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
  box-sizing: border-box;
}
.lakpro-form-group input::placeholder { color: var(--ink-400); }
.lakpro-form-group input:focus {
  outline: none;
  border-color: var(--ink-800);
  box-shadow: 0 0 0 3px rgba(15, 17, 21, 0.06);
}

.lakpro-form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-top: -4px;
}
.lakpro-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--ink-800);
  font-weight: 500;
}
.lakpro-checkbox input {
  width: 18px; height: 18px;
  margin: 0;
  accent-color: var(--red-600);
}
.lakpro-auth__forgot {
  color: var(--ink-600);
  text-decoration: none;
  font-weight: 500;
}
.lakpro-auth__forgot:hover { color: var(--ink-1000); text-decoration: underline; }

.lakpro-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* B2B/B2C toggle */
.lakpro-account-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.lakpro-account-type__opt { position: relative; }
.lakpro-account-type__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
}
.lakpro-account-type__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border: 1.5px solid var(--line-200);
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-600);
  cursor: pointer;
  transition: all .15s ease;
  background: var(--white);
}
.lakpro-account-type__pill svg { width: 18px; height: 18px; }
.lakpro-account-type__opt input:checked + .lakpro-account-type__pill,
.lakpro-account-type__opt:has(input:checked) .lakpro-account-type__pill {
  border-color: var(--ink-1000);
  background: var(--ink-1000);
  color: var(--white);
}

.lakpro-b2b-fields {
  padding: 16px;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px dashed var(--line-200);
}
.lakpro-b2b-fields[hidden] { display: none !important; }
.lakpro-b2b-note {
  margin: 0;
  font-size: 12px;
  color: var(--ink-600);
  line-height: 1.5;
}

.lakpro-auth__submit {
  width: 100%;
  padding: 14px 24px !important;
  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-top: 4px;
}
.lakpro-auth__terms {
  margin: -2px 0 0;
  font-size: 12px;
  color: var(--ink-600);
  line-height: 1.5;
}
.lakpro-auth__terms a {
  color: var(--ink-1000);
  text-decoration: underline;
}

.lakpro-auth__usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 32px auto 0;
}
.lakpro-auth__usp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-600);
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid var(--line-200);
  border-radius: 10px;
}
.lakpro-auth__usp svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

@media (max-width: 880px) {
  .lakpro-auth__grid { grid-template-columns: 1fr; max-width: 600px; }
  .lakpro-auth__usps { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body.woocommerce-account main.container,
  body.lakpro-auth-page main.container { padding: 0 10px; }
  .lakpro-auth__grid { max-width: none; gap: 16px; }
}
@media (max-width: 480px) {
  .lakpro-auth__title { font-size: 26px; }
  .lakpro-auth__card { padding: 22px 16px; border-radius: 14px; }
  .lakpro-auth__card-head { gap: 12px; margin-bottom: 18px; }
  .lakpro-form-grid-2 { grid-template-columns: 1fr; }
}

/* Verberg WC's default notices/wrappers we niet gebruiken in onze custom form-login */
.lakpro-auth .woocommerce-form-row { display: contents; }

/* ============================================================
   My Account dashboard (sidebar + content layout)
   ============================================================ */
.lakpro-account { padding: 32px 0 80px; }
.lakpro-account__header { margin-bottom: 32px; }
.lakpro-account__title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink-1000);
  letter-spacing: -0.01em;
}
.lakpro-account__greeting {
  margin: 0;
  font-size: 16px;
  color: var(--ink-600);
}
.lakpro-account__greeting strong { color: var(--ink-1000); }

.lakpro-account__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 880px) {
  .lakpro-account__layout { grid-template-columns: 1fr; }
}

/* ===== Sidebar nav ===== */
.lakpro-account-nav {
  background: #FFFFFF;
  border: 1px solid var(--line-200);
  border-radius: 16px;
  padding: 8px;
  position: sticky;
  top: 96px;
}
.lakpro-account-nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.lakpro-account-nav__item { margin: 0; list-style: none; }
.lakpro-account-nav__list li,
.lakpro-account-nav__list li a,
.woocommerce-MyAccount-navigation li,
.woocommerce-MyAccount-navigation li a {
  border: 0 !important;
  outline: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.lakpro-account-nav__link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 11px 14px !important;
  border-radius: 10px !important;
  color: var(--ink-800) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background .15s ease, color .15s ease !important;
  width: 100%;
  box-sizing: border-box;
}
.lakpro-account-nav__link:hover {
  background: var(--line-100) !important;
  color: var(--ink-1000) !important;
}
.lakpro-account-nav__item.is-active > .lakpro-account-nav__link,
.woocommerce-MyAccount-navigation-link.is-active > a {
  background: var(--ink-1000) !important;
  color: var(--white) !important;
}
.lakpro-account-nav__item.is-active .lakpro-account-nav__link,
.lakpro-account-nav__item.woocommerce-MyAccount-navigation-link--dashboard.is-active .lakpro-account-nav__link,
.woocommerce-MyAccount-navigation-link.is-active > a {
  background: var(--ink-1000);
  color: var(--white);
}
.lakpro-account-nav__icon {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lakpro-account-nav__icon svg { width: 100%; height: 100%; }
.lakpro-account-nav__link.is-logout {
  color: var(--ink-600);
  border-top: 1px solid var(--line-100);
  margin-top: 6px;
  padding-top: 14px;
  border-radius: 0 0 10px 10px;
}
.lakpro-account-nav__link.is-logout:hover { color: var(--red-600); background: var(--red-50); }

/* Mobile nav: scrollable horizontal */
@media (max-width: 880px) {
  .lakpro-account-nav { position: static; padding: 6px; }
  .lakpro-account-nav__list {
    flex-direction: row;
    overflow-x: auto;
    gap: 6px;
    scrollbar-width: none;
  }
  .lakpro-account-nav__list::-webkit-scrollbar { display: none; }
  .lakpro-account-nav__item { flex-shrink: 0; }
  .lakpro-account-nav__link { padding: 8px 12px; }
  .lakpro-account-nav__link.is-logout { border-top: 0; margin-top: 0; padding-top: 8px; border-radius: 10px; }
}

/* ===== Content ===== */
.lakpro-account__content {
  min-width: 0;
}
.lakpro-account__content > p:first-child:has(+ .lakpro-dashboard) { display: none; } /* hide default WC welcome text if any */

/* ===== Dashboard ===== */
.lakpro-dashboard { display: flex; flex-direction: column; gap: 24px; }
.lakpro-dashboard__welcome {
  background: linear-gradient(135deg, var(--ink-1000) 0%, var(--ink-800) 100%);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.lakpro-dashboard__welcome-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--white);
}
.lakpro-dashboard__welcome-sub {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.lakpro-dashboard__logout {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none;
}
.lakpro-dashboard__logout svg { width: 16px; height: 16px; }
.lakpro-dashboard__logout:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

/* Action cards */
.lakpro-dashboard__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .lakpro-dashboard__cards { grid-template-columns: 1fr; } }

.lakpro-dashboard__card {
  background: #FFFFFF;
  border: 1px solid var(--line-200);
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
  color: var(--ink-1000);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.lakpro-dashboard__card:hover {
  border-color: var(--ink-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 17, 21, 0.06);
}
.lakpro-dashboard__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--red-50);
  color: var(--red-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lakpro-dashboard__card-icon svg { width: 20px; height: 20px; }
.lakpro-dashboard__card-body { flex: 1; }
.lakpro-dashboard__card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ink-1000);
}
.lakpro-dashboard__card p {
  font-size: 13px;
  color: var(--ink-600);
  margin: 0;
  line-height: 1.4;
}
.lakpro-dashboard__card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-1000);
}
.lakpro-dashboard__card:hover .lakpro-dashboard__card-cta { color: var(--red-600); }

/* Recent orders */
.lakpro-dashboard__recent {
  background: #FFFFFF;
  border: 1px solid var(--line-200);
  border-radius: 16px;
  padding: 24px;
}
.lakpro-dashboard__recent-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.lakpro-dashboard__recent-head h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--ink-1000);
}
.lakpro-dashboard__view-all {
  font-size: 13px;
  color: var(--ink-600);
  text-decoration: none;
  font-weight: 500;
}
.lakpro-dashboard__view-all:hover { color: var(--ink-1000); }

.lakpro-dashboard__orders { display: flex; flex-direction: column; gap: 8px; }
.lakpro-order-line {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line-200);
  border-radius: 12px;
  background: #FFFFFF;
}
.lakpro-order-line__main { display: flex; flex-direction: column; gap: 2px; }
.lakpro-order-line__num { font-size: 14px; font-weight: 700; color: var(--ink-1000); }
.lakpro-order-line__date { font-size: 12px; color: var(--ink-400); }
.lakpro-order-line__total {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-1000);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lakpro-order-line__items { font-size: 12px; color: var(--ink-400); font-weight: 500; }
.lakpro-order-line__action {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-1000);
  text-decoration: none;
  white-space: nowrap;
}
.lakpro-order-line__action:hover { color: var(--red-600); }

/* Order status pills */
.lakpro-order-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--line-100);
  color: var(--ink-600);
  white-space: nowrap;
}
.lakpro-order-status--processing { background: #DBEAFE; color: #1E40AF; }
.lakpro-order-status--completed  { background: #DCFCE7; color: #15803D; }
.lakpro-order-status--on-hold    { background: #FEF3C7; color: #B45309; }
.lakpro-order-status--pending    { background: #FEF3C7; color: #92400E; }
.lakpro-order-status--cancelled,
.lakpro-order-status--failed,
.lakpro-order-status--refunded   { background: var(--red-50); color: var(--red-700); }

@media (max-width: 640px) {
  .lakpro-order-line { grid-template-columns: 1fr 1fr; gap: 8px 12px; }
  .lakpro-order-line__action { grid-column: 1 / -1; text-align: right; }
}

/* Empty state */
.lakpro-dashboard__empty {
  text-align: center;
  padding: 40px 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px dashed var(--line-200);
}
.lakpro-dashboard__empty-icon {
  width: 56px; height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--ink-400);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-200);
}
.lakpro-dashboard__empty-icon svg { width: 24px; height: 24px; }
.lakpro-dashboard__empty p { margin: 4px 0; }
.lakpro-dashboard__empty p strong { font-size: 16px; color: var(--ink-1000); }
.lakpro-dashboard__empty-sub { font-size: 14px; color: var(--ink-600); margin-bottom: 16px !important; }

/* Style standaard WC content (orders/addresses/account tabs) ook netjes */
.lakpro-account__content .woocommerce-MyAccount-content > h2,
.lakpro-account__content .woocommerce-MyAccount-content > h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-1000);
  margin: 0 0 16px;
}
.lakpro-account__content .woocommerce-orders-table,
.lakpro-account__content table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line-200);
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  font-size: 14px;
}
.lakpro-account__content .woocommerce-orders-table th,
.lakpro-account__content table.shop_table th {
  background: var(--surface);
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-800);
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-200);
}
.lakpro-account__content .woocommerce-orders-table td,
.lakpro-account__content table.shop_table td {
  padding: 14px;
  border-bottom: 1px solid var(--line-100);
}
.lakpro-account__content .woocommerce-orders-table tr:last-child td,
.lakpro-account__content table.shop_table tr:last-child td { border-bottom: 0; }

/* Address blocks */
.lakpro-account__content .u-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .lakpro-account__content .u-columns { grid-template-columns: 1fr; }
}
.lakpro-account__content .u-columns > div,
.lakpro-account__content address {
  background: #FFFFFF;
  border: 1px solid var(--line-200);
  border-radius: 12px;
  padding: 20px;
  font-style: normal;
}

/* Account form fields */
.lakpro-account__content .woocommerce-EditAccountForm input[type="text"],
.lakpro-account__content .woocommerce-EditAccountForm input[type="email"],
.lakpro-account__content .woocommerce-EditAccountForm input[type="password"],
.lakpro-account__content .woocommerce-address-fields input,
.lakpro-account__content .woocommerce-address-fields select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-200);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  background: #FFFFFF;
}
.lakpro-account__content .woocommerce-EditAccountForm input:focus,
.lakpro-account__content .woocommerce-address-fields input:focus,
.lakpro-account__content .woocommerce-address-fields select:focus {
  outline: none;
  border-color: var(--ink-800);
  box-shadow: 0 0 0 3px rgba(15, 17, 21, 0.06);
}
.lakpro-account__content .woocommerce-EditAccountForm label,
.lakpro-account__content .woocommerce-address-fields label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
  margin-bottom: 6px;
  display: block;
}
.lakpro-account__content .button,
.lakpro-account__content .woocommerce-Button {
  background: var(--red-600) !important;
  color: var(--white) !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  border: 0 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer;
  text-decoration: none !important;
  display: inline-block;
}
.lakpro-account__content .button:hover { background: var(--red-700) !important; }

/* =========================================================
   Contact page
   ========================================================= */
.lakpro-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}
@media (min-width: 880px) {
  .lakpro-contact { grid-template-columns: 1fr 1.2fr; gap: 56px; }
}
.lakpro-contact__eyebrow {
  display: inline-block;
  background: var(--red-50);
  color: var(--red-600);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lakpro-contact__title {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--ink-1000);
}
.lakpro-contact__sub {
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 460px;
}
.lakpro-contact__channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lakpro-contact__channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line-200);
  border-radius: 12px;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, background .15s ease;
}
.lakpro-contact__channel:hover { border-color: var(--ink-1000); }
.lakpro-contact__channel-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  background: var(--red-50) !important;
  color: var(--red-600);
  border-radius: 50% !important;
  display: block !important;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
}
.lakpro-contact__channel-icon svg {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 22px !important;
  height: 22px !important;
  display: block !important;
  stroke-width: 1.8;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  max-height: none !important;
}
.lakpro-contact__channel strong { display: block; font-size: 14px; color: var(--ink-1000); }
.lakpro-contact__channel span { display: block; font-size: 12px; color: var(--ink-600); margin-top: 2px; }

.lakpro-contact__form-wrap {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: 16px;
  padding: 28px;
}
@media (min-width: 880px) { .lakpro-contact__form-wrap { padding: 36px; } }

.lakpro-contact__form { display: flex; flex-direction: column; gap: 16px; }
.lakpro-contact__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .lakpro-contact__row { grid-template-columns: 1fr 1fr; }
}
.lakpro-contact__field { display: flex; flex-direction: column; gap: 6px; }
.lakpro-contact__field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-600);
}
.lakpro-contact__field label .req { color: var(--red-600); }
.lakpro-contact__field input,
.lakpro-contact__field textarea {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--line-200);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--ink-1000);
  transition: border-color .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
}
.lakpro-contact__field textarea {
  height: auto;
  padding: 14px;
  resize: vertical;
  min-height: 140px;
  line-height: 1.55;
}
.lakpro-contact__field input:focus,
.lakpro-contact__field textarea:focus {
  outline: 0;
  border-color: var(--ink-1000);
  box-shadow: 0 0 0 3px rgba(15,17,21,.08);
}
.lakpro-contact__form .btn--primary {
  align-self: flex-start;
  margin-top: 8px;
}
.lakpro-contact__error {
  background: var(--red-50);
  color: var(--red-700);
  border: 1px solid #FCC2C8;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}
.lakpro-contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
}
.lakpro-contact__success-icon {
  width: 56px; height: 56px;
  background: #E6F7EC;
  color: #15803D;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lakpro-contact__success-icon svg { width: 28px; height: 28px; }
.lakpro-contact__success strong { font-size: 18px; color: var(--ink-1000); }
.lakpro-contact__success span { font-size: 14px; color: var(--ink-600); max-width: 420px; line-height: 1.55; }

/* ===== Categorieën overzichtspagina (page-categories.php) ===== */
.lakpro-cats__intro {
  max-width: 760px;
  margin: 8px 0 40px;
}
.lakpro-cats__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-600);
  background: rgba(225, 29, 42, 0.08);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.lakpro-cats__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink-1000);
  margin: 0 0 12px;
}
.lakpro-cats__sub {
  font-size: 16px;
  color: var(--ink-600);
  line-height: 1.6;
  margin: 0;
}

.lakpro-cats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .lakpro-cats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1080px) {
  .lakpro-cats__grid { grid-template-columns: repeat(3, 1fr); }
}

.lakpro-cats__card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.lakpro-cats__card:hover {
  border-color: var(--ink-1000);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover, 0 14px 28px rgba(16, 24, 40, 0.10));
}
.lakpro-cats__card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}

.lakpro-cats__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #F7F8FA 0%, #EEF0F3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lakpro-cats__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.lakpro-cats__card:hover .lakpro-cats__img { transform: scale(1.04); }
.lakpro-cats__placeholder {
  width: 72px;
  height: 72px;
  color: var(--red-600);
  opacity: .65;
}
.lakpro-cats__count {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(16, 24, 40, 0.86);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: .01em;
}

.lakpro-cats__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.lakpro-cats__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-1000);
  margin: 0;
  line-height: 1.25;
}
.lakpro-cats__desc {
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0;
}

.lakpro-cats__subs {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 2;
}
.lakpro-cats__sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F4F5F7;
  border: 1px solid var(--line-200);
  border-radius: 999px;
  padding: 4px 10px 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-800);
  line-height: 1;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  text-decoration: none;
}
.lakpro-cats__sub:hover {
  background: #fff;
  border-color: var(--ink-1000);
  color: var(--ink-1000);
}
.lakpro-cats__sub span {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-600);
  background: #fff;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid var(--line-200);
}
.lakpro-cats__sub:hover span { border-color: var(--ink-1000); }

.lakpro-cats__cta {
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-1000);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s ease;
}
.lakpro-cats__card:hover .lakpro-cats__cta { color: var(--red-600); }
.lakpro-cats__cta span { transition: transform .18s ease; }
.lakpro-cats__card:hover .lakpro-cats__cta span { transform: translateX(3px); }

.lakpro-cats__empty {
  padding: 48px 24px;
  text-align: center;
  border: 1px dashed var(--line-200);
  border-radius: var(--r-card);
  color: var(--ink-600);
}
.lakpro-cats__empty p { margin: 0 0 18px; }

/* ===== Puntenhoekje (rewards archive) ===== */
.lakpro-rewards-page { max-width: 1200px; padding-top: 48px; padding-bottom: 96px; }
@media (max-width: 640px) { .lakpro-rewards-page { padding-top: 24px; padding-bottom: 64px; } }
.lakpro-rewards__intro { margin: 8px 0 32px; }
.lakpro-rewards__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red-600);
  background: rgba(225,29,42,0.08);
  padding: 5px 10px; border-radius: 999px;
  margin-bottom: 14px;
}
.lakpro-rewards__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--ink-1000); margin: 0 0 12px; line-height: 1.15; }
.lakpro-rewards__sub { font-size: 16px; color: var(--ink-600); margin: 0 0 20px; max-width: 600px; line-height: 1.6; }

/* Lakpunten "credit card" — Variant B (rood, gouden chip, tier-badge) */
.lp-card {
  position: relative;
  width: 100%; max-width: 460px;
  aspect-ratio: 1.586 / 1;
  border-radius: 18px;
  padding: 24px 26px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 14px 40px rgba(15,17,21,0.18);
  overflow: hidden;
  margin: 16px 0 32px;
  font-family: Helvetica, Arial, sans-serif;
}
.lp-card--b {
  background:
    linear-gradient(135deg, #E11D2A 0%, #B81522 50%, #6C0A12 100%);
}
.lp-card--b::after {
  content: "";
  position: absolute; top: -20%; right: -20%;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,122,0.25), transparent 60%);
  pointer-events: none;
}
.lp-card__top { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.lp-card__brand { font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; }
.lp-card__brand-sub { font-size: 12px; font-weight: 800; letter-spacing: -0.01em; line-height: 1; color: #fff; margin-top: 4px; }
.lp-card__brand-sub span { color: #FFD27A; }

.lp-card__chip {
  position: absolute; right: 26px; top: 50%; transform: translateY(-50%);
  width: 44px; height: 34px; border-radius: 6px;
  background: linear-gradient(135deg, #FFE3A4, #C99840 60%, #8D6B2A);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3) inset;
  z-index: 2;
}
.lp-card__chip::before, .lp-card__chip::after {
  content: ""; position: absolute; left: 6px; right: 6px; height: 1px; background: rgba(0,0,0,0.3);
}
.lp-card__chip::before { top: 9px; }
.lp-card__chip::after  { bottom: 9px; }

.lp-card__middle { position: relative; z-index: 1; }
.lp-card__points-label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.lp-card__points {
  font-size: clamp(36px, 6.5vw, 48px); font-weight: 900; line-height: 1;
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}
.lp-card__points span { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.65); margin-left: 6px; letter-spacing: 0; }

.lp-card__bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; position: relative; z-index: 1; }
.lp-card__holder-label { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 4px; }
.lp-card__holder { font-size: 14px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.lp-card__tier {
  background: rgba(0,0,0,0.28); color: #FFD27A;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  padding: 5px 11px; border-radius: 999px; text-transform: uppercase;
  white-space: nowrap;
}
.lp-card__login {
  background: #fff; color: #B81522;
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
  text-decoration: none; white-space: nowrap;
}

@media (max-width: 640px) {
  .lp-card { padding: 18px 22px !important; aspect-ratio: 1.586 / 1; max-width: 100%; border-radius: 14px; box-sizing: border-box; }
  .lp-card__brand { font-size: 8px; letter-spacing: 0.16em; }
  .lp-card__brand-sub { font-size: 10px; margin-top: 2px; }
  .lp-card__points-label { font-size: 7px; margin-bottom: 2px; letter-spacing: 0.14em; }
  .lp-card__points { font-size: 22px; }
  .lp-card__points span { font-size: 9px; margin-left: 4px; }
  .lp-card__chip { right: 22px; width: 28px; height: 20px; border-radius: 4px; }
  .lp-card__chip::before { top: 6px; }
  .lp-card__chip::after { bottom: 6px; }
  .lp-card__holder-label { font-size: 7px; margin-bottom: 2px; }
  .lp-card__holder { font-size: 10px; max-width: 48vw; }
  .lp-card__tier { font-size: 7px; padding: 3px 7px; letter-spacing: 0.08em; }
  .lp-card__login { font-size: 10px; padding: 5px 11px; }
}

.lakpro-rewards__section-title {
  font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; color: var(--ink-1000);
  margin: 0 0 18px;
}

/* Locked rewards grid (uitgelogd) */
.lakpro-rewards__grid--locked { position: relative; }
.lakpro-rewards__grid--locked > .lakpro-reward-card {
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
}
.lakpro-rewards__lock-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  padding: 24px;
}
.lakpro-rewards__lock-card {
  background: #fff;
  border: 1px solid var(--line-200);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 32px 36px;
  max-width: 420px;
  text-align: center;
}
.lakpro-rewards__lock-card svg { width: 38px; height: 38px; color: var(--red-600); margin-bottom: 12px; }
.lakpro-rewards__lock-card h3 { font-size: 20px; font-weight: 800; color: var(--ink-1000); margin: 0 0 8px; }
.lakpro-rewards__lock-card p { font-size: 14px; color: var(--ink-600); line-height: 1.6; margin: 0 0 18px; }

.lakpro-rewards__success,
.lakpro-rewards__error {
  padding: 16px 20px; border-radius: var(--r-card); margin: 0 0 24px;
  font-size: 14px;
}
.lakpro-rewards__success { background: #E9F8EF; color: #0F5128; border: 1px solid #B7E4C7; }
.lakpro-rewards__error   { background: #FDECEC; color: #9B1B22; border: 1px solid #F5C0C3; }
.lakpro-rewards__success strong, .lakpro-rewards__error strong { display: block; margin-bottom: 4px; }
.lakpro-rewards__code {
  display: inline-block; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: #fff; padding: 4px 8px; border-radius: 4px;
  border: 1px solid #B7E4C7; color: var(--ink-1000); font-weight: 700;
  letter-spacing: 0.05em; margin: 0 4px;
}
.lakpro-rewards__hint { font-size: 13px; margin-top: 6px; opacity: 0.85; }

.lakpro-rewards__grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px) { .lakpro-rewards__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .lakpro-rewards__grid { grid-template-columns: repeat(3, 1fr); } }

.lakpro-reward-card {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.lakpro-reward-card:hover {
  border-color: var(--ink-1000);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15,17,21,0.06);
}

.lakpro-reward-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #F7F8FA, #EEF0F3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lakpro-reward-card__visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lakpro-reward-card__placeholder { color: var(--red-600); opacity: 0.6; }
.lakpro-reward-card__placeholder svg { width: 72px; height: 72px; }
.lakpro-reward-card--voucher .lakpro-reward-card__visual {
  background: linear-gradient(135deg, #FDECEC, #F7F8FA);
}

.lakpro-reward-card__type-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(16, 24, 40, 0.86);
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.lakpro-reward-card--voucher .lakpro-reward-card__type-badge { background: var(--red-600); }

.lakpro-reward-card__body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.lakpro-reward-card__title { font-size: 17px; font-weight: 700; color: var(--ink-1000); margin: 0; line-height: 1.3; }
.lakpro-reward-card__value { font-size: 13px; color: var(--red-600); font-weight: 600; }
.lakpro-reward-card__desc { font-size: 14px; color: var(--ink-600); line-height: 1.55; margin: 0; }
.lakpro-reward-card__limit {
  display: inline-block; align-self: flex-start;
  font-size: 11px; font-weight: 600;
  background: var(--line-100); color: var(--ink-600);
  padding: 4px 10px; border-radius: 999px;
  margin-top: 4px;
}

.lakpro-reward-card__footer {
  margin-top: auto; padding-top: 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line-100);
}
.lakpro-reward-card__cost {
  display: flex; align-items: baseline; gap: 4px;
}
.lakpro-reward-card__cost strong {
  font-size: 22px; font-weight: 800; color: var(--ink-1000);
  font-variant-numeric: tabular-nums;
}
.lakpro-reward-card__cost span { font-size: 12px; color: var(--ink-600); }
.lakpro-reward-card__btn { padding: 10px 16px; font-size: 13px; }
.lakpro-reward-card__btn.is-disabled { opacity: 0.5; cursor: not-allowed; }
.lakpro-reward-card__form { margin: 0; }

.lakpro-rewards__pagination { margin-top: 40px; text-align: center; }
.lakpro-rewards__empty {
  padding: 64px 24px; text-align: center;
  background: var(--line-100); border-radius: var(--r-card);
  color: var(--ink-600);
}
.lakpro-rewards__empty strong { display: block; color: var(--ink-1000); font-size: 18px; margin-bottom: 6px; }

/* ===== Loyalty punten pagina (My Account → Mijn punten) ===== */
.lakpro-points { display: flex; flex-direction: column; gap: 32px; }
.lakpro-points__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  padding: 28px 24px;
  box-shadow: 0 1px 3px rgba(15,17,21,0.04);
}
@media (min-width: 768px) {
  .lakpro-points__hero { grid-template-columns: 280px 1fr; gap: 36px; padding: 32px; align-items: center; }
}
.lakpro-points__balance {
  display: flex; flex-direction: column;
  background: linear-gradient(135deg, var(--ink-1000), #1A1D24);
  color: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}
.lakpro-points__balance::after {
  content: ""; position: absolute; top: -30%; right: -30%; width: 60%; height: 160%;
  background: radial-gradient(circle at center, rgba(225,29,42,0.30), transparent 60%);
  pointer-events: none;
}
.lakpro-points__balance-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  position: relative; z-index: 1;
}
.lakpro-points__balance-value {
  font-size: 48px; font-weight: 800; line-height: 1;
  margin: 12px 0 6px;
  color: #fff;
  position: relative; z-index: 1;
}
.lakpro-points__balance-worth {
  font-size: 13px; color: rgba(255,255,255,0.7);
  position: relative; z-index: 1;
}
.lakpro-points__balance-worth .woocommerce-Price-amount { color: #fff; font-weight: 600; }

.lakpro-points__info h3 {
  font-size: 16px; font-weight: 700; color: var(--ink-1000);
  margin: 0 0 12px;
}
.lakpro-points__info ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; color: var(--ink-600); line-height: 1.55;
}
.lakpro-points__info li {
  position: relative; padding-left: 22px;
}
.lakpro-points__info li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--red-600); border-radius: 50%;
}
.lakpro-points__info strong { color: var(--ink-1000); }

.lakpro-points__history {
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  padding: 24px;
  box-shadow: 0 1px 3px rgba(15,17,21,0.04);
}
.lakpro-points__history h3 {
  font-size: 16px; font-weight: 700;
  margin: 0 0 16px; color: var(--ink-1000);
}

.lakpro-points__empty {
  padding: 32px 16px; text-align: center;
  color: var(--ink-600); font-size: 14px;
}
.lakpro-points__empty strong { display: block; color: var(--ink-1000); margin-bottom: 6px; font-size: 16px; }

.lakpro-points__table { width: 100%; border-collapse: collapse; font-size: 14px; }
.lakpro-points__table th,
.lakpro-points__table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid var(--line-100);
}
.lakpro-points__table th {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-600);
  border-bottom-color: var(--line-200);
}
.lakpro-points__table th.num,
.lakpro-points__table td.num { text-align: right; white-space: nowrap; }
.lakpro-points__table tr:last-child td { border-bottom: none; }
.lakpro-points__table .lakpro-points__delta {
  display: inline-block; font-weight: 700; font-variant-numeric: tabular-nums;
}
.lakpro-points__table tr.is-add .lakpro-points__delta { color: var(--success, #18A957); }
.lakpro-points__table tr.is-sub .lakpro-points__delta { color: var(--red-600); }
.lakpro-points__order-link { color: var(--ink-600); font-size: 12px; margin-left: 4px; text-decoration: none; }
.lakpro-points__order-link:hover { color: var(--red-600); text-decoration: underline; }

/* Dashboard kaart met punten */
.lakpro-dashboard__card--points .lakpro-dashboard__card-icon {
  background: var(--red-50, rgba(225,29,42,0.08));
  color: var(--red-600);
}
.lakpro-dashboard__card--points .lakpro-dashboard__card-body strong {
  font-size: 22px; font-weight: 800; color: var(--ink-1000); display: inline-block; margin-right: 4px;
}
.lakpro-dashboard__card-sub {
  display: block; font-size: 12px; color: var(--ink-600); margin-top: 2px;
}

/* ===== Bedankpagina (Thank you) ===== */
.lakpro-thankyou {
  max-width: 880px;
  margin: 32px auto 64px;
  background: var(--surface);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  padding: 40px 32px;
  box-shadow: 0 1px 3px rgba(15,17,21,0.04);
}
@media (min-width: 768px) {
  .lakpro-thankyou { padding: 48px 40px; }
}

.lakpro-thankyou__hero { text-align: center; margin-bottom: 36px; }
.lakpro-thankyou__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--success-50, #E9F8EF);
  color: var(--success, #18A957);
  margin: 0 auto 18px;
}
.lakpro-thankyou__check svg { width: 36px; height: 36px; }
.lakpro-thankyou__title {
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 800;
  color: var(--ink-1000);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.lakpro-thankyou__sub {
  font-size: 15px;
  color: var(--ink-600);
  margin: 0 auto;
  max-width: 480px;
  line-height: 1.55;
}
.lakpro-thankyou__sub strong { color: var(--ink-1000); font-weight: 600; }

.lakpro-thankyou__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-200);
  border: 1px solid var(--line-200);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .lakpro-thankyou__meta { grid-template-columns: repeat(4, 1fr); }
}
.lakpro-thankyou__meta-item {
  background: var(--surface);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.lakpro-thankyou__meta-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-600);
}
.lakpro-thankyou__meta-value {
  font-size: 15px; font-weight: 700; color: var(--ink-1000);
}

.lakpro-thankyou__details { margin-bottom: 32px; }
.lakpro-thankyou__details .woocommerce-order-details,
.lakpro-thankyou__details .woocommerce-customer-details { margin: 0 0 24px; }
.lakpro-thankyou__details h2,
.lakpro-thankyou__details h3 {
  font-size: 16px; font-weight: 700; color: var(--ink-1000);
  margin: 0 0 14px; letter-spacing: -0.005em;
}
.lakpro-thankyou__details .woocommerce-table--order-details,
.lakpro-thankyou__details .woocommerce-table--order-downloads {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.lakpro-thankyou__details .woocommerce-table--order-details th,
.lakpro-thankyou__details .woocommerce-table--order-details td {
  padding: 12px 0; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--line-100);
}
.lakpro-thankyou__details .woocommerce-table--order-details thead { display: none; }
.lakpro-thankyou__details .woocommerce-table--order-details td.product-total,
.lakpro-thankyou__details .woocommerce-table--order-details td:last-child {
  text-align: right; white-space: nowrap;
  color: var(--ink-1000); font-weight: 600;
}
.lakpro-thankyou__details .woocommerce-table--order-details tfoot td {
  font-size: 14px; color: var(--ink-800);
  padding: 10px 0; border-bottom: 1px dashed var(--line-200);
}
.lakpro-thankyou__details .woocommerce-table--order-details tfoot tr:last-child td {
  font-size: 17px; font-weight: 800; color: var(--ink-1000);
  border-bottom: none; padding-top: 14px;
}

.lakpro-thankyou__details .woocommerce-customer-details address {
  font-style: normal; font-size: 14px; color: var(--ink-600);
  background: var(--line-100);
  padding: 18px 20px; border-radius: var(--r-card);
  line-height: 1.6;
}
.lakpro-thankyou__details .woocommerce-columns--addresses {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin: 0;
}
@media (min-width: 640px) {
  .lakpro-thankyou__details .woocommerce-columns--addresses {
    grid-template-columns: 1fr 1fr;
  }
}
.lakpro-thankyou__details .woocommerce-column__title {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink-1000); margin: 0 0 8px;
}

.lakpro-thankyou__actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  margin: 0 0 24px;
}

.lakpro-thankyou__help {
  text-align: center;
  font-size: 13px;
  color: var(--ink-600);
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-200);
}
.lakpro-thankyou__help a {
  color: var(--red-600);
  font-weight: 600;
  text-decoration: none;
}
.lakpro-thankyou__help a:hover { text-decoration: underline; }

.lakpro-thankyou__failed { text-align: center; padding: 32px 0; }
.lakpro-thankyou__failed .lakpro-thankyou__title { color: var(--red-600); }

/* Verberg WC's default "thank you" intro die anders nog boven onze hero komt */
.woocommerce-order > .woocommerce-thankyou-order-received,
.woocommerce-order > .woocommerce-order-overview { display: none; }

/* ===== Product page: Extra benodigdheden tab ===== */
.lakpro-extras-tab { padding-top: 8px; }
.lakpro-extras-tab__intro {
  font-size: 14px;
  color: var(--ink-600);
  margin: 0 0 20px;
}
.lakpro-extras-tab ul.products {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 !important;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) {
  .lakpro-extras-tab ul.products { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1080px) {
  .lakpro-extras-tab ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ===== Cart cross-sells ===== */
.cart-collaterals { margin-top: 56px; }
.cart-collaterals .cross-sells { max-width: none; }
.cart-collaterals .cross-sells > h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-1000);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.cart-collaterals .cross-sells ul.products { margin: 0 !important; }
@media (min-width: 768px) {
  .cart-collaterals .cross-sells ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (min-width: 1080px) {
  .cart-collaterals .cross-sells ul.products { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ============================================================
 *  PRODUCT IMAGE LIGHTBOX
 * ============================================================ */
.lakpro-lightbox {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0, 0, 0, .92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 60px;
  animation: lakpro-lb-in .15s ease;
}
@keyframes lakpro-lb-in { from { opacity: 0; } to { opacity: 1; } }
.lakpro-lightbox__img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  border-radius: 4px;
  cursor: zoom-out;
}
.lakpro-lightbox__close {
  position: absolute; top: 16px; right: 20px;
  background: rgba(255, 255, 255, .12); border: 0;
  color: #fff; font-size: 32px; line-height: 1;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.lakpro-lightbox__close:hover { background: rgba(255, 255, 255, .22); }
.lakpro-lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, .12); border: 0;
  color: #fff; font-size: 32px;
  width: 52px; height: 52px; border-radius: 50%;
  cursor: pointer; transition: background .15s;
  display: flex; align-items: center; justify-content: center;
}
.lakpro-lightbox__nav:hover { background: rgba(255, 255, 255, .22); }
.lakpro-lightbox__nav--prev { left: 20px; }
.lakpro-lightbox__nav--next { right: 20px; }
.lakpro-lightbox__counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, .7);
  font-size: 13px; font-weight: 600;
  background: rgba(0, 0, 0, .4); padding: 6px 14px; border-radius: 999px;
}
@media (max-width: 640px) {
  .lakpro-lightbox { padding: 20px; }
  .lakpro-lightbox__nav { width: 44px; height: 44px; font-size: 26px; }
  .lakpro-lightbox__nav--prev { left: 8px; }
  .lakpro-lightbox__nav--next { right: 8px; }
}

/* Sticky CTA — variant choice support */
.product-sticky-cta__variant {
  color: var(--ink-500); font-size: 13px; font-weight: 600;
  margin-right: 8px; white-space: nowrap;
}
.product-sticky-cta .btn--outline {
  background: transparent; border: 1px solid var(--line-200); color: var(--ink-900);
  padding: 10px 16px;
}
.product-sticky-cta .btn--outline:hover { background: var(--line-100); border-color: var(--ink-900); }
.product-sticky-cta__btn[hidden] { display: none !important; }
@media (max-width: 640px) {
  .product-sticky-cta__variant { display: none; }
}

/* =========================================================
   FIX v4.8.8 — Form mag GEEN grid worden
   ---------------------------------------------------------
   Eerdere regels op body.woocommerce-checkout .checkout forceren
   display:grid !important — die matchen ook op het form (dat ook
   class="checkout" heeft voor WC's checkout.js binding). Daardoor
   wordt het form een grid 1fr 400px met de inner-div als enig kind
   in kolom 1 → 400px leeg rechts. Hier zetten we het form expliciet
   weer naar block met hoge specificiteit (2 elements + 2 classes).
   ========================================================= */
html body.woocommerce-checkout form.checkout,
html body.woocommerce-checkout form.woocommerce-checkout {
  display: block !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 0 !important;
  max-width: var(--container) !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* =========================================================
   FIX v4.9.1 — Place-order knop tekst ALTIJD wit
   ---------------------------------------------------------
   Maximum specificity + dekt ook nested elementen (span/em).
   Voorkomt dat iOS Safari of latere CSS-regels de tekst
   onzichtbaar maken (transparent / red on red).
   ========================================================= */
html body.woocommerce-checkout #place_order,
html body.woocommerce-checkout #place_order *,
html body.woocommerce-checkout button[name="woocommerce_checkout_place_order"],
html body.woocommerce-checkout button[name="woocommerce_checkout_place_order"] *,
html body.woocommerce-checkout .checkout-place #place_order,
html body.woocommerce-checkout .checkout-place #place_order * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
}
