/* ── Reset & base ───────────────────────────────────────────────── */
:root {
  --roze:   #D64161;
  --oranje: #F5A623;
  --ink:    #1a1f2e;
  --muted:  #6b7785;
  --bg:     #f4f5f7;
  --card:   #ffffff;
  --line:   #e3e6ea;
  --radius: 10px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}
a { color: var(--roze); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── Sitebreed layout ───────────────────────────────────────────── */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }

/* ── Header ─────────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.site-header .logo img { height: 36px; width: auto; }
.site-header .logo span {
  font-size: 18px; font-weight: 700; color: var(--roze);
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: background .12s, color .12s;
}
.site-nav a:hover { background: var(--bg); color: var(--ink); text-decoration: none; }
.site-nav a.active { color: var(--ink); background: var(--bg); }
.site-nav .btn-nav {
  background: var(--roze); color: #fff !important;
  padding: 8px 18px; font-weight: 600; margin-left: 8px;
}
.site-nav .btn-nav:hover { background: #c03558; text-decoration: none; }

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.site-footer a { color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }

/* ── Page wrapper ───────────────────────────────────────────────── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px;
}
.page-wrap.narrow { max-width: 680px; }
.page-wrap > h1 { font-size: 1.7rem; font-weight: 700; margin-bottom: 20px; }

/* ── Contentpagina's: kop- en tabelstijl ────────────────────────── */
.entry-content { max-width: 760px; }
.entry-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.entry-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.entry-content p { margin-bottom: 14px; }
.entry-content ul { margin: 0 0 14px 20px; }
.entry-content li { margin-bottom: 6px; }
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 24px;
  font-size: 13.5px;
  overflow-x: auto;
  display: block;
}
.entry-content th,
.entry-content td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.entry-content th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  background: #fafbfc;
}
.entry-content .btn { margin-top: 8px; }

/* ── Knoppen ────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none !important;
  transition: opacity .15s;
}
.btn:hover { opacity: .88; }
.btn-primary  { background: var(--roze); color: #fff; }
.btn-secondary { background: var(--bg); color: var(--ink); border: 1px solid var(--line); }
.btn-lg { padding: 14px 34px; font-size: 16px; }

/* ── Homepage hero ──────────────────────────────────────────────── */
.hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 72px 24px 60px;
  text-align: center;
}
.hero .hero-logo { height: 52px; margin: 0 auto 28px; }
.hero h1 { font-size: 2rem; font-weight: 700; line-height: 1.2; margin-bottom: 14px; }
.hero p  { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-loggedin { background: linear-gradient(135deg, #fff 60%, #fff5f7 100%); }
.hero-loggedin h1 span { color: var(--roze); }

/* Feature-blokken */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 960px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.feature-card .icon { font-size: 26px; margin-bottom: 10px; }
.feature-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.feature-card p  { font-size: 13px; color: var(--muted); }
a.feature-card { text-decoration: none !important; transition: border-color .15s, box-shadow .15s; }
a.feature-card:hover { border-color: var(--roze); box-shadow: 0 2px 8px rgba(214,65,97,.1); }

/* Dashboard (ingelogd) */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 36px auto 0;
  padding: 0 24px 52px;
}
.dash-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.dash-card .icon { font-size: 24px; }
.dash-card h3 { font-size: 15px; font-weight: 600; }
.dash-card p  { font-size: 13px; color: var(--muted); flex: 1; }
.dash-card .btn { align-self: flex-start; margin-top: 6px; }
.dash-card.featured { border-color: var(--roze); border-width: 2px; }
.dash-card.featured h3 { color: var(--roze); }

/* ── Shop / Bestellen ───────────────────────────────────────────── */
.shop-header { margin-bottom: 24px; }
.shop-header h1 { font-size: 22px; font-weight: 700; }
.shop-header p  { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* Verberg WooCommerce sortering/count bovenin */
.woocommerce-result-count,
.woocommerce-ordering { display: none !important; }

/* ── Product list (tabel) ────────────────────────────────────────── */
.product-list {
  width: 100%;
  border: 1px solid var(--line);
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 13.5px;
}
.product-list thead {
  background: #fafbfc;
}
.product-list th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.product-list tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background .12s;
}
.product-list tbody tr:hover {
  background: #f8f9fb;
}
.product-list tbody tr:last-child {
  border-bottom: none;
}
.product-list td {
  padding: 14px;
  vertical-align: middle;
}

/* Kolom-specifieke styling */
.product-row .col-type,
.product-row .col-perforeerd { text-align: center; width: 80px; }
.product-row .col-afmeting { width: 110px; font-weight: 500; }
.product-row .col-dikte { width: 90px; font-weight: 500; }
.product-row .col-num { text-align: right; }
.product-row .col-act { text-align: right; width: 100px; }

/* Badge */
.badge {
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  display: inline-block;
}
.badge-pe   { background: #dbeafe; color: #1e40af; }
.badge-pof  { background: #fce7f3; color: #9d174d; }
.badge-bopp { background: #fef3c7; color: #92400e; }
.badge-std  { background: #f3f4f6; color: #374151; }

/* Prijs in lijst */
.product-prijs-row {
  font-size: 16px;
  font-weight: 700;
  color: var(--roze);
}
.product-eenheid-row {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

/* Toevoegen-link */
.btn-toevoegen {
  display: inline-block;
  background: var(--roze);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background .12s;
  white-space: nowrap;
}
.btn-toevoegen:hover {
  background: #c03558;
  text-decoration: none !important;
}

/* Weg met WooCommerce inline styling op producttitel */
.woocommerce ul.products li.product a,
.woocommerce ul.products li.product h2 { text-decoration: none !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { display: none; }

/* Product-detail pagina */
.woocommerce div.product {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.woocommerce div.product .product_title { font-size: 20px; margin-bottom: 8px; }
.woocommerce div.product p.price { font-size: 22px; color: var(--roze); font-weight: 700; }
.woocommerce div.product .single_add_to_cart_button {
  background: var(--roze) !important; border: none !important;
  border-radius: 8px !important; font-size: 15px !important;
  font-weight: 600 !important; padding: 13px 28px !important;
}
.woocommerce div.product img,
.woocommerce div.product .woocommerce-product-gallery { display: none !important; }
.woocommerce .woocommerce-breadcrumb { display: none; }

/* Cart + checkout */
.woocommerce table.shop_table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.woocommerce table.shop_table th { background: #fafbfc; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.woocommerce .wc-proceed-to-checkout .checkout-button,
.woocommerce #place_order {
  background: var(--roze) !important; border: none !important;
  border-radius: 8px !important; font-size: 15px !important; font-weight: 600 !important;
}

/* ── Winkelwagen ─────────────────────────────────────────────────── */
.woocommerce-cart .woocommerce {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: start;
  gap: 24px;
}
.woocommerce-cart .woocommerce-notices-wrapper { grid-column: 1 / -1; }

.woocommerce-cart table.shop_table.cart {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-collapse: collapse;
  overflow: hidden;
  font-size: 13.5px;
}
.woocommerce-cart table.shop_table.cart thead { background: #fafbfc; }
.woocommerce-cart table.shop_table.cart th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.woocommerce-cart table.shop_table.cart td {
  padding: 14px;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}
.woocommerce-cart table.shop_table.cart tbody tr:hover td { background: #f8f9fb; }

/* Remove-knop: subtiele ronde knop i.p.v. kale rode kruis */
.woocommerce-cart table.shop_table.cart .product-remove { width: 40px; text-align: center; }
.woocommerce-cart table.shop_table.cart .product-remove a.remove {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--muted) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  transition: background .12s, color .12s;
}
.woocommerce-cart table.shop_table.cart .product-remove a.remove:hover {
  background: #fef2f2;
  color: #c0392b !important;
}

/* Thumbnail */
.woocommerce-cart table.shop_table.cart .product-thumbnail { width: 56px; }
.woocommerce-cart table.shop_table.cart .product-thumbnail img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--bg);
}

/* Productnaam: geen felroze linktekst, wel duidelijk klikbaar */
.woocommerce-cart table.shop_table.cart .product-name a {
  color: var(--ink);
  font-weight: 600;
}
.woocommerce-cart table.shop_table.cart .product-name a:hover {
  color: var(--roze);
  text-decoration: none;
}
.woocommerce-cart table.shop_table.cart .product-name .backorder_notification {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 4px;
}

/* Prijs / subtotaal */
.woocommerce-cart table.shop_table.cart .product-price,
.woocommerce-cart table.shop_table.cart .product-subtotal {
  text-align: right;
  white-space: nowrap;
}
.woocommerce-cart table.shop_table.cart td.product-subtotal {
  font-weight: 700;
  color: var(--roze);
}

/* Aantal-input, zelfde stijl als op de productpagina */
.woocommerce-cart table.shop_table.cart .quantity input.qty {
  width: 64px !important;
  padding: 8px 10px !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-align: center !important;
  color: var(--ink) !important;
}
.woocommerce-cart table.shop_table.cart .quantity input.qty:focus {
  outline: none;
  border-color: var(--roze) !important;
  box-shadow: 0 0 0 3px rgba(214,65,97,.1);
}

/* Actierij (update-knop) */
.woocommerce-cart table.shop_table.cart tr:has(.actions) td.actions {
  background: #fafbfc;
  padding: 16px 14px;
}
.woocommerce-cart table.shop_table.cart .actions button[name="update_cart"] {
  background: var(--bg) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  cursor: pointer;
}
.woocommerce-cart table.shop_table.cart .actions button[name="update_cart"]:hover:not(:disabled) {
  border-color: var(--roze);
  color: var(--roze) !important;
}
.woocommerce-cart table.shop_table.cart .actions button[name="update_cart"]:disabled { opacity: .5; }

/* Totalen-kaart */
.woocommerce-cart .cart_totals {
  float: none !important;
  width: 100% !important;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 84px;
  box-sizing: border-box;
}
.woocommerce-cart .cart_totals h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.woocommerce-cart .cart_totals table.shop_table {
  width: 100%;
  border: none;
  border-radius: 0;
  font-size: 13.5px;
}
.woocommerce-cart .cart_totals table.shop_table tr { border-bottom: 1px solid var(--line); }
.woocommerce-cart .cart_totals table.shop_table tr:last-child { border-bottom: none; }
.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
  padding: 10px 0;
  background: transparent !important;
  font-weight: 500;
  color: var(--ink);
}
.woocommerce-cart .cart_totals table.shop_table th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}
.woocommerce-cart .cart_totals table.shop_table td { text-align: right; }
.woocommerce-cart .cart_totals table.shop_table .order-total th,
.woocommerce-cart .cart_totals table.shop_table .order-total td {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.woocommerce-cart .cart_totals table.shop_table .order-total td { color: var(--roze); }
.woocommerce-cart .cart_totals .wc-proceed-to-checkout { margin-top: 16px; }
.woocommerce-cart .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px !important;
  font-size: 15px !important;
  border-radius: 9px !important;
}

@media (max-width: 768px) {
  .woocommerce-cart .woocommerce { grid-template-columns: 1fr; }
  .woocommerce-cart .cart_totals { position: static; margin-top: 4px; }

  /* Regels als kaartjes, zelfde patroon als de productenlijst */
  .woocommerce-cart table.shop_table.cart { border: none; background: transparent; }
  .woocommerce-cart table.shop_table.cart thead { display: none; }
  /* WooCommerce's eigen mobiele "Label: waarde"-weergave uitzetten — wij bouwen onze eigen kaartindeling */
  .woocommerce-cart table.shop_table.cart td::before { display: none !important; content: none !important; }

  .woocommerce-cart table.shop_table.cart tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 6px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 10px;
    padding: 14px;
  }
  .woocommerce-cart table.shop_table.cart tbody tr:has(.actions) {
    display: block;
    background: transparent;
    border: none;
    padding: 4px 0 0;
  }
  .woocommerce-cart table.shop_table.cart td {
    padding: 0;
    border: none;
  }
  .woocommerce-cart table.shop_table.cart .product-thumbnail { display: none; }
  .woocommerce-cart table.shop_table.cart .product-price { display: none; }
  .woocommerce-cart table.shop_table.cart .product-name {
    grid-column: 1;
    grid-row: 1;
  }
  .woocommerce-cart table.shop_table.cart .product-remove {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .woocommerce-cart table.shop_table.cart .product-quantity {
    grid-column: 1;
    grid-row: 2;
  }
  .woocommerce-cart table.shop_table.cart .product-subtotal {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: end;
  }
  .woocommerce-cart table.shop_table.cart .actions {
    display: flex;
    justify-content: flex-end;
  }
}

/* ── Mijn account ───────────────────────────────────────────────── */
.woocommerce-account .page-wrap { max-width: 1000px; }

/* Grid: sidebar + content
   Override WooCommerce default float-based layout */
.account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}

/* Forceer sidebar op breedte — WC legt anders float:left;width:30% op */
.account-nav {
  width: 220px;
  min-width: 220px;
}

/* Reset WooCommerce float defaults */
.woocommerce-account .woocommerce-MyAccount-navigation,
.account-nav .woocommerce-MyAccount-navigation {
  float: none !important;
  width: auto !important;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Reset WooCommerce content float */
.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
  padding: 0 !important;
}
.account-nav .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0; padding: 0;
}
.account-nav .woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--line);
}
.account-nav .woocommerce-MyAccount-navigation li:last-child { border-bottom: none; }
.account-nav .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.account-nav .woocommerce-MyAccount-navigation li a:hover {
  background: var(--bg); color: var(--ink); text-decoration: none;
}
.account-nav .woocommerce-MyAccount-navigation li.is-active a {
  color: var(--roze); font-weight: 600; background: #fff5f7;
  border-left: 3px solid var(--roze);
  padding-left: 13px;
}

/* Content vlak */
.account-content {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 32px;
}
.account-content h2,
.account-content h3 { font-size: 17px; margin-bottom: 16px; }
.account-content p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.account-content table { width: 100%; font-size: 13.5px; border-collapse: collapse; }
.account-content table th,
.account-content table td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.account-content table th { color: var(--muted); font-size: 11px; text-transform: uppercase; background: #fafbfc; }
.account-content .woocommerce-Button,
.account-content .button {
  background: var(--roze) !important; color: #fff !important;
  border: none !important; border-radius: 7px !important;
  padding: 8px 14px !important; font-size: 13px !important;
  font-weight: 600 !important; text-decoration: none !important;
}
.account-content .woocommerce-Button:hover { opacity: .88 !important; }

/* Form-velden in account */
.account-content .form-row label {
  font-size: 13px; color: var(--muted); display: block; margin-bottom: 4px;
}
.account-content .form-row input.input-text {
  width: 100%; padding: 9px 12px; border: 1px solid var(--line);
  border-radius: 8px; font-size: 14px;
}
.account-content .form-row input:focus { outline: none; border-color: var(--roze); }

/* ── Aanvraag-formulier ─────────────────────────────────────────── */
.aanvraag-notice {
  background: #fff5f7; border: 1px solid #f9c8d3;
  border-radius: 8px; padding: 13px 16px;
  font-size: 13.5px; color: #7a1b30; margin-bottom: 20px;
}
.aanvraag-form { display: flex; flex-direction: column; gap: 18px; }
.aanvraag-form label {
  font-size: 13px; color: var(--muted); display: block;
  margin-bottom: 5px; font-weight: 500;
}
.aanvraag-form input,
.aanvraag-form select,
.aanvraag-form textarea {
  width: 100%; padding: 10px 13px;
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 14px; font-family: inherit; color: var(--ink);
}
.aanvraag-form input:focus,
.aanvraag-form select:focus,
.aanvraag-form textarea:focus {
  outline: none; border-color: var(--roze);
  box-shadow: 0 0 0 3px rgba(214,65,97,.1);
}
.aanvraag-form textarea { resize: vertical; min-height: 120px; }
.aanvraag-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Account page: neutraliseer entry-content wrapper ───────────── */
.woocommerce-account .entry-content { margin: 0; padding: 0; }
.woocommerce-account .woocommerce   { margin: 0; padding: 0; }

/* Login-formulier op my-account ────────────────────────────────── */
.woocommerce-account .woocommerce-form-login {
  max-width: 440px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.woocommerce-account .woocommerce-form-login h2 {
  font-size: 20px; font-weight: 700; margin-bottom: 20px;
  text-align: center;
}
.woocommerce-account .woocommerce-form-login .form-row { margin-bottom: 14px; }
.woocommerce-account .woocommerce-form-login label {
  font-size: 13px; color: var(--muted); font-weight: 500;
}
.woocommerce-account .woocommerce-form-login .input-text {
  width: 100%; padding: 10px 13px; margin-top: 4px;
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 14px; font-family: inherit;
}
.woocommerce-account .woocommerce-form-login .input-text:focus {
  outline: none; border-color: var(--roze);
  box-shadow: 0 0 0 3px rgba(214,65,97,.1);
}
.woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit {
  background: var(--roze) !important; color: #fff !important;
  border: none !important; border-radius: 8px !important;
  padding: 12px 28px !important; font-size: 15px !important;
  font-weight: 600 !important; width: 100%; cursor: pointer;
  margin-top: 8px;
}
.woocommerce-account .woocommerce-LostPassword { text-align: center; margin-top: 14px; font-size: 13px; }

/* ── WooCommerce notices ─────────────────────────────────────────── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 8px !important; border-top: none !important;
  border-left: 4px solid var(--roze) !important;
  background: #fff5f7 !important; color: var(--ink) !important;
  padding: 13px 16px !important; list-style: none !important;
  margin-bottom: 20px !important;
}
.woocommerce-info { border-left-color: #3b82f6 !important; background: #eff6ff !important; }
.woocommerce-info::before { display: none !important; }
.woocommerce-error { border-left-color: #c0392b !important; background: #fef2f2 !important; }

/* ── Waardebon verbergen (niet van toepassing voor B2B) ─────────── */
.woocommerce-cart .coupon { display: none !important; }

/* ── Hamburger-knop (alleen zichtbaar op mobiel) ────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Responsief ─────────────────────────────────────────────────── */
@media (max-width: 680px) {
  /* Header: hamburger-menu */
  .site-header {
    padding: 0 16px;
    position: relative;
  }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    flex-direction: column;
    padding: 10px 16px 16px;
    gap: 2px;
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 11px 14px;
    font-size: 15px;
    border-radius: 8px;
  }
  .site-nav .btn-nav {
    margin-left: 0;
    margin-top: 6px;
    text-align: center;
    padding: 12px 18px;
  }

  /* Overige layout */
  .hero h1 { font-size: 1.5rem; }
  .features, .dashboard-grid { padding: 0 16px; }
  .account-layout { grid-template-columns: 1fr; }
  .aanvraag-form .form-row { grid-template-columns: 1fr; }
  .page-wrap { padding: 24px 16px; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr; }

  /* Productenlijst → kaartjes */
  .product-list {
    border: none;
    background: transparent;
  }
  .product-list thead { display: none; }
  .product-list tbody tr {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 10px;
    padding: 14px;
    background: var(--card);
  }
  .product-list tbody tr:last-child { border: 1px solid var(--line); }
  .product-list td { padding: 0; border: none; vertical-align: top; }
  .product-row .col-type       { grid-row: 1; grid-column: 1; width: auto; text-align: left; }
  .product-row .col-afmeting   { grid-row: 1; grid-column: 2; font-size: 14px; }
  .product-row .col-prijs      { grid-row: 1; grid-column: 3; text-align: right; }
  .product-row .col-dikte      { grid-row: 2; grid-column: 1 / 3; font-size: 12px; color: var(--muted); width: auto; }
  .product-row .col-perforeerd { display: none; }
  .product-row .col-action     { grid-row: 2; grid-column: 3; text-align: right; width: auto; }
  .product-prijs-row { font-size: 14px; }
  .btn-toevoegen { padding: 6px 10px; font-size: 12px; }

  /* Bestellingen: regelstabel compacter */
  .order-regels th, .order-regels td { font-size: 12px; }
  .order-regels .col-naam { max-width: 120px; word-break: break-word; }

  /* Account-nav → 4 tabs in één rij */
  .account-nav { width: 100%; min-width: 0; }
  .account-nav .woocommerce-MyAccount-navigation ul {
    display: flex !important;
  }
  .account-nav .woocommerce-MyAccount-navigation li {
    flex: 1 1 0 !important;
    border-bottom: none !important;
    border-right: 1px solid var(--line);
  }
  .account-nav .woocommerce-MyAccount-navigation li:last-child { border-right: none; }
  .account-nav .woocommerce-MyAccount-navigation li a {
    padding: 11px 4px !important;
    font-size: 11.5px !important;
    text-align: center;
    white-space: nowrap;
  }
  .account-nav .woocommerce-MyAccount-navigation li.is-active a {
    border-left: none !important;
    padding-left: 4px !important;
    border-bottom: 3px solid var(--roze);
    padding-bottom: 8px !important;
  }
}

@media (max-width: 420px) {
  .woocommerce ul.products { grid-template-columns: 1fr; }
}

/* ── Klantportaal: dashboard ────────────────────────────────────── */
.dash-welcome { margin-bottom: 24px; }
.dash-welcome h2 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.dash-welcome p  { font-size: 13.5px; color: var(--muted); }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.dash-stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: center;
}
.dash-stat--accent { background: #fff5f7; border-color: #f9c8d3; }
.dash-stat__number { display: block; font-size: 28px; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.dash-stat--accent .dash-stat__number { color: var(--roze); }
.dash-stat__label  { font-size: 12px; color: var(--muted); }

.dash-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 10px;
  margin-top: 24px;
}

/* Laatste bestelling */
.dash-last-order {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
}
.dash-last-order__meta { display: flex; flex-direction: column; gap: 2px; }
.dash-last-order__nr   { font-size: 14px; font-weight: 700; }
.dash-last-order__date { font-size: 12px; color: var(--muted); }
.dash-last-order__right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.dash-last-order__amount { font-size: 15px; font-weight: 700; color: var(--roze); }
.dash-last-order__amount small { font-size: 11px; color: var(--muted); font-weight: 400; }
.dash-last-order__regels {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dash-last-order__regel {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
}
.dash-last-order__regel-naam { color: var(--ink); flex: 1; }
.dash-last-order__regel-qty  { font-weight: 700; white-space: nowrap; }
.dash-last-order__regel-qty small { font-size: 11px; color: var(--muted); font-weight: 400; }

.dash-last-order__levering {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: 4px;
}
.dash-last-order__levering strong { color: var(--ink); }

/* Snelkoppelingen */
.dash-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dash-shortcut {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-decoration: none !important;
  transition: border-color .15s, box-shadow .15s;
}
.dash-shortcut:hover {
  border-color: var(--roze);
  box-shadow: 0 2px 8px rgba(214,65,97,.1);
  text-decoration: none !important;
}
.dash-shortcut__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  color: var(--roze);
}
.dash-shortcut__icon svg { width: 18px; height: 18px; }
.dash-shortcut strong { display: block; font-size: 13.5px; color: var(--ink); }
.dash-shortcut span   { display: block; font-size: 12px; color: var(--muted); margin-top: 1px; }

@media (max-width: 580px) {
  .dash-stats    { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .dash-stat     { padding: 12px 8px; }
  .dash-stat__number { font-size: 22px; }
  .dash-shortcuts { grid-template-columns: 1fr; }
}

/* ── Klantportaal: bestellingoverzicht ──────────────────────────── */
.orders-intro { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }

.order-empty { text-align: center; padding: 32px 0; }
.order-empty p { color: var(--muted); margin-bottom: 16px; }

.order-notice { padding: 12px 16px; border-radius: 8px; font-size: 13.5px; margin-bottom: 16px; }
.order-notice--error { background: #fef2f2; border-left: 4px solid #c0392b; color: #7f1d1d; }

/* Order card */
.order-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 16px;
  background: #fff;
  transition: box-shadow .15s;
}
.order-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.order-card--done { opacity: .75; }

/* Header rij */
.order-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 12px;
}
.order-card__meta { display: flex; flex-direction: column; gap: 3px; }
.order-card__nr { font-size: 15px; font-weight: 700; color: var(--ink); }
.order-card__date { font-size: 12.5px; color: var(--muted); }
.order-card__ref { font-size: 12px; color: var(--muted); font-style: italic; }
.order-amount { display: block; font-size: 18px; font-weight: 700; color: var(--roze); text-align: right; }
.order-amount-label { display: block; font-size: 11px; color: var(--muted); text-align: right; margin-top: 1px; }

/* Statusbalk */
.order-progress {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.order-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.order-progress__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  transition: all .2s;
}
.order-progress__dot svg { width: 12px; height: 12px; }
.order-progress__step.done .order-progress__dot {
  background: #dcfce7; border-color: #16a34a; color: #16a34a;
}
.order-progress__step.active .order-progress__dot {
  background: var(--roze); border-color: var(--roze); color: #fff;
}
.order-progress__label {
  font-size: 10.5px;
  color: var(--muted);
  white-space: nowrap;
  text-align: center;
}
.order-progress__step.done .order-progress__label { color: #16a34a; }
.order-progress__step.active .order-progress__label { color: var(--roze); font-weight: 600; }
.order-progress__line {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 6px;
  margin-bottom: 22px;
  transition: background .2s;
}
.order-progress__line.done { background: #16a34a; }

/* Regelstabel */
.order-regels {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  font-size: 13px;
}
.order-regels thead tr {
  border-bottom: 1px solid var(--line);
}
.order-regels th {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  padding: 0 0 7px;
  text-align: left;
}
.order-regels tbody tr { border-bottom: 1px solid var(--line); }
.order-regels tbody tr:last-child { border-bottom: none; }
.order-regels td { padding: 9px 0; vertical-align: middle; }
.order-regels .col-naam { color: var(--ink); }
.order-regels .col-right { text-align: right; white-space: nowrap; padding-left: 16px; }
.order-regels .eenheid { font-size: 11px; color: var(--muted); }

/* Footer rij */
.order-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.order-leverdatum { font-size: 12.5px; color: var(--muted); }
.order-leverdatum strong { color: var(--ink); }

/* Status badges */
.order-status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  white-space: nowrap;
}
.order-status-badge--nieuw        { background: #eff6ff; color: #1d4ed8; }
.order-status-badge--doorgestuurd { background: #fef3c7; color: #92400e; }
.order-status-badge--bevestigd    { background: #dcfce7; color: #15803d; }
.order-status-badge--geleverd     { background: #fde8d8; color: #9a4b0a; }
.order-status-badge--gefactureerd { background: #f3e8ff; color: #7e22ce; }
.order-status-badge--afgesloten   { background: var(--bg); color: var(--muted); }

@media (max-width: 580px) {
  .order-card__head { flex-direction: column; }
  .order-amount { text-align: left; }
  .order-card { padding: 14px; overflow: hidden; }

  /* Voortgangsbalk: labels tonen maar kleiner en wrappend */
  .order-progress__step { width: 54px; flex-shrink: 0; }
  .order-progress__label {
    white-space: normal;
    font-size: 9px;
    line-height: 1.3;
    max-width: 54px;
  }
  .order-progress__line { margin: 0 2px; margin-bottom: 22px; min-width: 6px; }

  /* Tabel niet breder dan kaart */
  .order-regels { display: block; overflow-x: auto; }

  /* Account-content minder padding op mobiel */
  .account-content { padding: 16px; }
}

/* ── Klantkaart (edit-account) ─────────────────────────────────── */
.kf-klantkaart {
  background: #fff;
  border: 1px solid var(--line, #e2e5ea);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.kf-klantkaart__titel {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.kf-klantkaart__sub {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 20px;
}
.kf-klantkaart__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.kf-klantkaart__blok--full {
  grid-column: 1 / -1;
}
.kf-klantkaart__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 3px;
}
.kf-klantkaart__value {
  display: block;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.kf-klantkaart__value--dim {
  color: var(--muted);
  font-style: italic;
}
.kf-klantkaart__sectie-titel {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin: 20px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.kf-klantkaart__sectie-titel:first-of-type {
  margin-top: 4px;
}
.kf-klantkaart__wijzig-notice {
  margin-top: 20px;
  padding: 12px 16px;
  background: #f0f4ff;
  border: 1px solid #c7d4f5;
  border-radius: 8px;
  font-size: 13px;
  color: #1e3a8a;
  line-height: 1.5;
}
.kf-klantkaart__wijzig-notice a { color: #1e3a8a; font-weight: 600; }
@media (max-width: 600px) {
  .kf-klantkaart__grid { grid-template-columns: 1fr; }
}

/* ── Single product pagina ──────────────────────────────────────── */
.sp-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.sp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 20px;
  text-decoration: none !important;
  transition: color .12s;
}
.sp-back:hover { color: var(--ink); text-decoration: none !important; }

.sp-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Header */
.sp-header { display: flex; flex-direction: column; gap: 8px; }
.sp-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sp-sku    { font-size: 12px; color: var(--muted); font-family: monospace; }
.sp-title  { font-size: 20px; font-weight: 700; line-height: 1.3; margin: 0; }

/* Meta-rij: specs links, prijs rechts */
.sp-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sp-specs { display: flex; flex-direction: column; gap: 8px; }
.sp-spec  { display: flex; align-items: baseline; gap: 8px; }
.sp-spec__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--muted); white-space: nowrap; min-width: 90px;
}
.sp-spec__val { font-size: 14px; font-weight: 600; color: var(--ink); }

.sp-price-block { text-align: right; flex-shrink: 0; }
.sp-price { font-size: 26px; font-weight: 800; color: var(--roze); line-height: 1; }
.sp-price .woocommerce-Price-amount { font-size: inherit; color: inherit; }
.sp-price-unit { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* Pallet-box */
.sp-pallet-box {
  background: #f8f9fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
}
.sp-pallet-title {
  font-size: 13px; font-weight: 700; color: var(--ink);
  margin-bottom: 4px;
}
.sp-pallet-sub {
  font-size: 13px; color: var(--muted); margin-bottom: 14px;
}
.sp-pallet-table { display: flex; flex-direction: column; gap: 0; }
.sp-pallet-row {
  display: grid;
  grid-template-columns: 130px 140px 1fr;
  padding: 8px 0;
  font-size: 13.5px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.sp-pallet-row:last-child { border-bottom: none; }
.sp-pallet-head {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  padding-bottom: 6px;
}
.sp-pallet-row span:last-child { text-align: right; font-weight: 600; color: var(--ink); }

/* Bestelformulier */
.sp-order-section { display: flex; flex-direction: column; gap: 8px; }
.sp-order-label { font-size: 13px; font-weight: 700; color: var(--ink); }

/* Override WooCommerce form op single product */
.sp-card .quantity input.qty {
  width: 80px !important;
  padding: 10px 12px !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-align: center !important;
  color: var(--ink) !important;
}
.sp-card .single_add_to_cart_button {
  background: var(--roze) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  margin-left: 10px !important;
}
.sp-card .single_add_to_cart_button:hover { opacity: .88 !important; }
.sp-card form.cart { display: flex; align-items: center; gap: 0; }

/* Beschrijving */
.sp-description {
  font-size: 14px; color: var(--muted); line-height: 1.65;
  border-top: 1px solid var(--line); padding-top: 20px;
}
.sp-description p { margin-bottom: 10px; }
.sp-description p:last-child { margin-bottom: 0; }

/* Verberg WooCommerce tabs en reviews op single product */
.woocommerce-tabs,
.woocommerce-product-rating,
.woocommerce-review-link,
.woocommerce div.product .woocommerce-tabs { display: none !important; }

@media (max-width: 600px) {
  .sp-card { padding: 20px 16px; }
  .sp-meta-row { flex-direction: column; }
  .sp-price-block { text-align: left; }
  .sp-pallet-row { grid-template-columns: 100px 110px 1fr; font-size: 12.5px; }
}

/* ── Winkelwagen-link ───────────────────────────────────────────── */
.cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--roze); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 1;
  min-width: 18px; height: 18px; border-radius: 9px;
  padding: 0 5px; margin-left: 4px; vertical-align: middle;
}
