/* PEP SCHEP - Electric Modern | main.css */

:root{
  --bg:#FFFFFF;
  --surface:#F4F6FF;
  --ink:#0E1220;
  --muted:#5B6178;
  --line:#E4E8F5;
  --accent:#2E4BFF;
  --accent-ink:#1B2CB8;
  --font-display:"Clash Display","General Sans",system-ui,sans-serif;
  --font-body:"General Sans",system-ui,sans-serif;
  --xs:8px; --sm:16px; --md:28px; --lg:48px; --xl:88px;
  --r-sm:10px; --r-md:16px; --r-pill:999px;
  --container:1220px;
}

*,*::before,*::after{box-sizing:border-box}
:where(h1,h2,h3,h4,p,figure,ul,ol,blockquote){margin:0}
:where(ul,ol){padding:0;list-style:none}
:where(a){color:inherit;text-decoration:none}
:where(img){display:block;max-width:100%;height:auto}
:where(button){font:inherit;cursor:pointer;border:0;background:none}

html{-webkit-text-size-adjust:100%}
body.pepschep{
  margin:0;background:var(--bg);color:var(--ink);
  font-family:var(--font-body);font-weight:400;font-size:17px;line-height:1.6;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}

.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:24px}

h1,h2,h3,.display{font-family:var(--font-display);font-weight:600;line-height:1.04;letter-spacing:-0.015em}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  font-family:var(--font-body);font-weight:600;font-size:16px;line-height:1;
  padding:16px 26px;border-radius:var(--r-pill);transition:transform .15s ease, background-color .2s ease, box-shadow .2s ease;white-space:nowrap}
.btn:active{transform:translateY(1px)}
.btn--primary{background:var(--accent);color:#fff}
.btn--primary:hover{background:var(--accent-ink)}
.btn--ghost{background:#fff;color:var(--ink);box-shadow:inset 0 0 0 1.5px var(--ink)}
.btn--ghost:hover{background:var(--ink);color:#fff}
.btn--sm{padding:12px 18px;font-size:15px}

.site-header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.86);
  backdrop-filter:saturate(180%) blur(12px);border-bottom:1px solid var(--line)}
.site-header__bar{display:flex;align-items:center;justify-content:space-between;gap:var(--md);height:70px}
.brand{font-family:var(--font-display);font-weight:600;font-size:24px;letter-spacing:-.02em;color:var(--ink)}
.brand span{color:var(--accent)}
.mainnav{display:flex;gap:26px;font-weight:500;font-size:16px}
.mainnav a:hover{color:var(--accent)}
.header-actions{display:flex;align-items:center;gap:14px}
.icon-btn{display:inline-flex;align-items:center;gap:8px;font-weight:600;font-size:15px;color:var(--ink)}
.icon-btn:hover{color:var(--accent)}

.topstrip{background:var(--ink);color:#fff;font-weight:600;font-size:13.5px;letter-spacing:.01em}
.topstrip .container{display:flex;gap:34px;justify-content:center;align-items:center;height:38px;flex-wrap:wrap}
.topstrip b{color:#fff}
.topstrip .dot{width:5px;height:5px;border-radius:50%;background:var(--accent)}

.hero{padding:var(--lg) 0 var(--md)}
.hero__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:var(--lg);align-items:center}
.eyebrow{display:inline-flex;align-items:center;gap:8px;font-weight:600;font-size:13px;letter-spacing:.08em;text-transform:uppercase;color:var(--accent)}
.eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--accent)}
.hero__title{font-size:clamp(40px,6.4vw,74px);margin:18px 0 0}
.hero__title em{font-style:normal;color:var(--accent)}
.hero__sub{margin-top:20px;font-size:19px;color:var(--muted);max-width:34ch}
.hero__cta{display:flex;gap:14px;margin-top:30px;flex-wrap:wrap}
.hero__trust{display:flex;gap:22px;margin-top:26px;flex-wrap:wrap;color:var(--ink);font-weight:500;font-size:15px}
.hero__trust li{display:flex;align-items:center;gap:8px}
.hero__trust svg{width:18px;height:18px;color:var(--accent);flex:none}

.hero__visual{position:relative;aspect-ratio:1/1;border-radius:26px;
  background:radial-gradient(120% 120% at 70% 15%, #6E82FF 0%, var(--accent) 42%, #1B2CB8 100%);
  overflow:visible;box-shadow:0 30px 60px -30px rgba(46,75,255,.5)}
.hero__blob{position:absolute;inset:0;border-radius:26px;overflow:hidden}
.hero__blob::after{content:"";position:absolute;inset:0;
  background:radial-gradient(60% 60% at 50% 100%, rgba(0,0,0,.18), transparent 70%)}
.hero__prod{position:absolute;filter:drop-shadow(0 20px 30px rgba(11,18,40,.35))}
.hero__prod--main{width:66%;left:17%;top:14%;z-index:2;animation:floaty 6s ease-in-out infinite}
.hero__prod--a{width:38%;left:-7%;bottom:8%;z-index:3;animation:floaty 5s ease-in-out infinite .6s}
.hero__prod--b{width:34%;right:-6%;top:8%;z-index:3;animation:floaty 7s ease-in-out infinite .3s}
.hero__badge{position:absolute;right:-10px;bottom:26px;z-index:4;background:#fff;color:var(--ink);
  border-radius:var(--r-md);padding:12px 16px;box-shadow:0 14px 30px -12px rgba(11,18,40,.4);font-weight:600;line-height:1.1}
.hero__badge b{display:block;font-family:var(--font-display);font-size:22px;color:var(--accent)}
.hero__badge span{font-size:13px;color:var(--muted)}
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@media (prefers-reduced-motion:reduce){.hero__prod{animation:none!important}}

.section{padding:var(--xl) 0}
.section--tint{background:var(--surface)}
.section__head{display:flex;align-items:flex-end;justify-content:space-between;gap:var(--md);margin-bottom:var(--lg);flex-wrap:wrap}
.section__title{font-size:clamp(28px,3.6vw,44px)}
.section__title em{font-style:normal;color:var(--accent)}
.section__lead{color:var(--muted);max-width:44ch;margin-top:10px}
.seelink{font-weight:600;color:var(--accent)}
.seelink:hover{text-decoration:underline}

.catgrid{display:grid;grid-template-columns:repeat(6,1fr);gap:18px}
.cat{display:flex;flex-direction:column;align-items:center;gap:12px;padding:22px 12px;
  background:#fff;border:1px solid var(--line);border-radius:var(--r-md);text-align:center;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease}
.cat:hover{transform:translateY(-4px);box-shadow:0 18px 34px -22px rgba(11,18,40,.35);border-color:#cfd6f2}
.cat__img{width:88px;height:88px;object-fit:contain}
.cat__name{font-weight:600;font-size:15px}

.prodgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:var(--r-md);overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease}
.card:hover{transform:translateY(-5px);box-shadow:0 22px 40px -26px rgba(11,18,40,.4);border-color:#cfd6f2}
.card__media{position:relative;background:var(--surface);aspect-ratio:4/5;display:flex;align-items:center;justify-content:center;padding:16px}
.card__media img{max-height:100%;width:auto;object-fit:contain}
.card__sale{position:absolute;left:12px;top:12px;background:var(--accent);color:#fff;font-weight:700;font-size:12px;
  text-transform:uppercase;letter-spacing:.03em;padding:6px 10px;border-radius:var(--r-pill)}
.card__body{display:flex;flex-direction:column;gap:6px;padding:16px;flex:1}
.card__name{font-weight:600;font-size:16px}
.card__price{display:flex;align-items:baseline;gap:8px;margin-top:auto}
.card__price .now{font-family:var(--font-display);font-weight:600;font-size:20px}
.card__price .was{color:var(--muted);text-decoration:line-through;font-size:14px}
.card__cta{margin-top:12px}
.card__cta .btn{width:100%}

.why{display:grid;grid-template-columns:1.1fr 1fr;gap:var(--lg);align-items:center}
.why__panel{background:var(--ink);color:#fff;border-radius:24px;padding:44px}
.why__panel h2{font-size:clamp(26px,3vw,38px)}
.why__panel p{color:#c7ccdf;margin-top:14px;max-width:40ch}
.why__panel .btn{margin-top:26px}
.why__list{display:grid;gap:16px}
.why__item{display:flex;gap:16px;align-items:flex-start;padding:20px;border:1px solid var(--line);border-radius:var(--r-md);background:#fff}
.why__ico{flex:none;width:46px;height:46px;border-radius:12px;background:var(--surface);display:flex;align-items:center;justify-content:center;color:var(--accent)}
.why__ico svg{width:24px;height:24px}
.why__item h3{font-size:18px}
.why__item p{color:var(--muted);font-size:15px;margin-top:4px}

.reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.review{background:#fff;border:1px solid var(--line);border-radius:var(--r-md);padding:26px;display:flex;flex-direction:column;gap:12px}
.stars{color:#FFB020;font-size:17px;letter-spacing:2px}
.review p{font-size:16px}
.review__who{margin-top:auto;font-weight:600;font-size:14px;color:var(--ink)}
.review__who span{display:block;color:var(--muted);font-weight:400;font-size:13px}

.ctaband{background:radial-gradient(120% 140% at 15% 10%, #6E82FF, var(--accent) 55%, #1B2CB8);
  color:#fff;border-radius:28px;padding:clamp(36px,5vw,64px);text-align:center}
.ctaband h2{font-size:clamp(28px,4vw,46px)}
.ctaband p{color:#e5e9ff;margin:14px auto 0;max-width:46ch}
.ctaband .btn{margin-top:26px;background:#fff;color:var(--accent)}
.ctaband .btn:hover{background:var(--ink);color:#fff}

.site-footer{background:var(--ink);color:#c7ccdf;margin-top:var(--xl);padding:var(--lg) 0 30px}
.footcols{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:var(--md)}
.site-footer .brand{color:#fff}
.site-footer h4{color:#fff;font-family:var(--font-display);font-weight:600;font-size:16px;margin-bottom:12px}
.site-footer a:hover{color:#fff}
.footcols li{margin-bottom:8px;font-size:15px}
.footbottom{display:flex;justify-content:space-between;gap:16px;margin-top:var(--lg);padding-top:20px;border-top:1px solid rgba(255,255,255,.1);font-size:13.5px;flex-wrap:wrap}

.js .reveal{opacity:0;transform:translateY(18px)}
.js .reveal.is-in{opacity:1;transform:none;transition:opacity .6s ease, transform .6s ease}
@media (prefers-reduced-motion:reduce){.js .reveal{opacity:1!important;transform:none!important}}

@media (max-width:1024px){
  .catgrid{grid-template-columns:repeat(3,1fr)}
  .prodgrid{grid-template-columns:repeat(2,1fr)}
  .reviews{grid-template-columns:1fr}
}
@media (max-width:860px){
  .mainnav{display:none}
  .hero__grid{grid-template-columns:1fr;gap:var(--md)}
  .hero__visual{max-width:440px;margin-inline:auto}
  .why{grid-template-columns:1fr}
}
@media (max-width:560px){
  .catgrid{grid-template-columns:repeat(2,1fr)}
  .prodgrid{grid-template-columns:repeat(2,1fr)}
  .footcols{grid-template-columns:1fr 1fr}
  .section{padding:var(--lg) 0}
}


/* ============ WooCommerce archief ============ */
.woo{padding-bottom:var(--xl)}
.archive-head{background:var(--surface);border-bottom:1px solid var(--line);padding:36px 0}
.crumbs{font-size:13px;color:var(--muted);margin-bottom:10px}
.crumbs a:hover{color:var(--accent)}
.archive-title{font-size:clamp(28px,4vw,44px)}
.archive-desc{color:var(--muted);max-width:72ch;margin-top:10px}
.woo-body{padding-top:30px}

.shop-chips{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:22px}
.chip{display:inline-flex;align-items:center;gap:8px;padding:9px 15px;border:1px solid var(--line);border-radius:var(--r-pill);font-weight:600;font-size:14px;background:#fff;color:var(--ink);transition:border-color .15s ease,color .15s ease}
.chip span{color:var(--muted);font-weight:500;font-size:13px}
.chip:hover{border-color:var(--accent);color:var(--accent)}
.chip:hover span{color:var(--accent)}

.pepschep .woocommerce-result-count{color:var(--muted);font-size:14px;margin:0 0 18px;float:left}
.pepschep .woocommerce-ordering{margin:0 0 18px;float:right}
.pepschep .woocommerce-ordering select,.pepschep .orderby{font-family:var(--font-body);font-weight:600;font-size:14px;padding:11px 16px;border:1px solid var(--line);border-radius:var(--r-pill);background:#fff;color:var(--ink);cursor:pointer}

.pepschep .woocommerce ul.products,.pepschep ul.products{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin:0;padding:0;clear:both;list-style:none}
.pepschep ul.products li.product{width:auto;margin:0;padding:0;float:none;list-style:none}
.pepschep ul.products li.product::before,.pepschep ul.products li.product::after{display:none}
.card__link{display:flex;flex-direction:column;flex:1;color:inherit}
li.product.card .card__cta{padding:0 16px 16px;margin-top:auto}
.pepschep .card__price .amount{font-family:var(--font-display);font-weight:600;font-size:19px;color:var(--ink)}
.pepschep .card__price del{opacity:1;color:var(--muted);margin-right:6px}
.pepschep .card__price del .amount{font-size:14px;font-weight:400;color:var(--muted)}
.pepschep .card__price ins{text-decoration:none;background:none}
.pepschep .card__cta a.button,.pepschep .card__cta .button{display:block;width:100%;text-align:center;background:var(--accent);color:#fff;border-radius:var(--r-pill);font-family:var(--font-body);font-weight:600;font-size:15px;line-height:1;padding:13px 16px;border:0}
.pepschep .card__cta a.button:hover{background:var(--accent-ink)}
.pepschep .card__cta .added_to_cart{display:block;text-align:center;margin-top:8px;color:var(--accent);font-weight:600;font-size:13px}

.pepschep .woocommerce-pagination{margin-top:38px}
.pepschep .woocommerce-pagination ul{display:flex;gap:8px;justify-content:center;border:0;margin:0;padding:0}
.pepschep .woocommerce-pagination ul li{border:0;margin:0;overflow:visible}
.pepschep .woocommerce-pagination ul li a,.pepschep .woocommerce-pagination ul li span{display:inline-flex;align-items:center;justify-content:center;min-width:44px;height:44px;padding:0 12px;border:1px solid var(--line);border-radius:12px;font-weight:600;background:#fff;color:var(--ink)}
.pepschep .woocommerce-pagination ul li span.current{background:var(--accent);color:#fff;border-color:var(--accent)}
.pepschep .woocommerce-pagination ul li a:hover{border-color:var(--accent);color:var(--accent)}

@media (max-width:1024px){.pepschep .woocommerce ul.products,.pepschep ul.products{grid-template-columns:repeat(3,1fr)}}
@media (max-width:760px){.pepschep .woocommerce ul.products,.pepschep ul.products{grid-template-columns:repeat(2,1fr)}.archive-head{padding:26px 0}}


/* ============ Cart-icoon + mobiel menu ============ */
.header-actions .icon-btn{position:relative}
.header-actions .icon-btn svg{display:block}
.cart-count{position:absolute;top:-8px;right:-10px;min-width:18px;height:18px;padding:0 5px;border-radius:var(--r-pill);background:var(--accent);color:#fff;font-size:11px;font-weight:700;display:inline-flex;align-items:center;justify-content:center;line-height:1}

.menu-toggle{display:none;flex-direction:column;gap:5px;padding:10px;margin-left:-10px;background:none;border:0}
.menu-toggle span{width:24px;height:2.5px;background:var(--ink);border-radius:2px;display:block}

.mdrawer{position:fixed;inset:0;z-index:100;visibility:hidden;pointer-events:none}
.mdrawer__overlay{position:absolute;inset:0;background:rgba(14,18,32,.5);opacity:0;transition:opacity .28s ease}
.mdrawer__panel{position:absolute;top:0;right:0;height:100%;width:min(86vw,380px);background:#fff;transform:translateX(100%);transition:transform .3s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;box-shadow:-20px 0 60px -30px rgba(11,18,40,.5)}
.mdrawer.is-open{visibility:visible;pointer-events:auto}
.mdrawer.is-open .mdrawer__overlay{opacity:1}
.mdrawer.is-open .mdrawer__panel{transform:none}
.mdrawer__head{display:flex;align-items:center;justify-content:space-between;padding:18px 22px;border-bottom:1px solid var(--line)}
.mdrawer__close{font-size:30px;line-height:1;color:var(--ink);padding:2px 8px;background:none;border:0}
.mdrawer__close:hover{color:var(--accent)}
.mdrawer__nav{display:flex;flex-direction:column;overflow-y:auto;flex:1}
.mdrawer__nav a{display:flex;align-items:center;justify-content:space-between;padding:16px 22px;font-family:var(--font-display);font-weight:600;font-size:18px;color:var(--ink);border-bottom:1px solid var(--line)}
.mdrawer__nav a span{color:var(--muted);font-size:22px}
.mdrawer__nav a:hover{color:var(--accent);background:var(--surface)}
.mdrawer__foot{padding:18px 22px;border-top:1px solid var(--line)}
.mdrawer__foot .btn{width:100%}
body.menu-open{overflow:hidden}
@media (max-width:860px){.menu-toggle{display:flex}.site-header__bar{position:relative}.brand{position:absolute;left:50%;transform:translateX(-50%)}}


/* ============ Winkelmand & checkout pagina ============ */
.woocommerce-cart .woo-body,.woocommerce-checkout .woo-body,.woocommerce-account .woo-body{padding-top:36px}
.pepschep .woocommerce .button,.pepschep .woocommerce a.button,.pepschep .woocommerce button.button,.pepschep .woocommerce input.button{background:var(--accent);color:#fff;border-radius:var(--r-pill);font-family:var(--font-body);font-weight:600;font-size:15px;padding:13px 22px;border:0;line-height:1.1}
.pepschep .woocommerce .button:hover,.pepschep .woocommerce a.button:hover,.pepschep .woocommerce button.button:hover,.pepschep .woocommerce input.button:hover{background:var(--accent-ink)}
.pepschep .woocommerce .button.alt,.pepschep .woocommerce .checkout-button{background:var(--accent)}
.pepschep .woocommerce table.shop_table{border:1px solid var(--line);border-radius:var(--r-md);border-collapse:separate;overflow:hidden;background:#fff}
.pepschep .woocommerce table.shop_table th{font-family:var(--font-display);font-weight:600;color:var(--ink)}
.pepschep .woocommerce table.shop_table td,.pepschep .woocommerce table.shop_table th{border-top:1px solid var(--line);padding:16px}
.pepschep .woocommerce .cart_totals h2,.pepschep .woocommerce-checkout h3{font-family:var(--font-display);font-weight:600}
.pepschep .woocommerce .quantity input.qty{border:1px solid var(--line);border-radius:var(--r-sm);padding:10px;width:64px;font-weight:600}
.pepschep .woocommerce form .form-row input.input-text,.pepschep .woocommerce form .form-row textarea,.pepschep .woocommerce .select2-selection,.pepschep .woocommerce form .form-row select{border:1px solid var(--line);border-radius:var(--r-sm);padding:12px 14px;font-family:var(--font-body)}
.pepschep .woocommerce form .form-row input.input-text:focus,.pepschep .woocommerce form .form-row textarea:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(46,75,255,.15)}
.pepschep .woocommerce .coupon input.input-text{border:1px solid var(--line);border-radius:var(--r-pill);padding:12px 18px}
.pepschep .woocommerce .cart-collaterals .cart_totals,.pepschep .woocommerce-checkout #order_review{border:1px solid var(--line);border-radius:var(--r-md);padding:8px 20px;background:var(--surface)}
.pepschep .woocommerce .woocommerce-message,.pepschep .woocommerce .woocommerce-info{border-top-color:var(--accent)}
.pepschep .woocommerce a{color:var(--accent)}
.pepschep .woocommerce .cart_totals .order-total .amount,.pepschep .woocommerce .wc-block-components-totals-item__value{font-family:var(--font-display);font-weight:600;color:var(--ink)}


/* ============ Archief mobiel fixes ============ */
@media (max-width:600px){
  .pepschep .woocommerce-result-count{float:none;display:block;width:100%;margin:0 0 12px;font-size:13.5px}
  .pepschep .woocommerce-ordering{float:none;display:block;width:100%;margin:0 0 18px}
  .pepschep .woocommerce-ordering select,.pepschep .orderby{width:100%;display:block}
  .woo-body{padding-top:22px}
  .shop-chips{gap:8px;margin-bottom:18px;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:4px;scrollbar-width:none}
  .shop-chips::-webkit-scrollbar{display:none}
  .chip{flex:0 0 auto}
  .pepschep .woocommerce ul.products,.pepschep ul.products{gap:14px}
  .card__body{padding:14px}
  li.product.card .card__cta{padding:0 14px 14px}
  .pepschep .card__cta a.button,.pepschep .card__cta .button{font-size:14px;padding:12px 12px}
}
@media (max-width:380px){
  .pepschep .woocommerce ul.products,.pepschep ul.products{grid-template-columns:1fr}
}


/* ============ Roterende topbar ============ */
.topstrip .container{display:block;height:38px;padding-block:0;overflow:hidden}
.topstrip__viewport{height:38px;overflow:hidden;position:relative}
.topstrip__rotator{margin:0;padding:0;list-style:none;animation:tsroll 15s cubic-bezier(.7,0,.3,1) infinite}
.topstrip__rotator li{height:38px;display:flex;align-items:center;justify-content:center;gap:6px;white-space:nowrap;text-align:center;font-size:13.5px;font-weight:600;color:#fff}
@keyframes tsroll{
  0%,15%{transform:translateY(0)}
  20%,35%{transform:translateY(-38px)}
  40%,55%{transform:translateY(-76px)}
  60%,75%{transform:translateY(-114px)}
  80%,95%{transform:translateY(-152px)}
  100%{transform:translateY(-190px)}
}
@media (prefers-reduced-motion:reduce){.topstrip__rotator{animation:none}}

/* ============ Archief: intro + longread ============ */
.archive-intro{color:var(--muted);max-width:66ch;margin-top:10px;font-size:16px}
.archive-longread{padding:var(--lg) 0}
.longread{max-width:72ch;margin-inline:auto;color:var(--muted)}
.longread h1,.longread h2{font-family:var(--font-display);font-weight:600;color:var(--ink);font-size:clamp(21px,2.4vw,27px);line-height:1.2;margin:26px 0 10px}
.longread h3,.longread h4{font-family:var(--font-display);font-weight:600;color:var(--ink);font-size:19px;line-height:1.25;margin:20px 0 8px}
.longread p{margin:0 0 14px;font-size:16px;line-height:1.7}
.longread a{color:var(--accent);font-weight:600}
.longread ul,.longread ol{margin:0 0 14px;padding-left:20px;list-style:disc}
.longread ol{list-style:decimal}
.longread li{margin-bottom:6px}
.longread img{border-radius:var(--r-md);margin:16px 0}
@media (max-width:600px){
  .archive-longread{padding:var(--md) 0}
  .longread h1,.longread h2{font-size:20px}
  .longread h3,.longread h4{font-size:17px}
  .longread p,.longread li{font-size:15.5px}
  .archive-intro{font-size:15px}
}


/* ============ YITH filterknop in merkstijl ============ */
.pepschep .yith-wcan-filters-opener{display:inline-flex;align-items:center;gap:8px;background:#fff;color:var(--ink);border:1px solid var(--line);border-radius:var(--r-pill);font-family:var(--font-body);font-weight:600;font-size:14px;padding:11px 18px;margin:0 0 18px}
.pepschep .yith-wcan-filters-opener:hover{border-color:var(--accent);color:var(--accent)}
.pepschep .yith-wcan-filters-opener .filter-icon{width:15px;height:15px;display:inline-block;background:currentColor;-webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 5h18M6 12h12M10 19h4'/></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='M3 5h18M6 12h12M10 19h4'/></svg>") center/contain no-repeat}

/* Archieftitel binnen de loop verbergen (dubbel) */
.pepschep .woo-body > h1.page-title,.pepschep .woo-body > .woocommerce-products-header{display:none}

/* Toolbar-rij netjes uitlijnen */
.pepschep .woo-body{display:block}
.pepschep .woocommerce-notices-wrapper:empty{display:none}
@media (max-width:600px){
  .pepschep .yith-wcan-filters-opener{width:100%;justify-content:center;margin-bottom:12px}
}


/* ============ Infinite scroll ============ */
.loadmore{display:flex;flex-direction:column;align-items:center;gap:12px;margin-top:38px;min-height:52px}
.loadmore__btn{min-width:240px}
.loadmore__spinner{display:inline-flex;gap:6px;align-items:center;height:52px}
.loadmore__spinner i{width:9px;height:9px;border-radius:50%;background:var(--accent);display:block;animation:pepbounce 1s ease-in-out infinite}
.loadmore__spinner i:nth-child(2){animation-delay:.15s}
.loadmore__spinner i:nth-child(3){animation-delay:.3s}
@keyframes pepbounce{0%,100%{transform:translateY(0);opacity:.4}50%{transform:translateY(-7px);opacity:1}}
@media (prefers-reduced-motion:reduce){.loadmore__spinner i{animation:none}}
.pep-restoring{position:fixed;left:50%;bottom:22px;transform:translateX(-50%);z-index:120;background:var(--ink);color:#fff;font-weight:600;font-size:14px;padding:12px 20px;border-radius:var(--r-pill);box-shadow:0 16px 34px -18px rgba(11,18,40,.6)}

/* ============ Mobiele correcties ============ */
/* Geen horizontale overflow meer (paginatie vervalt, maar blijf veilig) */
html,body.pepschep{overflow-x:hidden;max-width:100%}
.pepschep .woocommerce-pagination ul{flex-wrap:wrap}

/* Header beter leesbaar boven content */
.site-header{background:rgba(255,255,255,.97)}

/* Drawer buiten beeld houden zonder overflow te veroorzaken */
.mdrawer{overflow:hidden}
.mdrawer__panel{will-change:transform}

/* Intro compact op mobiel: geen halve pagina tekst boven de producten */
@media (max-width:760px){
  .archive-intro{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
}


/* ============ FIXES v2 ============ */

/* 1. WooCommerce clearfix-pseudo's worden grid-cellen -> lege plek bij product 1 */
.pepschep ul.products::before,
.pepschep ul.products::after,
.pepschep .woocommerce ul.products::before,
.pepschep .woocommerce ul.products::after{content:none!important;display:none!important}
.pepschep ul.products li.product.first{clear:none}

/* 2. Nooit 1 kolom op telefoons: altijd 2 naast elkaar */
@media (max-width:380px){
  .pepschep .woocommerce ul.products,.pepschep ul.products{grid-template-columns:repeat(2,1fr);gap:12px}
  .card__body{padding:12px}
  .card__name{font-size:15px}
  .pepschep .card__price .amount{font-size:17px}
  li.product.card .card__cta{padding:0 12px 12px}
  .pepschep .card__cta a.button,.pepschep .card__cta .button{font-size:13.5px;padding:11px 8px}
}

/* 3. Prijs mag nooit uit de kaart lopen (sale = 2 prijzen) */
.card__price{flex-wrap:wrap;row-gap:2px}
.pepschep .card__price del,.pepschep .card__price ins{display:inline-block;max-width:100%}

/* 4. Gecentreerd logo alleen in de header, niet in de footer */
@media (max-width:860px){
  .brand{position:static;transform:none}
  .site-header__bar > .brand{position:absolute;left:50%;transform:translateX(-50%)}
}

/* 5. Mobiel menu klapt links uit */
.mdrawer__panel{left:0;right:auto;transform:translateX(-100%);box-shadow:20px 0 60px -30px rgba(11,18,40,.5)}

/* 6. Lees meer / lees minder op de categorie-intro */
.archive-intro{display:block;overflow:visible;-webkit-line-clamp:none}
.archive-intro__text{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.archive-intro.is-open .archive-intro__text{display:block;-webkit-line-clamp:none;overflow:visible}
.archive-intro__toggle{display:inline-flex;align-items:center;gap:6px;margin-top:8px;background:none;border:0;padding:0;color:var(--accent);font-family:var(--font-body);font-weight:600;font-size:15px;cursor:pointer}
.archive-intro__toggle:hover{text-decoration:underline}
.archive-intro__toggle::after{content:"";width:8px;height:8px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg) translateY(-2px);transition:transform .2s ease}
.archive-intro.is-open .archive-intro__toggle::after{transform:rotate(-135deg) translateY(0)}

/* 7. Minder loze ruimte voor de footer */
.woo{padding-bottom:0}
.archive-longread + .site-footer,.site-footer{margin-top:0}
.woo > .woo-body:last-child{padding-bottom:var(--xl)}

/* 8. Screen-reader tekst netjes verbergen (los van Woo-CSS) */
.pepschep .screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}


/* ============ FIX v3: WooCommerce kolombreedte overrulen ============ */
/* Woo forceert width:48% + float via [class*="columns-"] (specificiteit 0-4-2). */
.pepschep .woocommerce ul.products[class*="columns-"] li.product,
.pepschep ul.products[class*="columns-"] li.product,
.woocommerce.pepschep ul.products[class*="columns-"] li.product{
  width:auto!important;
  float:none!important;
  margin:0!important;
  clear:none!important;
}
.pepschep ul.products[class*="columns-"]{margin:0!important;padding:0!important}


/* ============ Mobiel menu met iconen ============ */
.mdrawer__nav{padding:0}
.mnav{margin:0;padding:0;list-style:none}
.mnav__item{border-bottom:1px solid var(--line)}
.mnav__row{display:flex;align-items:center;gap:14px;width:100%;padding:13px 20px;background:none;border:0;text-align:left;
  font-family:var(--font-body);font-weight:600;font-size:16px;color:var(--ink);cursor:pointer;line-height:1.25}
.mnav__row:hover{background:var(--surface);color:var(--accent)}
.mnav__ico{width:34px;height:34px;flex:none;object-fit:contain;border-radius:8px}
.mnav__ico--empty{background:var(--surface)}
.mnav__label{flex:1;min-width:0}
.mnav__arrow,.mnav__chev{flex:none;width:9px;height:9px;border-right:2px solid var(--muted);border-bottom:2px solid var(--muted);transform:rotate(-45deg)}
.mnav__chev{transform:rotate(45deg);transition:transform .2s ease}
.mnav__toggle[aria-expanded="true"] .mnav__chev{transform:rotate(-135deg)}
.mnav__toggle[aria-expanded="true"]{color:var(--accent);background:var(--surface)}
.mnav__sub{list-style:none;margin:0;padding:2px 0 10px;background:var(--surface)}
.mnav__subrow{display:block;padding:10px 20px 10px 68px;font-size:15px;font-weight:500;color:var(--muted)}
.mnav__subrow:hover{color:var(--accent)}
.mnav__subrow--deep{padding-left:84px;font-size:14.5px;opacity:.9}
.mdrawer__panel{width:min(90vw,400px)}

/* Productnaam nooit buiten de kaart */
.card__name{overflow-wrap:anywhere;hyphens:auto}


/* ============ FIX v4: menu-uitlijning + CTA-knop ============ */
/* De oude drawer-regel (.mdrawer__nav a) overschreef de nieuwe menurijen. */
.mdrawer__nav a{display:block;padding:0;font-family:var(--font-body);font-size:inherit;font-weight:inherit;border-bottom:0}
.mdrawer__nav .mnav__row,
.mdrawer__nav a.mnav__row{display:flex;align-items:center;gap:14px;width:100%;padding:13px 20px;
  font-family:var(--font-body);font-weight:600;font-size:16px;color:var(--ink);border-bottom:0}
.mdrawer__nav a.mnav__row:hover{background:var(--surface);color:var(--accent)}
.mdrawer__nav .mnav__subrow,
.mdrawer__nav a.mnav__subrow{display:block;padding:9px 20px 9px 68px;font-size:15px;font-weight:500;color:var(--muted);border-bottom:0}
.mdrawer__nav a.mnav__subrow--deep{padding-left:84px;font-size:14.5px}
.mdrawer__nav a.mnav__subrow:hover{color:var(--accent)}
.mnav__sub{padding:2px 0 8px}

/* Knop in de CTA-band nooit breder dan het scherm */
.ctaband .btn{max-width:100%;white-space:normal;text-align:center;line-height:1.25;padding-inline:22px}
@media (max-width:560px){.ctaband .btn{width:100%}}


/* ============================================================
   FLYOUT MENU / ZOEKBALK / CLEANE PRODUCTFOTO'S
   ============================================================ */

/* ---- Zoekbalk in de mobiele lade ---- */
.msearch{display:flex;align-items:center;gap:8px;padding:14px 20px;border-bottom:1px solid var(--line);background:#fff;flex:none}
.msearch input[type="search"]{flex:1;min-width:0;font-family:var(--font-body);font-size:15px;padding:12px 16px;
  border:1px solid var(--line);border-radius:var(--r-pill);background:var(--surface);color:var(--ink);-webkit-appearance:none}
.msearch input[type="search"]:focus{outline:none;border-color:var(--accent);background:#fff;box-shadow:0 0 0 3px rgba(46,75,255,.14)}
.msearch button{flex:none;width:44px;height:44px;border-radius:50%;background:var(--accent);color:#fff;
  display:inline-flex;align-items:center;justify-content:center}
.msearch button svg{width:19px;height:19px}
.msearch button:hover{background:var(--accent-ink)}

/* ---- Zoekbalk onder de header ---- */
.hsearch{border-top:1px solid var(--line);background:#fff}
.hsearch form{display:flex;gap:10px;align-items:center;padding:14px 0}
.hsearch input[type="search"]{flex:1;min-width:0;font-family:var(--font-body);font-size:16px;padding:14px 18px;
  border:1px solid var(--line);border-radius:var(--r-pill);background:var(--surface);color:var(--ink);-webkit-appearance:none}
.hsearch input[type="search"]:focus{outline:none;border-color:var(--accent);background:#fff;box-shadow:0 0 0 3px rgba(46,75,255,.14)}

/* ---- Flyout-panelen ---- */
.mviews{position:relative;flex:1;overflow:hidden}
.mview{position:absolute;inset:0;overflow-y:auto;-webkit-overflow-scrolling:touch;background:#fff;
  transform:translateX(100%);visibility:hidden;transition:transform .28s cubic-bezier(.4,0,.2,1),visibility .28s}
.mview--root{transform:translateX(0);visibility:visible}
.mview.is-active{transform:translateX(0);visibility:visible}
.mviews.is-sub .mview--root{transform:translateX(-28%);visibility:hidden}

.mview__back{display:flex;align-items:center;gap:12px;width:100%;padding:15px 20px;background:var(--surface);
  border:0;border-bottom:1px solid var(--line);font-family:var(--font-display);font-weight:600;font-size:17px;
  color:var(--ink);cursor:pointer;position:sticky;top:0;z-index:2}
.mview__back:hover{color:var(--accent)}
.mview__backarrow{flex:none;width:9px;height:9px;border-left:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg)}

/* ---- Menurijen ---- */
.mdrawer__nav{padding:0;display:flex;flex-direction:column;overflow:hidden;flex:1}
.mnav{margin:0;padding:0;list-style:none}
.mnav__item{border-bottom:1px solid var(--line)}
.mdrawer__nav .mnav__row,
.mdrawer__nav a.mnav__row,
.mdrawer__nav button.mnav__row{display:flex;align-items:center;gap:14px;width:100%;padding:11px 20px;
  background:none;border:0;border-bottom:0;text-align:left;font-family:var(--font-body);font-weight:600;
  font-size:16px;color:var(--ink);cursor:pointer;line-height:1.25}
.mdrawer__nav .mnav__row:hover{background:var(--surface);color:var(--accent)}
.mnav__ico{width:38px;height:38px;flex:none;object-fit:contain;border-radius:9px;background:var(--surface)}
.mnav__ico--empty{background:var(--surface)}
.mnav__label{flex:1;min-width:0}
.mnav__arrow{flex:none;width:8px;height:8px;border-right:2px solid var(--muted);border-bottom:2px solid var(--muted);transform:rotate(-45deg)}
.mnav__row--all{color:var(--accent)}
.mdrawer__nav a.mnav__row--deep{padding-left:72px;font-weight:500;font-size:14.5px;color:var(--muted)}

/* ---- Klantenservice onderin het hoofdmenu ---- */
.mnav__service{padding:20px;background:var(--surface);border-top:1px solid var(--line)}
.mnav__servicehead{display:block;font-family:var(--font-display);font-weight:600;font-size:13px;letter-spacing:.06em;
  text-transform:uppercase;color:var(--muted);margin-bottom:10px}
.mnav__service ul{list-style:none;margin:0;padding:0}
.mnav__service li{margin-bottom:8px}
.mnav__service a{font-weight:600;font-size:15px;color:var(--ink)}
.mnav__service a:hover{color:var(--accent)}

/* ---- Cleane productfoto's ---- */
.card{border-radius:18px}
.card__media{background:#F2F3F7;padding:18px}
.card__media img{mix-blend-mode:multiply}
.card__body{padding:16px 16px 8px}
.card__name{font-family:var(--font-display);font-weight:600;font-size:16px;color:var(--ink)}
@media (max-width:600px){.card__media{padding:12px}}


/* ============ Contactpagina ============ */
.chero{background:var(--surface);border-bottom:1px solid var(--line);padding:44px 0}
.chero__title{font-size:clamp(30px,4.6vw,52px);margin-top:8px}
.chero__title em{font-style:normal;color:var(--accent)}
.chero__sub{color:var(--muted);max-width:56ch;margin-top:14px;font-size:17px}

.ccards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.ccard{display:block;background:#fff;border:1px solid var(--line);border-radius:var(--r-md);padding:24px;
  transition:border-color .16s ease,transform .16s ease,box-shadow .16s ease}
.ccard:hover{border-color:var(--accent);transform:translateY(-3px);box-shadow:0 18px 34px -24px rgba(11,18,40,.4)}
.ccard__ico{width:46px;height:46px;border-radius:12px;background:var(--surface);color:var(--accent);
  display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.ccard__ico svg{width:22px;height:22px}
.ccard b{display:block;font-family:var(--font-display);font-weight:600;font-size:18px;margin-bottom:6px}
.ccard p{color:var(--muted);font-size:15px;margin-bottom:12px;line-height:1.55}
.ccard__val{font-weight:600;font-size:15px;color:var(--accent)}
.ccard--chat{border-color:#cfd6f2;background:linear-gradient(180deg,#fff, #FAFBFF)}
.cpill{display:inline-block;font-size:11.5px;font-weight:700;padding:3px 9px;border-radius:var(--r-pill);
  background:var(--accent);color:#fff;margin-left:6px;vertical-align:2px;letter-spacing:.02em}
.cpill--soft{background:var(--surface);color:var(--accent)}

.ctwo{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:22px}
.cpanel{border:1px solid var(--line);border-radius:var(--r-md);padding:24px;background:#fff}
.cpanel__head{font-family:var(--font-display);font-weight:600;font-size:13px;letter-spacing:.07em;
  text-transform:uppercase;color:var(--muted);margin-bottom:14px}
.crow{display:flex;justify-content:space-between;gap:14px;font-size:15.5px;padding:10px 0;border-bottom:1px solid var(--line)}
.crow:last-child{border-bottom:0}
.crow span:first-child{color:var(--muted)}
.crow span:last-child{font-weight:600;text-align:right}
.crow--off span:last-child{color:var(--muted);font-weight:400}
.caddr{color:var(--muted);font-size:15.5px;line-height:1.75;margin-bottom:14px}

.cinfo{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.cinfo__item{display:block;background:#fff;border:1px solid var(--line);border-radius:var(--r-md);padding:22px;transition:border-color .16s ease,transform .16s ease}
.cinfo__item:hover{border-color:var(--accent);transform:translateY(-3px)}
.cinfo__item b{display:block;font-family:var(--font-display);font-weight:600;font-size:16.5px;margin-bottom:6px}
.cinfo__item p{color:var(--muted);font-size:14.5px;line-height:1.55;margin-bottom:10px}
.cinfo__item span{font-weight:600;font-size:14.5px;color:var(--accent)}

.cbulk{background:radial-gradient(120% 140% at 12% 10%, #6E82FF, var(--accent) 58%, #1B2CB8);color:#fff;
  border-radius:24px;padding:clamp(28px,4vw,44px);display:flex;gap:26px;align-items:center;
  justify-content:space-between;flex-wrap:wrap}
.cbulk h2{font-size:clamp(22px,2.6vw,30px)}
.cbulk p{color:#e5e9ff;margin-top:8px;max-width:58ch;font-size:15.5px}
.cbulk .btn{background:#fff;color:var(--accent)}
.cbulk .btn:hover{background:var(--ink);color:#fff}

@media (max-width:960px){
  .ccards{grid-template-columns:1fr}
  .ctwo{grid-template-columns:1fr}
  .cinfo{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .cinfo{grid-template-columns:1fr}
  .chero{padding:30px 0}
  .cbulk .btn{width:100%}
}


/* ============ Side cart in merkstijl ============ */
#fkcart-modal .fkcart-slider-heading,
#fkcart-modal .fkcart-title{font-family:var(--font-display)!important;font-weight:600!important;color:var(--ink)!important}
#fkcart-modal .fkcart-item-title,
#fkcart-modal .fkcart--item-heading{font-family:var(--font-display)!important;font-weight:600!important}
#fkcart-modal,#fkcart-modal .fkcart-slider-body{font-family:var(--font-body)!important}

/* Bezorgbelofte-balk */
.pep-cartnote{display:flex;align-items:center;gap:10px;background:#EEF9F1;border:1px solid #CFEBD8;color:#146C3A;
  border-radius:12px;padding:11px 14px;font-size:14px;font-weight:500;line-height:1.35;margin:0 0 12px}
.pep-cartnote b{font-weight:700}
.pep-cartnote__ico{flex:none;display:inline-flex;color:#1B8A4B}
.pep-cartnote__ico svg{width:20px;height:20px}

/* Gratis-verzending regel */
.pep-freeship{display:flex;align-items:center;gap:8px;margin:0 0 12px;font-size:14.5px;font-weight:600;color:var(--muted)}
.pep-freeship.is-ok{color:#146C3A}
.pep-freeship .amount{color:var(--accent)}
.pep-check{flex:none;width:14px;height:9px;border-left:2.4px solid currentColor;border-bottom:2.4px solid currentColor;transform:rotate(-45deg);margin-top:-4px}

/* Tweede knop onder Afrekenen */
.pep-viewcart{display:block;width:100%;text-align:center;margin-top:10px;padding:14px 18px;
  border-radius:var(--r-pill);background:#fff;color:var(--ink);font-family:var(--font-body);font-weight:600;
  font-size:15.5px;box-shadow:inset 0 0 0 1.5px var(--ink);transition:background .18s ease,color .18s ease}
.pep-viewcart:hover{background:var(--ink);color:#fff}

/* Afrekenen-knop */
#fkcart-modal .fkcart-checkout-button,
#fkcart-modal .fkcart-slider-footer .fkcart-btn{border-radius:var(--r-pill)!important;font-family:var(--font-body)!important;
  font-weight:700!important;font-size:16px!important;padding:15px 20px!important}

/* Order bump met stippellijn */
#fkcart-modal .fkcart-spl-addon,
#fkcart-modal .fkcart-special-addon{border:2px dashed var(--accent)!important;border-radius:14px!important;background:var(--surface)!important;padding:12px!important}
#fkcart-modal .fkcart-spl-addon .fkcart-item-title{font-size:15px!important}

/* Hoeveelheid-stepper */
#fkcart-modal .fkcart-quantity-selector{border:1px solid var(--line)!important;border-radius:var(--r-pill)!important}
#fkcart-modal .fkcart-remove-item,
#fkcart-modal .fkcart-item-remove a{color:var(--muted)!important;text-decoration:underline!important;font-size:13.5px!important}
#fkcart-modal .fkcart-remove-item:hover{color:var(--accent)!important}


/* Winkelmand-teller: verbergen als de mand leeg is */
.cart-count.is-empty{display:none}


/* ============ Eigen side cart ============ */
.scart{position:fixed;inset:0;z-index:200;visibility:hidden;pointer-events:none}
.scart__overlay{position:absolute;inset:0;background:rgba(14,18,32,.5);opacity:0;transition:opacity .28s ease}
.scart__panel{position:absolute;top:0;right:0;height:100%;width:min(94vw,430px);background:#fff;
  transform:translateX(100%);transition:transform .3s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;
  box-shadow:-24px 0 60px -34px rgba(11,18,40,.55)}
.scart.is-open{visibility:visible;pointer-events:auto}
.scart.is-open .scart__overlay{opacity:1}
.scart.is-open .scart__panel{transform:none}
body.scart-open{overflow:hidden}
.scart.is-busy .scart__panel{cursor:progress}
.scart.is-busy .scart__body{opacity:.55;transition:opacity .15s ease}

.scart__head{display:flex;align-items:center;justify-content:space-between;padding:20px 22px;border-bottom:1px solid var(--line);flex:none}
.scart__head h2{font-family:var(--font-display);font-weight:600;font-size:24px;color:var(--ink)}
.scart__close{font-size:30px;line-height:1;color:var(--ink);padding:0 6px;background:none;border:0}
.scart__close:hover{color:var(--accent)}

.scart__body{flex:1;overflow-y:auto;-webkit-overflow-scrolling:touch;display:flex;flex-direction:column}
.scart__items{padding:6px 22px 0}
.scart__item{display:flex;gap:14px;padding:18px 0;border-bottom:1px solid var(--line)}
.scart__thumb{flex:none;width:84px;height:84px;border-radius:12px;background:#F2F3F7;display:flex;align-items:center;justify-content:center;overflow:hidden}
.scart__thumb img{width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply}
.scart__info{flex:1;min-width:0;display:flex;flex-direction:column;gap:4px}
.scart__name{font-family:var(--font-display);font-weight:600;font-size:16px;color:var(--ink);overflow-wrap:anywhere}
.scart__name:hover{color:var(--accent)}
.scart__price{font-family:var(--font-display);font-weight:600;font-size:18px;color:var(--ink)}
.scart__row{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:6px}
.scart__qty{display:inline-flex;align-items:center;gap:2px;border:1px solid var(--line);border-radius:var(--r-pill);padding:2px}
.scart__qty button{width:32px;height:32px;border-radius:50%;font-size:17px;font-weight:600;color:var(--ink);
  display:inline-flex;align-items:center;justify-content:center;background:none;border:0}
.scart__qty button:hover{background:var(--surface);color:var(--accent)}
.scart__qty span{min-width:26px;text-align:center;font-weight:600;font-size:15px}
.scart__remove{background:none;border:0;color:var(--muted);font-size:13.5px;text-decoration:underline;padding:0}
.scart__remove:hover{color:var(--accent)}

/* Kassakoopje */
.scart__bump{display:flex;align-items:center;gap:12px;margin:16px 22px 0;padding:12px;
  border:2px dashed var(--accent);border-radius:14px;background:var(--surface)}
.scart__bumpimg{flex:none;width:56px;height:56px;border-radius:10px;object-fit:contain;background:#fff}
.scart__bumptext{flex:1;min-width:0}
.scart__bumptext b{display:block;font-family:var(--font-display);font-weight:600;font-size:15.5px;color:var(--ink)}
.scart__bumptext span{display:block;font-size:13.5px;color:var(--muted);margin-top:2px}
.scart__bumpbtn{flex:none;background:var(--accent);color:#fff;border:0;border-radius:var(--r-pill);
  font-family:var(--font-body);font-weight:700;font-size:14.5px;padding:11px 16px;white-space:nowrap}
.scart__bumpbtn:hover{background:var(--accent-ink)}
.scart__bumpbtn .amount{color:#fff}

/* Voettekst */
.scart__foot{margin-top:auto;padding:18px 22px 22px;border-top:1px solid var(--line);background:#fff;flex:none}
.scart__totals{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin:0 0 8px;font-size:16px}
.scart__total{font-family:var(--font-display);font-weight:600;font-size:20px;color:var(--ink)}
.scart__bar{height:6px;border-radius:99px;background:var(--line);overflow:hidden;margin:0 0 14px}
.scart__bar i{display:block;height:100%;background:var(--accent);border-radius:99px;transition:width .3s ease}
.scart__checkout{width:100%}

/* Leeg */
.scart__empty{padding:56px 24px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:8px}
.scart__emptytitle{font-family:var(--font-display);font-weight:600;font-size:20px;color:var(--ink)}
.scart__emptytext{color:var(--muted);margin-bottom:12px}


/* ============ Filters (YITH) ============ */
/* Eigen knop; YITH's standaardknop verbergen */
.pepschep .yith-wcan-filters-opener,
.pepschep .yith-wcan-mobile-modal-opener{display:none!important}

.filterbtn{display:inline-flex;align-items:center;gap:9px;background:#fff;color:var(--ink);
  border:1px solid var(--line);border-radius:var(--r-pill);font-family:var(--font-body);font-weight:600;
  font-size:14.5px;padding:11px 18px;margin:0 12px 18px 0;cursor:pointer;transition:border-color .15s ease,color .15s ease}
.filterbtn:hover{border-color:var(--accent);color:var(--accent)}
.filterbtn svg{width:16px;height:16px}
.filterbtn__count{display:inline-flex;align-items:center;justify-content:center;min-width:20px;height:20px;
  padding:0 6px;border-radius:var(--r-pill);background:var(--accent);color:#fff;font-size:12px;font-weight:700}

.pfilters{position:fixed;inset:0;z-index:190;visibility:hidden;pointer-events:none}
.pfilters__overlay{position:absolute;inset:0;background:rgba(14,18,32,.5);opacity:0;transition:opacity .28s ease}
.pfilters__panel{position:absolute;top:0;left:0;height:100%;width:min(94vw,420px);background:#fff;
  transform:translateX(-100%);transition:transform .3s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;
  box-shadow:24px 0 60px -34px rgba(11,18,40,.55)}
.pfilters.is-open{visibility:visible;pointer-events:auto}
.pfilters.is-open .pfilters__overlay{opacity:1}
.pfilters.is-open .pfilters__panel{transform:none}
body.pfilters-open{overflow:hidden}

.pfilters__head{display:flex;align-items:center;justify-content:space-between;padding:18px 22px;border-bottom:1px solid var(--line);flex:none}
.pfilters__head h2{font-family:var(--font-display);font-weight:600;font-size:22px;color:var(--ink)}
.pfilters__close{font-size:30px;line-height:1;color:var(--ink);padding:0 6px;background:none;border:0}
.pfilters__close:hover{color:var(--accent)}
.pfilters__body{flex:1;overflow-y:auto;-webkit-overflow-scrolling:touch;padding:6px 22px 18px}
.pfilters__foot{flex:none;padding:16px 22px;border-top:1px solid var(--line);display:flex;gap:10px;align-items:center;background:#fff}
.pfilters__foot .btn{flex:1}

/* YITH-onderdelen in merkstijl */
.pfilters .yith-wcan-filters{border:0;padding:0;margin:0;background:none;box-shadow:none}
.pfilters .yith-wcan-filter{border:0;border-bottom:1px solid var(--line);padding:16px 0;margin:0}
.pfilters .yith-wcan-filter:last-child{border-bottom:0}
.pfilters .yith-wcan-filter > h4,
.pfilters .yith-wcan-filter > .filter-title{font-family:var(--font-display)!important;font-weight:600!important;
  font-size:16px!important;color:var(--ink)!important;margin:0 0 12px!important;padding:0!important;text-transform:none!important;letter-spacing:0!important}
.pfilters .yith-wcan-filter .filter-content{padding:0}
.pfilters .yith-wcan-list-label li a,
.pfilters .yith-wcan-list li a{font-family:var(--font-body);font-size:15px;color:var(--muted);padding:6px 0;display:inline-block}
.pfilters .yith-wcan-list li a:hover,
.pfilters .yith-wcan-list li.active > a{color:var(--accent);font-weight:600}
.pfilters .yith-wcan-label a,
.pfilters .yith-wcan-color a{border-radius:var(--r-pill)!important;border:1px solid var(--line)!important;font-weight:600!important;font-size:13.5px!important}
.pfilters .yith-wcan-label a.active,
.pfilters .yith-wcan-color a.active{border-color:var(--accent)!important}
.pfilters .yith-wcan-filters .yith-wcan-reset-filters,
.pfilters__foot .yith-wcan-reset-filters{font-family:var(--font-body);font-weight:600;font-size:14.5px;color:var(--muted);text-decoration:underline;white-space:nowrap}
.pfilters .yith-wcan-reset-filters:hover{color:var(--accent)}
.pfilters .yith-wcan-filters .filter-item-search input[type="text"]{border:1px solid var(--line);border-radius:var(--r-pill);padding:9px 14px;font-family:var(--font-body);font-size:14px;width:100%}
.pfilters img{border-radius:8px}

/* Actieve filterlabels boven de lijst */
.pepschep .yith-wcan-active-filters{margin:0 0 16px}
.pepschep .yith-wcan-active-filters .active-filter,
.pepschep .yith-wcan-active-filters li a{background:var(--surface)!important;border:1px solid var(--line)!important;
  border-radius:var(--r-pill)!important;color:var(--ink)!important;font-weight:600!important;font-size:13.5px!important;padding:7px 13px!important}

@media (max-width:600px){
  .filterbtn{width:100%;justify-content:center;margin-right:0}
}


/* ============ Filters: kolom op desktop, lade op mobiel ============ */
@media (min-width:1000px){
  /* Tweekolomsindeling: alles rechts, alleen het filterblok links. */
  .has-pfilters .woo-body{display:grid;grid-template-columns:268px minmax(0,1fr);gap:34px;align-items:start}
  .has-pfilters .woo-body > *{grid-column:2;min-width:0}
  .has-pfilters .woo-body > .pfilters{grid-column:1;grid-row:1 / span 99}

  /* Van lade naar gewone kolom */
  .has-pfilters .pfilters{position:sticky;top:96px;inset:auto;visibility:visible;pointer-events:auto;z-index:1;
    max-height:calc(100vh - 120px);display:flex}
  .has-pfilters .pfilters__overlay{display:none}
  .has-pfilters .pfilters__panel{position:static;transform:none;width:100%;height:auto;max-height:calc(100vh - 120px);
    box-shadow:none;border:1px solid var(--line);border-radius:var(--r-md);background:#fff}
  .has-pfilters .pfilters__head{padding:16px 18px}
  .has-pfilters .pfilters__head h2{font-size:18px}
  .has-pfilters .pfilters__close{display:none}
  .has-pfilters .pfilters__body{padding:4px 18px 14px}
  .has-pfilters .pfilters__foot{padding:14px 18px}
  .has-pfilters .pfilters__foot .btn{display:none}
  .has-pfilters .pfilters__foot{justify-content:flex-start}

  /* De mobiele openknop is dan overbodig */
  .has-pfilters .filterbtn{display:none}

  /* Sorteerbalk netjes boven de producten */
  .has-pfilters .woocommerce-result-count{margin-top:6px}
}

/* Onder 1000px blijft het een uitschuifpaneel */
@media (max-width:999px){
  .pfilters{visibility:hidden;pointer-events:none}
  .pfilters.is-open{visibility:visible;pointer-events:auto}
}

/* YITH-onderdelen: compacter in de kolom */
.pfilters .yith-wcan-filters{margin:0}
.pfilters .yith-wcan-filter{padding:14px 0}
.pfilters .yith-wcan-filter .filter-content{max-height:280px;overflow-y:auto}
.pfilters .yith-wcan-filter .filter-content::-webkit-scrollbar{width:6px}
.pfilters .yith-wcan-filter .filter-content::-webkit-scrollbar-thumb{background:var(--line);border-radius:99px}
.pfilters ul{list-style:none;margin:0;padding:0}
.pfilters .yith-wcan-list li{margin:0}
.pfilters .yith-wcan-color-list,
.pfilters .yith-wcan-label-list{display:flex;flex-wrap:wrap;gap:8px}
.pfilters .yith-wcan-color-list li,
.pfilters .yith-wcan-label-list li{margin:0}
.pfilters .yith-wcan-filters .filter-title{cursor:pointer;display:flex;align-items:center;justify-content:space-between}


/* ============ Filters: geen scrollbalken, alles in beeld ============ */
.pfilters .yith-wcan-filter .filter-content,
.pfilters .filter-content,
.pfilters .yith-wcan-filters,
.pfilters ul,
.pfilters li{max-height:none!important;overflow:visible!important}
.pfilters .yith-wcan-color-list,
.pfilters .yith-wcan-label-list,
.pfilters .yith-wcan-list{display:flex!important;flex-wrap:wrap!important;overflow:visible!important;white-space:normal!important}
.pfilters .yith-wcan-list{flex-direction:column}
.pfilters .yith-wcan-color-list li,
.pfilters .yith-wcan-label-list li{flex:0 0 auto;white-space:normal}
.pfilters *{scrollbar-width:none}
.pfilters *::-webkit-scrollbar{display:none}

/* Kleurenswatches netjes in een raster */
.pfilters .yith-wcan-color-list{gap:10px}
.pfilters .yith-wcan-color-list li a,
.pfilters .yith-wcan-label-list li a{display:inline-flex;align-items:center;gap:7px;padding:7px 12px;line-height:1.2}
.pfilters .yith-wcan-color-list .term-label,
.pfilters .yith-wcan-label-list .term-label{white-space:normal}
.pfilters img{max-width:100%;height:auto}

/* Het paneel zelf mag wel scrollen als het langer is dan het scherm */
.pfilters__body{overflow-y:auto!important;overscroll-behavior:contain}
@media (min-width:1000px){
  .has-pfilters .pfilters__panel{max-height:none}
  .has-pfilters .pfilters{max-height:none;position:sticky;top:96px}
  .has-pfilters .pfilters__body{max-height:calc(100vh - 220px)}
}

/* ============ Telbolletje: subtiele +1 ============ */
@keyframes pepbump{0%{transform:scale(1)}35%{transform:scale(1.35)}100%{transform:scale(1)}}
.cart-count.is-bump{animation:pepbump .32s ease}
@media (prefers-reduced-motion:reduce){.cart-count.is-bump{animation:none}}


/* ============================================================
   WINKELMAND + CHECKOUT
   ============================================================ */

.cartpage,.copage{display:grid;grid-template-columns:minmax(0,1fr) 380px;gap:34px;align-items:start;padding:8px 0 var(--xl)}

/* ---- Productregels ---- */
.cartlist{border:1px solid var(--line);border-radius:18px;background:#fff;overflow:hidden}
.cartrow{display:flex;gap:18px;padding:20px;border-bottom:1px solid var(--line)}
.cartrow:last-child{border-bottom:0}
.cartrow__media{flex:none;width:104px;height:104px;border-radius:14px;background:#F2F3F7;display:flex;align-items:center;justify-content:center;overflow:hidden}
.cartrow__media img{width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply}
.cartrow__info{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:space-between;gap:12px}
.cartrow__top{display:flex;justify-content:space-between;gap:16px;align-items:flex-start}
.cartrow__name{font-family:var(--font-display);font-weight:600;font-size:17px;color:var(--ink);display:block;overflow-wrap:anywhere}
.cartrow__name:hover{color:var(--accent)}
.cartrow__meta{display:block;font-size:13.5px;color:var(--muted);margin-top:4px}
.cartrow__meta--warn{color:#B4341F}
.cartrow__price{font-family:var(--font-display);font-weight:600;font-size:19px;color:var(--ink);white-space:nowrap}
.cartrow__bottom{display:flex;align-items:center;justify-content:space-between;gap:14px}
.cartrow__remove{font-size:13.5px;color:var(--muted);text-decoration:underline}
.cartrow__remove:hover{color:var(--accent)}
.cartrow__fixedqty{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border:1px solid var(--line);border-radius:var(--r-pill);font-weight:600}
.pepschep .cartrow__qty .quantity{margin:0}
.pepschep .cartrow__qty input.qty{width:74px;height:44px;text-align:center;border:1px solid var(--line);border-radius:var(--r-pill);font-weight:600;font-size:15px;padding:0 6px}

.cartpage__actions{display:flex;align-items:center;gap:16px;margin-top:18px;flex-wrap:wrap}
.cartpage__update{background:none;border:0;padding:0;font-family:var(--font-body);font-weight:600;font-size:14.5px;color:var(--muted);text-decoration:underline;cursor:pointer}
.cartpage__update:hover{color:var(--accent)}
.cartpage__continue{font-weight:600;font-size:14.5px;color:var(--accent)}
.cartpage__continue:hover{text-decoration:underline}

.cartbumps{margin-top:26px}
.cartbumps__head{font-family:var(--font-display);font-weight:600;font-size:18px;margin-bottom:12px}
.cartbumps .scart__bump{margin:0 0 12px}

/* ---- Samenvatting (rechts, sticky) ---- */
.summary{position:sticky;top:96px;border:1px solid var(--line);border-radius:18px;background:#fff;padding:22px}
.summary__head{font-family:var(--font-display);font-weight:600;font-size:20px;margin-bottom:16px}
.summary .pep-cartnote{margin-bottom:14px}
.summary__totals{margin:6px 0 4px}
.pepschep .summary__totals .shop_table,.pepschep .summary__totals table{border:0!important;background:none!important;width:100%;margin:0}
.pepschep .summary__totals th,.pepschep .summary__totals td{border:0!important;padding:9px 0!important;font-size:15.5px;background:none!important}
.pepschep .summary__totals th{font-family:var(--font-body);font-weight:500;color:var(--muted);text-align:left}
.pepschep .summary__totals td{text-align:right}
.pepschep .summary__totals tr.order-total th,.pepschep .summary__totals tr.order-total td{border-top:1px solid var(--line)!important;padding-top:14px!important;font-size:17px}
.pepschep .summary__totals tr.order-total td .amount{font-family:var(--font-display);font-weight:600;font-size:22px;color:var(--ink)}
.pepschep .summary__totals h2{display:none}
.pepschep .summary__totals .wc-proceed-to-checkout{padding:0;margin-top:14px}
.pepschep .summary__totals .checkout-button{display:block;width:100%;text-align:center;background:var(--accent);color:#fff;
  border-radius:var(--r-pill);font-family:var(--font-body);font-weight:700;font-size:16.5px;padding:16px 20px;margin:0}
.pepschep .summary__totals .checkout-button:hover{background:var(--accent-ink)}
.pepschep .summary__totals .woocommerce-shipping-destination,
.pepschep .summary__totals .shipping-calculator-button{font-size:13.5px;color:var(--muted)}

.summary__coupon{display:flex;gap:8px;margin-top:14px}
.summary__coupon input[type="text"]{flex:1;min-width:0;border:1px solid var(--line);border-radius:var(--r-pill);padding:12px 16px;font-family:var(--font-body);font-size:14.5px}
.summary__coupon input[type="text"]:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(46,75,255,.14)}
.pepschep .summary__coupon button{flex:none;background:var(--ink);color:#fff;border-radius:var(--r-pill);font-weight:600;font-size:14.5px;padding:12px 18px;border:0}
.pepschep .summary__coupon button:hover{background:var(--accent)}

.summary__trust{list-style:none;margin:18px 0 0;padding:16px 0 0;border-top:1px solid var(--line);display:grid;gap:9px}
.summary__trust li{display:flex;align-items:center;gap:9px;font-size:14.5px;color:var(--muted)}
.summary__trust .pep-check{color:#1B8A4B;flex:none}

/* ---- Checkout ---- */
.cobox{border:1px solid var(--line);border-radius:18px;background:#fff;padding:22px;margin-bottom:18px}
.cobox--shipping:empty,.cobox--shipping .cobox__body:empty{display:none}
.cobox__head{display:flex;align-items:center;gap:11px;font-family:var(--font-display);font-weight:600;font-size:20px;margin-bottom:18px}
.cobox__step{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;
  background:var(--accent);color:#fff;font-size:14px;font-weight:700;flex:none}
.pepschep .cobox h3{font-family:var(--font-display);font-weight:600;font-size:17px;margin:0 0 14px}
.pepschep .cobox .form-row{margin:0 0 14px;padding:0}
.pepschep .cobox label{display:block;font-size:14px;font-weight:600;color:var(--ink);margin-bottom:6px}
.pepschep .cobox .required{color:var(--accent);text-decoration:none}
.pepschep .cobox input.input-text,.pepschep .cobox textarea,.pepschep .cobox select,.pepschep .cobox .select2-selection--single{
  width:100%;border:1px solid var(--line);border-radius:12px;padding:13px 15px;font-family:var(--font-body);font-size:15.5px;background:#fff;height:auto}
.pepschep .cobox input.input-text:focus,.pepschep .cobox textarea:focus,.pepschep .cobox select:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(46,75,255,.14)}
.pepschep .cobox .select2-container--default .select2-selection--single{border:1px solid var(--line);border-radius:12px;height:50px;display:flex;align-items:center;padding:0 12px}
.pepschep .cobox .select2-container--default .select2-selection--single .select2-selection__arrow{height:48px}

/* Betaalmethoden */
.pepschep .copay #order_review_heading,.pepschep .copage__main .cart-subtotal,.pepschep .copage__main .order-total{display:none}
.pepschep .copay .shop_table{display:none}
.pepschep .wc_payment_methods{list-style:none;margin:0 0 18px;padding:0;display:grid;gap:10px}
.pepschep .wc_payment_method{border:1px solid var(--line);border-radius:14px;padding:14px 16px;transition:border-color .15s ease,background .15s ease}
.pepschep .wc_payment_method:has(input:checked){border-color:var(--accent);background:var(--surface)}
.pepschep .wc_payment_method > label{display:flex!important;align-items:center;gap:10px;font-family:var(--font-body);font-weight:600;font-size:15.5px;margin:0;cursor:pointer}
.pepschep .wc_payment_method input[type="radio"]{width:19px;height:19px;accent-color:var(--accent);margin:0}
.pepschep .wc_payment_method img{max-height:26px;width:auto;margin-left:auto}
.pepschep .payment_box{background:var(--surface);border-radius:12px;padding:14px;margin:12px 0 0;font-size:14.5px;color:var(--muted)}
.pepschep .payment_box::before{display:none}
.pepschep #place_order{width:100%;background:var(--accent);color:#fff;border-radius:var(--r-pill);font-family:var(--font-body);
  font-weight:700;font-size:17px;padding:17px 22px;border:0;margin-top:6px}
.pepschep #place_order:hover{background:var(--accent-ink)}
.pepschep .woocommerce-terms-and-conditions-wrapper{font-size:13.5px;color:var(--muted);margin-bottom:12px}

/* Productlijst in de checkout-samenvatting */
.colist{display:grid;gap:14px;margin-bottom:16px;max-height:340px;overflow-y:auto}
.colist__row{display:flex;align-items:center;gap:12px}
.colist__media{position:relative;flex:none;width:60px;height:60px;border-radius:12px;background:#F2F3F7;display:flex;align-items:center;justify-content:center;overflow:visible}
.colist__media img{width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply;border-radius:12px}
.colist__qty{position:absolute;top:-7px;right:-7px;min-width:22px;height:22px;padding:0 6px;border-radius:var(--r-pill);
  background:var(--ink);color:#fff;font-size:12px;font-weight:700;display:inline-flex;align-items:center;justify-content:center}
.colist__info{flex:1;min-width:0}
.colist__name{display:block;font-weight:600;font-size:14.5px;color:var(--ink);overflow-wrap:anywhere}
.colist__price{font-family:var(--font-display);font-weight:600;font-size:15.5px;white-space:nowrap}

/* Meldingen */
.pepschep .woocommerce-message,.pepschep .woocommerce-info,.pepschep .woocommerce-error{
  border-radius:14px;border:1px solid var(--line);border-top:1px solid var(--line);background:var(--surface);
  padding:14px 18px;font-size:15px;list-style:none}
.pepschep .woocommerce-message{border-color:#CFEBD8;background:#EEF9F1;color:#146C3A}
.pepschep .woocommerce-error{border-color:#F3CFCB;background:#FDF1F0;color:#B4341F}
.pepschep .woocommerce-message::before,.pepschep .woocommerce-info::before,.pepschep .woocommerce-error::before{display:none}
.pepschep .woocommerce-message .button{background:var(--accent);border-radius:var(--r-pill);color:#fff;padding:9px 16px;font-size:14px}

/* Lege winkelmand */
.pepschep .cart-empty{font-family:var(--font-display);font-weight:600;font-size:22px;color:var(--ink);text-align:center;margin:40px 0 10px}
.pepschep .return-to-shop{text-align:center;margin-bottom:60px}
.pepschep .return-to-shop .button{background:var(--accent);color:#fff;border-radius:var(--r-pill);padding:15px 26px;font-weight:600}

@media (max-width:1000px){
  .cartpage,.copage{grid-template-columns:1fr;gap:22px}
  .summary{position:static}
  .cartpage__side{order:2}
}
@media (max-width:560px){
  .cartrow{padding:16px;gap:14px}
  .cartrow__media{width:84px;height:84px}
  .cartrow__name{font-size:15.5px}
  .cartrow__price{font-size:17px}
  .summary{padding:18px}
  .cobox{padding:18px}
}


/* ============================================================
   WINKELMAND + CHECKOUT - correcties
   ============================================================ */

/* Kolommen mogen nooit breder worden dan hun ruimte (min-content-val) */
.cartpage,.copage{grid-template-columns:minmax(0,1fr) 380px}
.cartpage > *,.copage > *{min-width:0}
.cartpage__main,.cartpage__side,.copage__main,.copage__side{min-width:0;max-width:100%}
.cartlist,.summary,.cobox{max-width:100%}

/* Checkout: formulier links, samenvatting rechts (samenvatting staat eerst in de HTML) */
.copage__side{grid-column:2;grid-row:1}
.copage__main{grid-column:1;grid-row:1}

/* Kortingscode mag de kolom niet oprekken */
.summary__coupon{flex-wrap:wrap}
.summary__coupon input[type="text"]{width:0;flex:1 1 140px;min-width:0}
.pepschep .summary__coupon button{flex:0 0 auto}

/* Afrekenknop in merkkleur (wint van .woocommerce a.button.alt) */
.pepschep .summary .wc-proceed-to-checkout a.checkout-button,
.pepschep .woocommerce .summary a.button.alt.checkout-button,
.pepschep a.checkout-button.button.alt{background:var(--accent)!important;color:#fff!important;border-radius:var(--r-pill)!important;
  font-family:var(--font-body)!important;font-weight:700!important;font-size:16.5px!important;padding:16px 20px!important;
  display:block;width:100%;text-align:center;border:0}
.pepschep a.checkout-button.button.alt:hover{background:var(--accent-ink)!important}

/* ---- Ordersamenvatting op de checkout: tabel als nette lijst ---- */
.pepschep .woocommerce-checkout-review-order-table{display:block;border:0!important;background:none!important;width:100%;margin:0}
.pepschep .woocommerce-checkout-review-order-table thead{display:none}
.pepschep .woocommerce-checkout-review-order-table tbody,
.pepschep .woocommerce-checkout-review-order-table tfoot{display:block;width:100%}
.pepschep .woocommerce-checkout-review-order-table tr{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;width:100%}
.pepschep .woocommerce-checkout-review-order-table tbody tr{padding:0 0 14px}
.pepschep .woocommerce-checkout-review-order-table th,
.pepschep .woocommerce-checkout-review-order-table td{display:block;border:0!important;padding:0!important;background:none!important;font-size:15px}
.pepschep .woocommerce-checkout-review-order-table td.product-name{flex:1;min-width:0}
.pepschep .woocommerce-checkout-review-order-table td.product-total{flex:none;white-space:nowrap;font-family:var(--font-display);font-weight:600}
.pepschep .woocommerce-checkout-review-order-table tfoot tr{padding:9px 0;border-top:1px solid var(--line)}
.pepschep .woocommerce-checkout-review-order-table tfoot tr:first-child{border-top:1px solid var(--line);margin-top:4px}
.pepschep .woocommerce-checkout-review-order-table tfoot th{font-weight:500;color:var(--muted);text-align:left;flex:1}
.pepschep .woocommerce-checkout-review-order-table tfoot td{text-align:right;flex:none;white-space:nowrap}
.pepschep .woocommerce-checkout-review-order-table tfoot .order-total th{font-family:var(--font-display);font-weight:600;color:var(--ink);font-size:17px}
.pepschep .woocommerce-checkout-review-order-table tfoot .order-total td .amount{font-family:var(--font-display);font-weight:600;font-size:22px;color:var(--ink)}
.pepschep .woocommerce-checkout-review-order-table tfoot .order-total small{display:block;font-size:12.5px;font-weight:400;color:var(--muted);white-space:normal}

/* Verzendmethoden netjes onder elkaar, links uitgelijnd */
.pepschep .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals{flex-direction:column;align-items:stretch;gap:8px}
.pepschep .woocommerce-shipping-totals th{margin-bottom:2px}
.pepschep ul#shipping_method{list-style:none;margin:0;padding:0;display:grid;gap:8px;text-align:left;width:100%}
.pepschep ul#shipping_method li{display:flex;align-items:flex-start;gap:9px;margin:0;text-align:left;font-size:14.5px;line-height:1.35}
.pepschep ul#shipping_method li input[type="radio"]{flex:none;margin:2px 0 0;width:17px;height:17px;accent-color:var(--accent)}
.pepschep ul#shipping_method li label{flex:1;margin:0;font-weight:500;color:var(--ink);cursor:pointer}
.pepschep .woocommerce-shipping-destination{font-size:13px;color:var(--muted);margin-top:6px}

/* ---- Betaalmethoden: radio staat NAAST het label ---- */
.pepschep .wc_payment_methods{list-style:none;margin:0 0 16px;padding:0;display:grid;gap:10px}
.pepschep li.wc_payment_method{display:grid;grid-template-columns:auto 1fr;align-items:center;column-gap:10px;
  border:1px solid var(--line);border-radius:14px;padding:14px 16px;margin:0;background:#fff}
.pepschep li.wc_payment_method:has(input:checked){border-color:var(--accent);background:var(--surface)}
.pepschep li.wc_payment_method > input[type="radio"]{grid-column:1;width:19px;height:19px;accent-color:var(--accent);margin:0}
.pepschep li.wc_payment_method > label{grid-column:2;display:flex!important;align-items:center;gap:10px;margin:0;padding:0;
  font-family:var(--font-body);font-weight:600;font-size:15.5px;color:var(--ink);cursor:pointer}
.pepschep li.wc_payment_method > label img{max-height:26px;width:auto;margin-left:auto;float:none}
.pepschep li.wc_payment_method > .payment_box{grid-column:1 / -1;background:var(--surface)!important;border-radius:12px;
  padding:13px 15px;margin:12px 0 0;font-size:14.5px;color:var(--muted);border:0}
.pepschep li.wc_payment_method > .payment_box::before,
.pepschep .payment_box::before{content:none!important;display:none!important;border:0!important}
.pepschep .woocommerce-checkout-payment,.pepschep #payment{background:none!important;border-radius:0;padding:0}
.pepschep #payment ul.payment_methods{border:0!important;padding:0!important}
.pepschep #payment div.form-row{padding:0;margin:0}
.pepschep .place-order{padding:0!important}

/* ---- Formuliervelden: logische breedtes ---- */
@media (min-width:781px){
  .pepschep .cobox__body .woocommerce-billing-fields__field-wrapper,
  .pepschep .cobox__body .woocommerce-shipping-fields__field-wrapper{display:grid;grid-template-columns:1fr 1fr;gap:0 14px}
  .pepschep .cobox__body .form-row{grid-column:span 2}
  .pepschep .cobox__body .form-row-first,
  .pepschep .cobox__body .form-row-last,
  .pepschep .cobox__body #billing_postcode_field,
  .pepschep .cobox__body #billing_city_field,
  .pepschep .cobox__body #shipping_postcode_field,
  .pepschep .cobox__body #shipping_city_field,
  .pepschep .cobox__body #billing_phone_field,
  .pepschep .cobox__body #billing_email_field,
  .pepschep .cobox__body #billing_house_number_field,
  .pepschep .cobox__body #shipping_house_number_field{grid-column:span 1;width:auto;float:none}
}
.pepschep .cobox__body .form-row{width:auto;float:none}
.pepschep .cobox textarea{min-height:96px;resize:vertical}
.pepschep .cobox__shipwrap .woocommerce-shipping-fields,
.pepschep .cobox__shipwrap .woocommerce-additional-fields{border:1px solid var(--line);border-radius:18px;background:#fff;padding:22px;margin-bottom:18px}
.pepschep .cobox__shipwrap h3{font-family:var(--font-display);font-weight:600;font-size:18px;margin:0 0 14px}
.pepschep .cobox__shipwrap h3#ship-to-different-address{display:flex;align-items:center;gap:10px;font-size:16px}
.pepschep .cobox__shipwrap h3#ship-to-different-address label{margin:0;font-weight:600}
.pepschep .cobox__shipwrap input#ship-to-different-address-checkbox{width:19px;height:19px;accent-color:var(--accent)}

/* ---- Mobiel: alles onder elkaar, samenvatting eerst ---- */
@media (max-width:1000px){
  .cartpage,.copage{grid-template-columns:minmax(0,1fr);gap:20px}
  .copage__side,.copage__main{grid-column:1}
  .copage__side{grid-row:1}
  .copage__main{grid-row:2}
  .cartpage__main{order:1}
  .cartpage__side{order:2}
  .summary{position:static}
  .colist{max-height:none}
}
@media (max-width:560px){
  .summary__coupon input[type="text"]{flex:1 1 100%}
  .pepschep .summary__coupon button{width:100%}
  .cartpage__actions{gap:12px}
}


/* ---- Checkout: laatste correcties ---- */
/* Verzendmethoden mogen afbreken (Woo zet nowrap) */
.pepschep #shipping_method,
.pepschep #shipping_method li,
.pepschep #shipping_method li label,
.pepschep .woocommerce-shipping-totals td,
.pepschep .woocommerce-shipping-totals th{white-space:normal!important}
.pepschep #shipping_method li{min-width:0!important;max-width:100%;flex-wrap:nowrap}
.pepschep #shipping_method li label{min-width:0!important;max-width:100%;overflow-wrap:anywhere}
.pepschep #shipping_method li .woocommerce-Price-amount{white-space:nowrap;font-weight:600;color:var(--ink)}

/* Btw-regel: bedrag niet groter dan de tekst eromheen */
.pepschep .includes_tax,
.pepschep .order-total small{font-size:12.5px!important;font-weight:400!important;color:var(--muted)!important;white-space:normal}
.pepschep .includes_tax .amount,
.pepschep .includes_tax .woocommerce-Price-amount,
.pepschep .order-total small .amount{font-size:inherit!important;font-weight:inherit!important;color:inherit!important;font-family:var(--font-body)!important}

/* Opmerkingenveld hoog genoeg */
.pepschep .cobox textarea,
.pepschep .cobox__shipwrap textarea,
.pepschep #order_comments{min-height:104px!important;resize:vertical}


/* ============================================================
   DESKTOP MEGAMENU
   ============================================================ */
.mainnav{display:flex}
.dnav{display:flex;align-items:center;gap:2px;list-style:none;margin:0;padding:0}
.dnav__item{position:static}
.dnav__link{display:inline-flex;align-items:center;gap:6px;padding:10px 13px;border-radius:var(--r-pill);
  font-family:var(--font-body);font-weight:600;font-size:15.5px;color:var(--ink);white-space:nowrap;line-height:1}
.dnav__link:hover{background:var(--surface);color:var(--accent)}
.dnav__link--accent{color:var(--accent)}
.dnav__chev{width:7px;height:7px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-2px);opacity:.6;transition:transform .18s ease}
.dnav__item.has-mega:hover .dnav__chev,
.dnav__item.has-mega:focus-within .dnav__chev{transform:rotate(-135deg) translateY(1px);opacity:1}
.dnav__item.has-mega:hover .dnav__link,
.dnav__item.has-mega:focus-within .dnav__link{background:var(--surface);color:var(--accent)}

/* Paneel over de volle breedte */
.mega{position:absolute;left:0;right:0;top:100%;background:#fff;border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);box-shadow:0 26px 40px -30px rgba(11,18,40,.4);
  opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .16s ease,transform .16s ease,visibility .16s;z-index:60}
.dnav__item.has-mega:hover .mega,
.dnav__item.has-mega:focus-within .mega{opacity:1;visibility:visible;transform:none}
.mega__inner{padding:26px 24px 22px}
.mega__cols{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:22px 26px}
.mega__col{min-width:0}
.mega__head{display:flex;align-items:center;gap:10px;font-family:var(--font-display);font-weight:600;font-size:15.5px;
  color:var(--ink);padding-bottom:9px;margin-bottom:8px;border-bottom:1px solid var(--line)}
.mega__head:hover{color:var(--accent)}
.mega__ico{width:34px;height:34px;flex:none;object-fit:contain;border-radius:8px;background:var(--surface)}
.mega__sub{list-style:none;margin:0;padding:0;display:grid;gap:5px}
.mega__sub a{font-size:14.5px;color:var(--muted);line-height:1.35;display:block;padding:2px 0}
.mega__sub a:hover{color:var(--accent)}

/* Infovakjes onderin */
.mega__foot{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:22px;padding-top:18px;border-top:1px solid var(--line)}
.mega__usp{display:flex;align-items:center;gap:11px;flex:1 1 220px;min-width:0;background:var(--surface);
  border-radius:14px;padding:12px 14px}
.mega__uspico{flex:none;width:38px;height:38px;border-radius:10px;background:#fff;color:var(--accent);
  display:inline-flex;align-items:center;justify-content:center}
.mega__uspico svg{width:19px;height:19px}
.mega__usp b{display:block;font-family:var(--font-display);font-weight:600;font-size:14.5px;color:var(--ink)}
.mega__usp span{display:block;font-size:13px;color:var(--muted);line-height:1.35}
.mega__all{flex:none;font-weight:600;font-size:15px;color:#fff;background:var(--accent);border-radius:var(--r-pill);padding:12px 20px;white-space:nowrap}
.mega__all:hover{background:var(--accent-ink)}

@media (max-width:1180px){
  .mega__cols{grid-template-columns:repeat(4,minmax(0,1fr))}
  .dnav__link{padding:10px 10px;font-size:15px}
}
@media (max-width:860px){
  .mainnav{display:none}
}


/* ============================================================
   PRODUCTPAGINA
   ============================================================ */
.pdp{padding:8px 0 var(--xl)}
.pdp__grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);gap:44px;align-items:start}
.pdp__grid > *{min-width:0}

/* ---- Galerij ---- */
.pepschep .pdp__media{position:sticky;top:96px}
.pepschep .woocommerce-product-gallery{width:100%!important;float:none!important;margin:0!important;position:relative}
.pepschep .woocommerce-product-gallery__wrapper{margin:0;border-radius:20px;overflow:hidden;background:#F2F3F7}
.pepschep .woocommerce-product-gallery__image{border-radius:20px;overflow:hidden;background:#F2F3F7}
.pepschep .woocommerce-product-gallery__image img{width:100%;height:auto;display:block;mix-blend-mode:multiply}
.pepschep .woocommerce-product-gallery .flex-control-thumbs{display:flex;flex-wrap:wrap;gap:10px;margin:12px 0 0;padding:0;list-style:none}
.pepschep .woocommerce-product-gallery .flex-control-thumbs li{width:auto;margin:0;float:none;list-style:none}
.pepschep .woocommerce-product-gallery .flex-control-thumbs img{width:76px;height:76px;object-fit:contain;background:#F2F3F7;
  border-radius:12px;border:1px solid transparent;opacity:1;padding:6px;mix-blend-mode:multiply;transition:border-color .15s ease}
.pepschep .woocommerce-product-gallery .flex-control-thumbs img:hover,
.pepschep .woocommerce-product-gallery .flex-control-thumbs img.flex-active{border-color:var(--accent)}
.pepschep .woocommerce-product-gallery__trigger{position:absolute;top:14px;right:14px;z-index:9;width:42px;height:42px;
  border-radius:50%;background:#fff;box-shadow:0 8px 18px -10px rgba(11,18,40,.45);display:flex;align-items:center;justify-content:center;font-size:0}
.pepschep .woocommerce-product-gallery__trigger::after{content:"";width:15px;height:15px;border:2px solid var(--ink);border-radius:50%}
.pepschep span.onsale{position:absolute;top:14px;left:14px;z-index:8;background:var(--accent);color:#fff;
  border-radius:var(--r-pill);font-family:var(--font-body);font-weight:700;font-size:12.5px;letter-spacing:.02em;
  text-transform:uppercase;padding:8px 14px;min-height:0;min-width:0;line-height:1;margin:0}

/* ---- Samenvatting ---- */
.pepschep .pdp__summary{width:100%!important;float:none!important;margin:0!important;padding:0}
.pepschep .pdp__summary .product_title{font-family:var(--font-display);font-weight:600;font-size:clamp(28px,3.4vw,42px);
  line-height:1.06;color:var(--ink);margin:0 0 12px}
.pepschep .pdp__summary .woocommerce-product-rating{display:flex;align-items:center;gap:10px;margin:0 0 14px}
.pepschep .pdp__summary .star-rating{color:#FFB020;font-size:15px}
.pepschep .pdp__summary .woocommerce-review-link{font-size:14px;color:var(--muted)}
.pepschep .pdp__summary p.price,.pepschep .pdp__summary span.price{font-family:var(--font-display);font-weight:600;
  font-size:30px;color:var(--ink);margin:0 0 6px;display:flex;align-items:baseline;gap:10px;flex-wrap:wrap}
.pepschep .pdp__summary p.price del{opacity:1;color:var(--muted);font-size:19px;font-weight:400}
.pepschep .pdp__summary p.price ins{text-decoration:none;background:none;color:var(--accent)}
.pepschep .pdp__summary .woocommerce-product-details__short-description{color:var(--muted);font-size:16.5px;line-height:1.65;margin:14px 0 18px;max-width:56ch}
.pepschep .pdp__summary .woocommerce-product-details__short-description p:last-child{margin-bottom:0}

.pdp__deliver{display:inline-flex;align-items:center;gap:9px;background:#EEF9F1;border:1px solid #CFEBD8;color:#146C3A;
  border-radius:var(--r-pill);padding:9px 15px;font-size:14.5px;font-weight:500;margin:0 0 18px}
.pdp__deliverdot{width:8px;height:8px;border-radius:50%;background:#1B8A4B;flex:none}

/* Varianten en opties */
.pepschep .pdp__summary .variations{width:100%;margin:0 0 16px;border:0}
.pepschep .pdp__summary .variations tr,.pepschep .pdp__summary .variations td,.pepschep .pdp__summary .variations th{display:block;border:0;padding:0;background:none}
.pepschep .pdp__summary .variations th.label{font-family:var(--font-body);font-weight:600;font-size:14.5px;color:var(--ink);margin:0 0 8px;text-align:left}
.pepschep .pdp__summary .variations td.value{margin:0 0 16px}
.pepschep .pdp__summary select{width:100%;border:1px solid var(--line);border-radius:12px;padding:13px 15px;
  font-family:var(--font-body);font-size:15.5px;background:#fff}
.pepschep .pdp__summary .reset_variations{font-size:13.5px;color:var(--muted);text-decoration:underline}
.pepschep .yith-wccl-selectbox-wrapper,.pepschep .yith_wccl_value{margin:0}
.pepschep .single_variation_wrap .woocommerce-variation-price{margin:0 0 12px}

/* Koopblok */
.pepschep .pdp__summary form.cart{display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin:0 0 18px}
.pepschep .pdp__summary form.cart .quantity{margin:0}
.pepschep .pdp__summary form.cart input.qty{width:88px;height:56px;text-align:center;border:1px solid var(--line);
  border-radius:var(--r-pill);font-weight:600;font-size:16px}
.pepschep .pdp__summary form.cart button.single_add_to_cart_button{flex:1;min-width:210px;background:var(--accent);color:#fff;
  border:0;border-radius:var(--r-pill);font-family:var(--font-body);font-weight:700;font-size:17px;padding:18px 26px;line-height:1}
.pepschep .pdp__summary form.cart button.single_add_to_cart_button:hover{background:var(--accent-ink)}
.pepschep .pdp__summary form.cart .tm-extra-product-options{flex:0 0 100%;order:-1;margin:0 0 6px}
.pepschep .pdp__summary form.cart .tc-extra-product-options{flex:0 0 100%;order:-1}

.pdp__usps{list-style:none;margin:0 0 18px;padding:18px 0 0;border-top:1px solid var(--line);display:grid;gap:10px}
.pdp__usps li{display:flex;align-items:center;gap:10px;font-size:15px;color:var(--ink)}
.pdp__usps .pep-check{color:#1B8A4B;flex:none}

.pdp__pay{display:flex;align-items:center;gap:12px;flex-wrap:wrap;padding-top:16px;border-top:1px solid var(--line)}
.pdp__pay > span{font-size:13.5px;color:var(--muted)}
.pdp__paylist{display:flex;gap:7px;flex-wrap:wrap}
.pdp__paychip{background:var(--surface);border:1px solid var(--line);border-radius:8px;padding:6px 10px;font-size:12px;font-weight:600;color:var(--muted)}

.pepschep .pdp__summary .product_meta{border-top:1px solid var(--line);margin-top:18px;padding-top:14px;font-size:13.5px;color:var(--muted)}
.pepschep .pdp__summary .product_meta a{color:var(--accent)}

/* ---- Tabs als accordeon ---- */
.pepschep .woocommerce-tabs{margin:var(--xl) 0 0;border-top:1px solid var(--line)}
.pepschep .woocommerce-tabs ul.tabs{display:none}
.pepschep .woocommerce-tabs .panel{display:block!important;border-bottom:1px solid var(--line);margin:0;padding:0}
.pepschep .woocommerce-tabs .panel > h2:first-child{display:none}
.pepschep .pdp-acc__btn{display:flex;align-items:center;justify-content:space-between;gap:16px;width:100%;
  background:none;border:0;padding:22px 0;font-family:var(--font-display);font-weight:600;font-size:19px;color:var(--ink);cursor:pointer;text-align:left}
.pepschep .pdp-acc__btn:hover{color:var(--accent)}
.pepschep .pdp-acc__sign{flex:none;width:11px;height:11px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-3px);transition:transform .2s ease}
.pepschep .pdp-acc__btn[aria-expanded="true"] .pdp-acc__sign{transform:rotate(-135deg) translateY(2px)}
.pepschep .pdp-acc__body{padding:0 0 24px;max-width:76ch;color:var(--muted);font-size:16px;line-height:1.7}
.pepschep .pdp-acc__body h2,.pepschep .pdp-acc__body h3{font-family:var(--font-display);font-weight:600;color:var(--ink);font-size:18px;margin:20px 0 8px}
.pepschep .pdp-acc__body p{margin:0 0 12px}
.pepschep .pdp-acc__body a{color:var(--accent);font-weight:600}
.pepschep .pdp-acc__body ul{list-style:disc;padding-left:20px;margin:0 0 12px}
.pepschep .pdp-acc__body table{width:100%;border-collapse:collapse}
.pepschep .pdp-acc__body th,.pepschep .pdp-acc__body td{text-align:left;padding:11px 0;border-bottom:1px solid var(--line);font-size:15px}
.pepschep .pdp-acc__body th{font-weight:600;color:var(--ink);width:38%}

/* ---- Gerelateerde producten ---- */
.pepschep .related,.pepschep .up-sells{margin-top:var(--xl)}
.pepschep .related > h2,.pepschep .up-sells > h2{font-family:var(--font-display);font-weight:600;font-size:clamp(24px,3vw,34px);margin:0 0 var(--md)}

@media (max-width:1000px){
  .pdp__grid{grid-template-columns:minmax(0,1fr);gap:26px}
  .pepschep .pdp__media{position:static}
}
@media (max-width:560px){
  .pepschep .pdp__summary form.cart{gap:10px}
  .pepschep .pdp__summary form.cart input.qty{width:76px;height:52px}
  .pepschep .pdp__summary form.cart button.single_add_to_cart_button{min-width:0;flex:1 1 100%;font-size:16px;padding:16px 20px}
  .pepschep .woocommerce-product-gallery .flex-control-thumbs img{width:62px;height:62px}
  .pepschep .pdp-acc__btn{font-size:17px;padding:18px 0}
}


/* ---- Productpagina: laatste correcties ---- */
/* Extra Product Options mag de pagina niet oprekken */
.pepschep form.cart > *{min-width:0;max-width:100%}
.pepschep .tm-extra-product-options,
.pepschep .tc-extra-product-options,
.pepschep .tm-extra-product-options-fields,
.pepschep .tc-row,
.pepschep .cpf-section,
.pepschep .tc-section-inner-wrap,
.pepschep .tc-section-fields{min-width:0!important;max-width:100%!important}
.pepschep .tm-extra-product-options .tc-row{flex-wrap:wrap}
.pepschep .tm-extra-product-options input[type="text"],
.pepschep .tm-extra-product-options textarea,
.pepschep .tm-extra-product-options select{max-width:100%}
.pepschep .pdp__summary{overflow-x:clip}

/* Mobiel: titel weer groter dan de prijs, badge compacter */
@media (max-width:560px){
  .pepschep .pdp__summary .product_title{font-size:30px}
  .pepschep .pdp__summary p.price,.pepschep .pdp__summary span.price{font-size:26px}
  .pdp__deliver{font-size:13.5px;padding:8px 13px;line-height:1.3}
}


/* ============================================================
   PAGINA-INDELING: winkelmand en checkout op volle breedte
   ============================================================ */
.pagewrap{padding:34px 0 var(--xl);min-height:52vh}
.pagehead{margin-bottom:22px}
.pagehead__title{font-family:var(--font-display);font-weight:600;font-size:clamp(28px,4vw,44px);line-height:1.05;color:var(--ink)}
.pagehead .crumbs{margin-bottom:10px}
.pagearticle__body{margin-top:18px;max-width:72ch;color:var(--muted);font-size:16.5px;line-height:1.7}
.pagearticle__body h2,.pagearticle__body h3{font-family:var(--font-display);font-weight:600;color:var(--ink);margin:26px 0 10px}
.pagearticle__body p{margin:0 0 14px}
.pagearticle__body a{color:var(--accent);font-weight:600}

/* Ruimere container voor winkelmand, checkout en account */
.pagewrap--wide > .container{max-width:1560px}
.pagewrap--wide .pagebody{margin-top:6px}

/* Bredere verhouding: meer ruimte voor de producten, ruimer overzicht */
@media (min-width:1001px){
  .cartpage,.copage{grid-template-columns:minmax(0,1fr) 420px;gap:40px}
}
@media (min-width:1400px){
  .cartpage,.copage{grid-template-columns:minmax(0,1fr) 440px;gap:48px}
  .cartrow{padding:24px}
  .cartrow__media{width:120px;height:120px}
  .summary{padding:26px}
  .cobox{padding:26px}
}

/* De WooCommerce-wrapper mag de breedte niet beperken */
.pepschep .pagebody > .woocommerce,
.pepschep .pagebody .woocommerce{width:100%;max-width:100%}
.pepschep .pagebody .wp-block-shortcode{max-width:100%}


/* ---- Breedte en checkout-details ---- */
/* Op grote schermen ruimer benutten */
.pagewrap--wide > .container{max-width:1720px;padding-inline:32px}
@media (min-width:1700px){
  .cartpage,.copage{grid-template-columns:minmax(0,1fr) 460px;gap:52px}
}
@media (max-width:700px){
  .pagewrap--wide > .container{padding-inline:20px}
}

/* Velden in de verzend- en aanvullende blokken ook volle breedte */
.pepschep .cobox__shipwrap input.input-text,
.pepschep .cobox__shipwrap textarea,
.pepschep .cobox__shipwrap select,
.pepschep .cobox__shipwrap .select2-selection,
.pepschep #order_comments{width:100%!important;max-width:100%;border:1px solid var(--line);border-radius:12px;
  padding:13px 15px;font-family:var(--font-body);font-size:15.5px;background:#fff;display:block}
.pepschep .cobox__shipwrap label,
.pepschep .woocommerce-additional-fields label{display:block;font-size:14px;font-weight:600;color:var(--ink);margin-bottom:6px}
.pepschep .cobox__shipwrap .form-row{display:block;width:auto;float:none;margin:0 0 14px;padding:0}

/* Lege blokken niet als witte balk tonen */
.pepschep .cobox__shipwrap .woocommerce-shipping-fields:empty,
.pepschep .cobox__shipwrap .woocommerce-additional-fields:empty,
.pepschep .cobox__shipwrap:empty{display:none}
.pepschep .cobox__shipwrap .woocommerce-shipping-fields:not(:has(input)):not(:has(select)):not(:has(h3)){display:none}


/* ============================================================
   LIVE ZOEKSUGGESTIES
   ============================================================ */
.hsearch form,.msearch{position:relative}

.sugg{position:absolute;left:0;right:0;top:calc(100% + 8px);z-index:120;background:#fff;
  border:1px solid var(--line);border-radius:16px;box-shadow:0 26px 46px -26px rgba(11,18,40,.45);
  max-height:min(70vh,520px);overflow-y:auto;overscroll-behavior:contain;padding:6px}
.msearch .sugg{left:20px;right:20px;top:calc(100% - 6px)}

.sugg__group{padding:6px 4px}
.sugg__group + .sugg__group{border-top:1px solid var(--line);margin-top:4px}
.sugg__label{display:block;font-family:var(--font-body);font-weight:700;font-size:11.5px;letter-spacing:.07em;
  text-transform:uppercase;color:var(--muted);padding:6px 10px 8px}

.sugg__cat{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 10px;
  border-radius:10px;font-weight:600;font-size:15px;color:var(--ink)}
.sugg__cat span{font-size:13px;font-weight:500;color:var(--muted)}
.sugg__cat:hover,.sugg__cat.is-active{background:var(--surface);color:var(--accent)}

.sugg__item{display:flex;align-items:center;gap:12px;padding:8px 10px;border-radius:12px;position:relative}
.sugg__item:hover,.sugg__item.is-active{background:var(--surface)}
.sugg__thumb{flex:none;width:52px;height:52px;border-radius:10px;background:#F2F3F7;display:flex;align-items:center;justify-content:center;overflow:hidden}
.sugg__thumb img{width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply}
.sugg__info{flex:1;min-width:0;display:flex;flex-direction:column;gap:2px}
.sugg__name{font-weight:600;font-size:15px;color:var(--ink);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.sugg__price{font-family:var(--font-display);font-weight:600;font-size:14.5px;color:var(--accent)}
.sugg__sale{flex:none;background:var(--accent);color:#fff;border-radius:var(--r-pill);font-size:11px;font-weight:700;
  text-transform:uppercase;letter-spacing:.03em;padding:4px 9px}

.sugg__all{display:block;margin:4px;padding:13px 12px;border-radius:12px;background:var(--surface);
  text-align:center;font-weight:600;font-size:14.5px;color:var(--accent)}
.sugg__all:hover,.sugg__all.is-active{background:var(--accent);color:#fff}

.sugg__empty{padding:26px 16px;text-align:center;font-size:15px;color:var(--ink)}
.sugg__empty span{font-size:14px;color:var(--muted)}

.sugg__loading{display:flex;gap:6px;align-items:center;justify-content:center;padding:28px}
.sugg__loading i{width:8px;height:8px;border-radius:50%;background:var(--accent);display:block;animation:pepbounce 1s ease-in-out infinite}
.sugg__loading i:nth-child(2){animation-delay:.15s}
.sugg__loading i:nth-child(3){animation-delay:.3s}
@media (prefers-reduced-motion:reduce){.sugg__loading i{animation:none}}

/* ---- Zoekresultatenpagina ---- */
.search-results .pagearticle__body,.search .pagearticle__body{max-width:100%}


/* ============================================================
   PRODUCTPAGINA v2: swipebare galerij, strak en zonder kaders
   ============================================================ */

/* ---- Galerij ---- */
.pgal{position:relative}
.pgal__stage{position:relative;border-radius:20px;overflow:hidden;background:#F2F3F7}
.pgal__track{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;
  -webkit-overflow-scrolling:touch;cursor:grab;scroll-behavior:smooth}
.pgal__track::-webkit-scrollbar{display:none}
.pgal__track.is-dragging{cursor:grabbing;scroll-behavior:auto;scroll-snap-type:none}
.pgal__slide{flex:0 0 100%;scroll-snap-align:center;margin:0;padding:0;display:flex;align-items:center;justify-content:center;
  aspect-ratio:1/1;background:#F2F3F7}
.pgal__img{width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply;padding:22px;
  user-select:none;-webkit-user-drag:none;cursor:zoom-in}
.pgal--empty .pgal__stage{padding:40px}

.pgal__badge{position:absolute;top:14px;left:14px;z-index:4;background:var(--accent);color:#fff;
  border-radius:var(--r-pill);font-weight:700;font-size:12.5px;letter-spacing:.02em;text-transform:uppercase;padding:8px 14px;line-height:1}

.pgal__nav{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.94);box-shadow:0 10px 22px -12px rgba(11,18,40,.45);display:none;
  align-items:center;justify-content:center;transition:opacity .15s ease,background .15s ease}
.pgal__nav::after{content:"";width:10px;height:10px;border-right:2.4px solid var(--ink);border-bottom:2.4px solid var(--ink)}
.pgal__nav--prev{left:14px}
.pgal__nav--prev::after{transform:rotate(135deg) translate(-2px,-2px)}
.pgal__nav--next{right:14px}
.pgal__nav--next::after{transform:rotate(-45deg) translate(-2px,-2px)}
.pgal__nav:hover{background:#fff}
.pgal__nav:disabled{opacity:0;pointer-events:none}
.pgal--multi:hover .pgal__nav{display:flex}

.pgal__dots{position:absolute;left:0;right:0;bottom:14px;z-index:3;display:flex;justify-content:center;gap:6px}
.pgal__dot{width:7px;height:7px;border-radius:50%;background:rgba(14,18,32,.22);border:0;padding:0;transition:width .2s ease,background .2s ease}
.pgal__dot.is-active{width:22px;border-radius:99px;background:var(--accent)}

.pgal__thumbs{display:flex;gap:10px;margin-top:12px;overflow-x:auto;scrollbar-width:none;padding-bottom:2px}
.pgal__thumbs::-webkit-scrollbar{display:none}
.pgal__thumb{flex:0 0 auto;width:78px;height:78px;border-radius:12px;background:#F2F3F7;border:2px solid transparent;
  padding:5px;overflow:hidden;transition:border-color .15s ease}
.pgal__thumb img{width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply;display:block}
.pgal__thumb.is-active{border-color:var(--accent)}
.pgal__thumb:hover{border-color:#cfd6f2}

/* Vergrote weergave */
.plight{position:fixed;inset:0;z-index:300;background:rgba(11,18,40,.86);display:none;align-items:center;justify-content:center;padding:26px}
.plight.is-open{display:flex}
.plight img{max-width:min(96vw,1100px);max-height:92vh;object-fit:contain;border-radius:14px;background:#fff}
.plight__close{position:absolute;top:18px;right:22px;width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.14);
  color:#fff;font-size:28px;line-height:1;display:flex;align-items:center;justify-content:center}
.plight__close:hover{background:rgba(255,255,255,.26)}
body.plight-open{overflow:hidden}

@media (min-width:1001px){
  .pgal__dots{display:none}
}
@media (max-width:1000px){
  .pgal__stage{border-radius:16px}
  .pgal__thumbs{margin-top:10px}
  .pgal__thumb{width:64px;height:64px}
}

/* ---- Secties onder het product: strak, geen kaders ---- */
.pdpsections{margin-top:var(--xl);border-top:1px solid var(--line)}
.pdpsections__inner{max-width:920px}
.pacc{border-bottom:1px solid var(--line)}
.pacc__btn{display:flex;align-items:center;justify-content:space-between;gap:18px;width:100%;background:none;border:0;
  padding:22px 0;font-family:var(--font-display);font-weight:600;font-size:19px;color:var(--ink);text-align:left;cursor:pointer}
.pacc__btn:hover{color:var(--accent)}
.pacc__sign{flex:none;width:11px;height:11px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-3px);transition:transform .2s ease}
.pacc__btn[aria-expanded="true"] .pacc__sign{transform:rotate(-135deg) translateY(2px)}
.pacc__body{padding:0 0 26px;color:var(--muted);font-size:16px;line-height:1.7}
.pacc__body > *:first-child{margin-top:0}
.pacc__body h1,.pacc__body h2,.pacc__body h3,.pacc__body h4{font-family:var(--font-display);font-weight:600;color:var(--ink);
  font-size:18px;line-height:1.3;margin:22px 0 8px}
.pacc__body p{margin:0 0 13px}
.pacc__body a{color:var(--accent);font-weight:600}
.pacc__body ul,.pacc__body ol{margin:0 0 13px;padding-left:20px;list-style:disc}
.pacc__body ol{list-style:decimal}
.pacc__body li{margin-bottom:5px}
.pacc__body img{border-radius:12px;height:auto;max-width:100%}
.pacc__body figure{margin:16px 0}
.pacc__body table{width:100%;border-collapse:collapse;margin:0 0 14px}
.pacc__body th,.pacc__body td{text-align:left;padding:11px 12px;border-bottom:1px solid var(--line);font-size:15px;vertical-align:top}
.pacc__body th{font-weight:600;color:var(--ink);width:36%;background:none}
.pacc__body .wp-block-columns{display:flex;gap:22px;flex-wrap:wrap}
.pacc__body .wp-block-column{flex:1;min-width:220px}
.pacc__body .wp-block-group,.pacc__body .wp-block-cover{background:none!important;padding:0!important;border:0!important}
.pdp-video{position:relative;padding-top:56.25%;border-radius:14px;overflow:hidden;background:#F2F3F7}
.pdp-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

/* WooCommerce-tabelrestanten in de specificaties */
.pepschep .pacc__body .shop_attributes{border:0}
.pepschep .pacc__body .shop_attributes tr{border:0}
.pepschep .pacc__body .shop_attributes th,.pepschep .pacc__body .shop_attributes td{border-bottom:1px solid var(--line);padding:11px 12px}
.pepschep .pacc__body .shop_attributes p{margin:0}

/* Beoordelingen */
.pepschep .pacc__body #reviews{margin:0}
.pepschep .pacc__body .commentlist{list-style:none;margin:0 0 20px;padding:0}
.pepschep .pacc__body .comment_container{display:flex;gap:14px;padding:16px 0;border-bottom:1px solid var(--line)}
.pepschep .pacc__body .comment_container img{border-radius:50%;width:46px;height:46px}
.pepschep .pacc__body .comment-text{flex:1}
.pepschep .pacc__body .comment-form input[type="text"],
.pepschep .pacc__body .comment-form input[type="email"],
.pepschep .pacc__body .comment-form textarea{width:100%;border:1px solid var(--line);border-radius:12px;padding:12px 14px;font-family:var(--font-body)}
.pepschep .pacc__body .comment-form .submit{background:var(--accent);color:#fff;border:0;border-radius:var(--r-pill);
  font-weight:600;padding:13px 24px;font-family:var(--font-body)}

/* Oude tab-opmaak niet meer nodig */
.pepschep .woocommerce-tabs{display:none}

@media (max-width:560px){
  .pacc__btn{font-size:17px;padding:18px 0}
  .pacc__body{font-size:15.5px}
}


/* ============================================================
   PRODUCTPAGINA v3: geen kader om het koopblok, nette invulvelden
   ============================================================ */

/* Het kader van de winkelmand-samenvatting hoort niet op de productpagina */
.pepschep .pdp__summary.summary{position:static;border:0;border-radius:0;background:none;padding:0}

/* Secties over de volle breedte, niet half links */
.pdpsections__inner{max-width:100%}
.pacc__body > *{max-width:1000px}
.pacc__body table,.pacc__body .wp-block-columns{max-width:100%}

/* Gerelateerde en samen-gekochte producten: normale kaartmaat */
.pepschep .related ul.products,
.pepschep .up-sells ul.products{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}
.pepschep .related li.product,
.pepschep .up-sells li.product{width:auto!important;float:none!important;margin:0!important}
.pepschep .related li.product img,
.pepschep .up-sells li.product img{width:100%;height:auto;aspect-ratio:4/5;object-fit:contain}
@media (max-width:1000px){
  .pepschep .related ul.products,.pepschep .up-sells ul.products{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:760px){
  .pepschep .related ul.products,.pepschep .up-sells ul.products{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
}

/* Thumbnailstrip: aangeven dat er meer is */
.pgal__thumbs{position:relative;scroll-snap-type:x proximity}
.pgal__thumb{scroll-snap-align:start}

/* Aantal en knop even hoog */
.pepschep .pdp__summary form.cart input.qty{height:56px}
.pepschep .pdp__summary form.cart button.single_add_to_cart_button{height:56px;padding-block:0;display:inline-flex;align-items:center;justify-content:center}

/* ============================================================
   PRODUCTOPTIES (Extra Product Options)
   ============================================================ */
.pepschep .tc-extra-product-options,
.pepschep .tm-extra-product-options{margin:0 0 6px;padding:0;border:0;background:none;font-family:var(--font-body)}
.pepschep .tc-extra-product-options *{box-sizing:border-box}

/* Elk optieveld als rustig blok met een dunne scheidingslijn */
.pepschep .cpf-element{padding:18px 0;border-top:1px solid var(--line);margin:0}
.pepschep .cpf-section:first-child .cpf-element:first-child{border-top:0;padding-top:6px}
.pepschep .cpf-section{padding:0;margin:0;border:0;background:none}
.pepschep .tc-section-inner-wrap{padding:0}

/* Labels en omschrijvingen */
.pepschep .tc-epo-label,
.pepschep .tm-epo-element-label{font-family:var(--font-display)!important;font-weight:600!important;font-size:16px!important;
  color:var(--ink)!important;margin:0 0 4px!important;padding:0!important;text-transform:none!important;letter-spacing:0!important;border:0!important;background:none!important}
.pepschep .tc-epo-element-label-text{font-size:inherit;color:inherit}
.pepschep .tm-element-description,
.pepschep .tm-description{color:var(--muted)!important;font-size:14px!important;margin:0 0 12px!important;padding:0!important;line-height:1.5}
.pepschep .tm-element-description p{margin:0}
.pepschep .tc-required,.pepschep .tm-required{color:var(--accent)}

/* Keuzelijsten: keurige rijen in plaats van kale opsommingen */
.pepschep .tmcp-ul-wrap,
.pepschep .tmcp-elements{list-style:none;margin:0;padding:0;display:grid;gap:9px}
.pepschep .tmcp-field-wrap{margin:0;padding:0;list-style:none;float:none;width:auto}
.pepschep .tmcp-field-wrap-inner{display:flex;align-items:center;gap:11px;width:100%}
.pepschep .tc-col{margin:0;padding:0}
.pepschep .tc-field-label-wrap{flex:1;min-width:0}

.pepschep .tmcp-field-wrap label.tm-epo-field-label,
.pepschep .tmcp-field-wrap > .tmcp-field-wrap-inner label{display:flex!important;align-items:center;gap:11px;width:100%;margin:0!important;
  padding:13px 15px;border:1px solid var(--line);border-radius:12px;background:#fff;cursor:pointer;
  font-weight:500;font-size:15px;color:var(--ink);transition:border-color .15s ease,background .15s ease}
.pepschep .tmcp-field-wrap label:hover{border-color:#cfd6f2}
.pepschep .tmcp-field-wrap.tc-active label,
.pepschep .tmcp-field-wrap label:has(input:checked){border-color:var(--accent);background:var(--surface)}

/* Keuzerondjes en vinkjes */
.pepschep .tc-extra-product-options input[type="radio"],
.pepschep .tc-extra-product-options input[type="checkbox"]{width:19px;height:19px;accent-color:var(--accent);margin:0;flex:none}

/* Invoervelden */
.pepschep .tc-extra-product-options input[type="text"],
.pepschep .tc-extra-product-options input[type="email"],
.pepschep .tc-extra-product-options input[type="tel"],
.pepschep .tc-extra-product-options input[type="number"],
.pepschep .tc-extra-product-options input[type="date"],
.pepschep .tc-extra-product-options textarea,
.pepschep .tc-extra-product-options select{width:100%;max-width:100%;border:1px solid var(--line);border-radius:12px;
  padding:13px 15px;font-family:var(--font-body);font-size:15.5px;color:var(--ink);background:#fff;height:auto;line-height:1.35}
.pepschep .tc-extra-product-options input:focus,
.pepschep .tc-extra-product-options textarea:focus,
.pepschep .tc-extra-product-options select:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(46,75,255,.14)}
.pepschep .tc-extra-product-options textarea{min-height:96px;resize:vertical}
.pepschep .tc-chars,.pepschep .tc-chars-remanining{font-size:13px;color:var(--muted);margin-top:6px;display:block}

/* Beeldkeuzes (logo's, prints) */
.pepschep .tc-images-container{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(112px,1fr));gap:12px}
.pepschep .tc-images-container .tmcp-field-wrap{margin:0}
.pepschep .tc-images-container label{flex-direction:column;gap:8px;padding:10px!important;text-align:center;font-size:13.5px;line-height:1.3}
.pepschep .tc-images-container img{width:100%;height:auto;aspect-ratio:1/1;object-fit:contain;border-radius:8px;background:#F2F3F7;display:block}
.pepschep .tm-per-row{width:auto!important;float:none!important}

/* Kleurvakjes */
.pepschep .tc-colors-container{display:flex;flex-wrap:wrap;gap:10px}
.pepschep .tmhexcolor{width:38px;height:38px;border-radius:50%;border:2px solid var(--line);display:block}
.pepschep .tmcp-field-wrap.tc-active .tmhexcolor{border-color:var(--accent)}

/* Prijslabel bij een optie */
.pepschep .tc-price,.pepschep .tm-epo-element-label .price,
.pepschep .tmcp-field-wrap .price{font-weight:600;color:var(--accent);font-size:14.5px;white-space:nowrap;margin-left:auto}

/* Uploadveld */
.pepschep .tm-upload-drag,.pepschep .tc-upload-files{border:1.5px dashed var(--line);border-radius:14px;padding:18px;text-align:center;background:var(--surface)}
.pepschep .tc-upload-message{font-size:14px;color:var(--muted)}

/* Totalen van de opties */
.pepschep .tm-extra-product-options-totals{margin:14px 0 0;padding:14px 0 0;border-top:1px solid var(--line);
  font-family:var(--font-body);font-size:15px;color:var(--muted);background:none}
.pepschep .tm-final-totals,.pepschep .tm-options-totals{display:flex;justify-content:space-between;gap:12px;padding:4px 0}
.pepschep .tm-final-totals{font-family:var(--font-display);font-weight:600;font-size:19px;color:var(--ink)}
.pepschep .tm-final-totals .amount{color:var(--ink)}

/* Resetknopjes rustig houden */
.pepschep .tm-epo-reset-radio,.pepschep .tm-has-undo-button .tc-epo-undo{color:var(--muted);font-size:13px}

@media (max-width:560px){
  .pepschep .tc-images-container{grid-template-columns:repeat(auto-fill,minmax(96px,1fr));gap:10px}
  .pepschep .tc-epo-label,.pepschep .tm-epo-element-label{font-size:15.5px!important}
}


/* ============================================================
   PRODUCTPAGINA: korting, aftelling, meelopende koopbalk
   ============================================================ */

/* Kortingsbadge */
.pdp__save{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:0 0 14px}
.pdp__savepct{background:var(--accent);color:#fff;border-radius:var(--r-pill);font-weight:700;font-size:13px;
  letter-spacing:.02em;padding:7px 13px;line-height:1}
.pdp__saveamt{font-size:14.5px;color:var(--muted);font-weight:500}
.pdp__saveamt .amount{color:var(--ink);font-weight:600}

/* Aftelling */
.pdp__deadline{display:flex;align-items:center;gap:10px;background:#FFF7E8;border:1px solid #F5E2BC;color:#7A5312;
  border-radius:12px;padding:11px 14px;font-size:14.5px;line-height:1.35;margin:0 0 16px}
.pdp__deadline b{font-weight:700;color:#5E3F0B}
.pdp__deadlineico{flex:none;display:inline-flex;color:#B8811F}
.pdp__deadlineico svg{width:20px;height:20px}

/* Meelopende koopbalk */
.stickybuy{position:fixed;left:0;right:0;bottom:0;z-index:150;background:rgba(255,255,255,.97);
  backdrop-filter:saturate(180%) blur(12px);border-top:1px solid var(--line);
  box-shadow:0 -14px 30px -24px rgba(11,18,40,.5);padding:10px 0;
  padding-bottom:calc(10px + env(safe-area-inset-bottom))}
.stickybuy[hidden]{display:none}
.stickybuy__inner{display:flex;align-items:center;gap:14px;width:100%;max-width:var(--container);margin-inline:auto;padding-inline:20px}
.stickybuy__thumb{flex:none;width:46px;height:46px;border-radius:10px;background:#F2F3F7;overflow:hidden;display:flex;align-items:center;justify-content:center}
.stickybuy__thumb img{width:100%;height:100%;object-fit:contain;mix-blend-mode:multiply}
.stickybuy__info{flex:1;min-width:0;display:flex;flex-direction:column;gap:1px}
.stickybuy__name{font-weight:600;font-size:15px;color:var(--ink);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.stickybuy__price{font-family:var(--font-display);font-weight:600;font-size:16px;color:var(--ink)}
.stickybuy__price del{opacity:1;color:var(--muted);font-size:13.5px;font-weight:400;margin-right:5px}
.stickybuy__price ins{text-decoration:none;background:none;color:var(--accent)}
.stickybuy__btn{flex:none;padding:14px 24px;font-size:15.5px}

/* Aandacht vragen als er nog iets gekozen moet worden */
.pepschep form.cart.is-attention{animation:pepattn .6s ease}
@keyframes pepattn{0%,100%{transform:translateX(0)}20%{transform:translateX(-5px)}40%{transform:translateX(5px)}60%{transform:translateX(-3px)}80%{transform:translateX(3px)}}
@media (prefers-reduced-motion:reduce){.pepschep form.cart.is-attention{animation:none}}

/* Eerder bekeken */
.recentseen{margin-top:var(--lg)}

@media (max-width:560px){
  .stickybuy__inner{gap:10px;padding-inline:16px}
  .stickybuy__thumb{display:none}
  .stickybuy__btn{padding:14px 18px;font-size:15px}
  .pdp__deadline{font-size:13.5px}
}


/* ============================================================
   PRODUCTOPTIES: keuze met afbeelding (logo's, prints)
   Structuur: li > .tmcp-field-wrap-inner > .tc-field-label-wrap > label
              > .tc-label-wrap > (.tc-input-wrap > input) + img + .tc-label
   ============================================================ */

.pepschep .tc-images-container{display:grid!important;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
  gap:14px;list-style:none;margin:0;padding:0;float:none}
.pepschep .tc-images-container > li.tmcp-field-wrap{margin:0!important;padding:0!important;width:auto!important;
  float:none!important;list-style:none;display:block}
.pepschep .tc-images-container .tmcp-field-wrap-inner,
.pepschep .tc-images-container .tc-field-label-wrap{display:block;width:100%;margin:0;padding:0;float:none}

/* De hele kaart is klikbaar */
.pepschep .tc-images-container label.tm-epo-field-label{display:block!important;width:100%;margin:0!important;
  padding:0!important;border:0!important;background:none!important;cursor:pointer}

.pepschep .tc-images-container .tc-label-wrap{position:relative;display:flex!important;flex-direction:column;
  align-items:stretch;gap:0;border:1.5px solid var(--line);border-radius:14px;background:#fff;overflow:hidden;
  transition:border-color .15s ease,box-shadow .15s ease;height:100%}
.pepschep .tc-images-container label:hover .tc-label-wrap{border-color:#cfd6f2}
.pepschep .tc-images-container .tmcp-field-wrap.tc-active .tc-label-wrap,
.pepschep .tc-images-container .tc-label-wrap:has(input:checked){border-color:var(--accent);box-shadow:0 0 0 3px rgba(46,75,255,.12)}

/* Afbeelding netjes vierkant op een rustige ondergrond */
.pepschep .tc-images-container img.tc-image{display:block!important;width:100%!important;height:auto!important;
  aspect-ratio:1/1;object-fit:contain;background:#F2F3F7;padding:10px;margin:0!important;float:none!important;
  mix-blend-mode:multiply;border:0;border-radius:0;max-width:100%}

/* Naam onder de afbeelding */
.pepschep .tc-images-container .tc-label,
.pepschep .tc-images-container .radio-image-label{display:block!important;width:100%;margin:0!important;padding:10px 12px 12px!important;
  text-align:center;background:#fff;float:none!important}
.pepschep .tc-images-container .tc-label-inner{display:block;width:100%!important;padding:0!important;margin:0!important}
.pepschep .tc-images-container .tc-label-text{display:block;font-family:var(--font-body);font-weight:600;font-size:13.5px;
  line-height:1.3;color:var(--ink);text-transform:none;letter-spacing:0;overflow-wrap:anywhere}
.pepschep .tc-images-container .tmcp-field-wrap.tc-active .tc-label-text,
.pepschep .tc-images-container .tc-label-wrap:has(input:checked) .tc-label-text{color:var(--accent)}

/* Keuzerondje als vinkje rechtsboven */
.pepschep .tc-images-container .tc-input-wrap{position:absolute;top:9px;right:9px;z-index:2;margin:0!important;padding:0!important;
  width:24px;height:24px;border-radius:50%;background:rgba(255,255,255,.94);box-shadow:0 2px 8px -3px rgba(11,18,40,.4);
  display:flex;align-items:center;justify-content:center}
.pepschep .tc-images-container input[type="radio"],
.pepschep .tc-images-container input[type="checkbox"]{width:16px!important;height:16px!important;margin:0!important;
  accent-color:var(--accent);cursor:pointer}

/* Prijs bij een keuze */
.pepschep .tc-images-container .tc-price,
.pepschep .tc-images-container .price{display:block;margin:4px 0 0;font-family:var(--font-display);font-weight:600;
  font-size:13.5px;color:var(--accent);text-align:center}

/* Losse tekstkeuzes (geen afbeelding) blijven rijen */
.pepschep .tmcp-ul-wrap:not(.tc-images-container):not(.tc-colors-container) .tc-label-wrap{display:flex;align-items:center;gap:11px;width:100%}
.pepschep .tmcp-ul-wrap:not(.tc-images-container) .tc-input-wrap{flex:none;margin:0}
.pepschep .tmcp-ul-wrap:not(.tc-images-container) .tc-label{flex:1;min-width:0}

@media (max-width:760px){
  .pepschep .tc-images-container{grid-template-columns:repeat(auto-fill,minmax(128px,1fr));gap:11px}
  .pepschep .tc-images-container .tc-label-text{font-size:12.5px}
}
@media (max-width:400px){
  .pepschep .tc-images-container{grid-template-columns:repeat(2,minmax(0,1fr))}
}


/* ============================================================
   Afwerking: productpagina en winkelmand
   ============================================================ */

/* Kruimelpad boven het product, buiten de galerij */
.pdp__crumbs{grid-column:1 / -1;margin:0 0 16px;font-size:13.5px;color:var(--muted)}
.pdp__crumbs a:hover{color:var(--accent)}
.pdp__grid{grid-template-rows:auto 1fr}
.pepschep .pdp__media{grid-row:2}
.pepschep .pdp__summary{grid-row:2}

/* Grotere thumbnails, zoals bij het voorbeeld */
.pgal__thumb{width:96px;height:96px;border-radius:14px}
@media (max-width:1000px){.pgal__thumb{width:76px;height:76px}}

/* Trust-punten compacter nu het er zes zijn */
.pdp__usps{gap:8px}
.pdp__usps li{font-size:14.5px}

/* ---- Winkelmand: aantal en verwijderen bij elkaar ---- */
.cartrow__bottom{justify-content:flex-start;gap:20px}
.cartrow__qty{flex:none}
.cartrow__remove{flex:none}
.cartrow__info{gap:14px}
.cartrow__top{align-items:flex-start}

/* Bij één regel oogt de rij rustiger met een vaste hoogte-verhouding */
.cartlist .cartrow:only-child{padding-block:22px}

@media (max-width:560px){
  .cartrow__bottom{gap:14px}
  .pepschep .cartrow__qty input.qty{width:66px;height:42px}
}


/* ============================================================
   PEP SCHEP - uitgebreide footer
   ============================================================ */
.site-footer{background:var(--ink);color:#aeb5cd;margin-top:var(--xl);padding:0 0 26px}

/* USP-balk bovenin */
.footusp{border-bottom:1px solid rgba(255,255,255,.09);background:rgba(255,255,255,.03)}
.footusp__list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.footusp__list li{display:flex;align-items:center;gap:12px;padding:20px 0;min-width:0}
.footusp__list svg{flex:none;width:24px;height:24px;color:#8fa2ff}
.footusp__list span{display:flex;flex-direction:column;min-width:0;font-size:13.5px;line-height:1.35;color:#98a0ba}
.footusp__list b{color:#fff;font-family:var(--font-display);font-weight:600;font-size:14.5px}

/* Kolommen */
.footcols{display:grid;grid-template-columns:1.5fr 1fr 1.05fr 1.1fr 1.15fr;gap:36px 30px;padding-top:44px;align-items:start}
.footcols>div{min-width:0}
.site-footer .brand{color:#fff;font-size:24px}
.site-footer h4{color:#fff;font-family:var(--font-display);font-weight:600;font-size:15px;margin:0 0 14px;letter-spacing:.01em}
.footcol ul{list-style:none;margin:0;padding:0}
.footcol li{margin-bottom:9px;font-size:14.5px;line-height:1.4}
.footcol a{color:#aeb5cd;transition:color .15s ease}
.site-footer a:hover{color:#fff}

.footbrand__text{margin-top:14px;max-width:34ch;font-size:14.5px;line-height:1.6}

.footsocial{display:flex;gap:10px;margin-top:18px}
.footsocial a{width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.16);
  display:inline-flex;align-items:center;justify-content:center;color:#c7ccdf;transition:.15s ease}
.footsocial svg{width:18px;height:18px}
.footsocial a:hover{background:#fff;border-color:#fff;color:var(--ink)}

.footscore{display:flex;align-items:center;gap:9px;margin-top:18px;font-size:13px;color:#98a0ba;flex-wrap:wrap}
.footscore__stars{color:#ffc244;letter-spacing:1px;font-size:14px}

/* Contactblok */
.footcontact__intro{font-size:14px;line-height:1.5;margin:0 0 14px;color:#98a0ba}
.footcontact__row{display:flex;align-items:center;gap:10px;padding:10px 13px;margin-bottom:9px;
  border:1px solid rgba(255,255,255,.14);border-radius:12px;font-size:14px;font-weight:600;color:#fff;
  background:rgba(255,255,255,.03);transition:.15s ease}
.footcontact__row svg{flex:none;width:18px;height:18px;color:#8fa2ff}
.footcontact__row:hover{background:#fff;border-color:#fff;color:var(--ink)}
.footcontact__row:hover svg{color:var(--ink)}
.footaddr{margin:16px 0 0;font-size:13.5px;line-height:1.6;color:#98a0ba}
.footaddr span{color:#7e86a0}

/* Betaalmethoden */
.footpay{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-top:40px;padding-top:24px;
  border-top:1px solid rgba(255,255,255,.1)}
.footpay__label{font-size:13px;color:#7e86a0}
.footpay__list{list-style:none;display:flex;flex-wrap:wrap;gap:8px;margin:0;padding:0}
.footpay__list li{background:#fff;color:#1b1f33;border-radius:7px;padding:6px 11px;
  font-family:var(--font-display);font-weight:600;font-size:12px;line-height:1;letter-spacing:.01em}

/* Onderbalk */
.footbottom{display:flex;justify-content:space-between;align-items:center;gap:14px;margin-top:22px;padding-top:20px;
  border-top:1px solid rgba(255,255,255,.1);font-size:13px;flex-wrap:wrap;color:#7e86a0}
.footbottom__links{display:flex;gap:18px;flex-wrap:wrap}
.footbottom__links a{color:#7e86a0}

@media (max-width:1100px){
  .footcols{grid-template-columns:1fr 1fr 1fr;gap:34px 26px}
  .footbrand{grid-column:1 / -1}
  .footbrand__text{max-width:52ch}
}
@media (max-width:820px){
  .footusp__list{grid-template-columns:1fr 1fr;gap:0 18px}
  .footusp__list li{padding:15px 0}
}
@media (max-width:640px){
  .footcols{grid-template-columns:1fr 1fr;gap:30px 20px;padding-top:34px}
  .footcontact{grid-column:1 / -1}
  .footbottom{flex-direction:column;align-items:flex-start;gap:10px}
  .footpay{gap:10px}
}
@media (max-width:400px){
  .footusp__list{grid-template-columns:1fr}
  .footcols{grid-template-columns:1fr}
}

/* footer - kleine correcties */
.footcontact__row{font-size:13.5px;white-space:nowrap}
@media (max-width:400px){
  .footcols{grid-template-columns:1fr 1fr}
}


/* FAQ-pagina: blokinhoud gecentreerd i.p.v. smal links */
.page-id-38 .pagearticle__body{max-width:1040px;margin-inline:auto}
.page-id-38 .pagehead__title{max-width:1040px;margin-inline:auto}


/* Mobiel menu: uniforme tekstgrootte op elk niveau */
.mdrawer__nav a span{font-size:inherit;font-weight:inherit}
.mdrawer__nav .mnav__row,
.mdrawer__nav a.mnav__row,
.mdrawer__nav button.mnav__row{font-size:16px;font-weight:600;line-height:1.3}
.mdrawer__nav .mnav__label{font-size:inherit;font-weight:inherit;letter-spacing:0}
.mdrawer__nav a.mnav__row--deep{font-size:16px;font-weight:500;color:var(--muted)}
.mdrawer__nav a.mnav__row--deep .mnav__label{font-size:inherit;font-weight:inherit}
.mdrawer__nav .mview__back{font-size:16px;font-weight:600}
.mdrawer__nav .mnav__service a{font-size:15px;font-weight:600}

/* Mobiel menu: gelijke kleur voor link- en knoprijen */
.mdrawer__nav a span{color:inherit}
.mdrawer__nav a.mnav__row{color:var(--ink)}
.mdrawer__nav a.mnav__row--all{color:var(--accent)}
.mdrawer__nav a.mnav__row--deep{color:var(--muted)}


/* ============================================================
   Paginakop in merkstijl - gelijk aan contact en shop-archief
   ============================================================ */
.pagewrap--hero{padding-top:0}
.phero{background:var(--surface);border-bottom:1px solid var(--line);padding:44px 0;margin-bottom:34px}
.phero .crumbs{margin-bottom:0}
.phero__title{font-family:var(--font-display);font-weight:600;font-size:clamp(30px,4.6vw,52px);
  line-height:1.05;letter-spacing:-.015em;color:var(--ink);margin-top:8px;max-width:20ch}
.phero__title em{font-style:normal;color:var(--accent)}
.phero__sub{color:var(--muted);max-width:56ch;margin-top:14px;font-size:17px;line-height:1.6}
@media (max-width:700px){
  .phero{padding:30px 0;margin-bottom:26px}
  .phero__title{max-width:none}
  .phero__sub{font-size:15.5px;margin-top:12px}
}

/* Blok-gebaseerde contentpagina's (FAQ, Over ons): inhoud gecentreerd i.p.v. smal links */
.page-id-38 .pagearticle__body,
.page-id-39 .pagearticle__body{max-width:1040px;margin-inline:auto}


/* ============================================================
   Productfoto's - een universele aanpak voor de hele site
   Vaste verhouding 5/6, foto vult het kader (cover), geen padding,
   geen mix-blend-mode. Zelfde principe als op fleeqers.
   ============================================================ */
.card__media,
.pepschep ul.products li.product a img.attachment-woocommerce_thumbnail{border-radius:14px}

.pepschep .card__media{aspect-ratio:5/6;padding:0!important;border-radius:14px;overflow:hidden;
  background:#F2F3F7;display:block;position:relative}
.pepschep .card__media img{width:100%!important;height:100%!important;object-fit:cover!important;
  object-position:50% 50%;mix-blend-mode:normal!important;display:block;border-radius:0;
  transition:transform .45s cubic-bezier(.2,.6,.2,1)}
.pepschep .card:hover .card__media img{transform:scale(1.04)}
@media (max-width:600px){
  .pepschep .card__media{padding:0!important}
}

/* Winkelmandlade en kleine miniaturen */
.pepschep .scart__thumb{display:block;width:72px;height:86px;flex:none;border-radius:12px;overflow:hidden;background:#F2F3F7}
.pepschep .scart__thumb img,
.pepschep .scart__img{width:100%!important;height:100%!important;object-fit:cover!important;
  mix-blend-mode:normal!important;display:block;border-radius:0}

/* WooCommerce-standaardlijsten (zoekresultaten, gerelateerd, cross-sells) */
.pepschep ul.products li.product img{aspect-ratio:5/6;width:100%;height:auto;object-fit:cover;
  mix-blend-mode:normal;border-radius:14px;background:#F2F3F7;display:block}
.pepschep .cross-sells img,
.pepschep .up-sells img{aspect-ratio:5/6;object-fit:cover;mix-blend-mode:normal;border-radius:14px}

/* Logo als afbeelding in header, mobiel menu en footer */
.brand.brand--img{display:inline-flex;align-items:center;line-height:0;font-size:0}
.brand__img{height:30px;width:auto;max-width:190px;display:block;object-fit:contain}
.site-header .brand__img{height:30px}
.mdrawer .brand__img{height:26px}
.site-footer .brand__img{height:30px;max-width:200px}
.site-footer .brand--light .brand__img{filter:brightness(0) invert(1)}
@media (max-width:600px){
  .brand__img{height:26px;max-width:150px}
  .site-footer .brand__img{height:28px}
}


/* ============================================================
   Meer beeld, minder loze marge - bredere container en
   smallere zijmarges op kleine schermen (zoals fleeqers)
   ============================================================ */
:root{--container:1440px}
.container{padding-inline:24px}
@media (max-width:1100px){
  .container{padding-inline:20px}
}
@media (max-width:700px){
  .container{padding-inline:16px}
}
@media (max-width:400px){
  .container{padding-inline:14px}
}

/* Productkaarten: meer per rij op grote schermen, dus grotere foto's */
@media (min-width:1200px){
  .pepschep .prodgrid,
  .pepschep ul.products{gap:26px}
}

/* Productkaarten: zelfde inzoom zodat het product goed zichtbaar is */
.pepschep .card__media img{transform:scale(1.12)}
.pepschep .card:hover .card__media img{transform:scale(1.17)}
.pepschep ul.products li.product img{transform:scale(1.1)}

/* Productkaart iets langer zodat er minder van de foto af valt */
.pepschep .card__media{aspect-ratio:4/5}
.pepschep ul.products li.product img{aspect-ratio:4/5}

/* ============================================================
   Productbadge (per product ingesteld, bijvoorbeeld Custom)
   ============================================================ */
.pbadge{position:absolute;z-index:4;display:inline-flex;align-items:center;border-radius:var(--r-pill);
  font-family:var(--font-display);font-weight:600;letter-spacing:.02em;line-height:1;white-space:nowrap;
  box-shadow:0 2px 8px rgba(14,18,32,.12)}
.pbadge--card{top:10px;left:10px;padding:6px 11px;font-size:11.5px}
.pbadge--pdp{top:14px;left:14px;padding:8px 14px;font-size:13px}
.card__media{position:relative}
.card__sale{z-index:4}
.card__sale + .pbadge--card{left:auto;right:10px}
.pgal__badge + .pbadge--pdp{left:auto;right:14px}
@media (max-width:600px){
  .pbadge--card{top:8px;left:8px;padding:5px 9px;font-size:10.5px}
  .card__sale + .pbadge--card{left:auto;right:8px}
}

/* Sale-badge in een eigen kleur, niet het blauw van de winkelmandknop */
.pepschep .card__sale,
.pepschep .pgal__badge{background:#FF324A!important;color:#fff!important;border:0;
  font-family:var(--font-display);font-weight:600;letter-spacing:.03em;text-transform:uppercase;
  border-radius:var(--r-pill);box-shadow:0 2px 8px rgba(255,50,74,.28)}
.pepschep .card__sale{position:absolute;top:10px;left:10px;z-index:4;padding:6px 11px;font-size:11.5px;line-height:1}
.pepschep .pgal__badge{padding:8px 14px;font-size:12.5px;line-height:1}
@media (max-width:600px){
  .pepschep .card__sale{top:8px;left:8px;padding:5px 9px;font-size:10.5px}
}

/* Archieffoto's iets minder inzoomen */
.pepschep .card__media img{transform:scale(1.04)}
.pepschep .card:hover .card__media img{transform:scale(1.09)}
.pepschep ul.products li.product img{transform:scale(1.03)}


/* ============================================================
   Afrekenen op mobiel: eerst invullen, samenvatting eronder
   ============================================================ */
@media (max-width:900px){
  .pepschep form.checkout{display:flex!important;flex-direction:column;gap:18px}
  .pepschep form.checkout .copage__main{order:1}
  .pepschep form.checkout .copage__side{order:2}
  .pepschep .copage__side .summary,
  .pepschep .copage__side .cartpage__side{position:static!important;top:auto!important}
}

/* Keuzerondjes voor verzending en betaling netjes tekenen */
.pepschep #payment input[type="radio"],
.pepschep .woocommerce-shipping-methods input[type="radio"],
.pepschep .shipping input[type="radio"]{-webkit-appearance:none;appearance:none;width:20px;height:20px;
  min-width:20px;flex:none;margin:0 10px 0 0;padding:0;border:2px solid var(--line);border-radius:50%;
  background:#fff;position:relative;cursor:pointer;vertical-align:middle;box-shadow:none;transition:border-color .15s ease}
.pepschep #payment input[type="radio"]:hover,
.pepschep .woocommerce-shipping-methods input[type="radio"]:hover{border-color:var(--muted)}
.pepschep #payment input[type="radio"]:checked,
.pepschep .woocommerce-shipping-methods input[type="radio"]:checked,
.pepschep .shipping input[type="radio"]:checked{border-color:var(--accent)}
.pepschep #payment input[type="radio"]:checked::after,
.pepschep .woocommerce-shipping-methods input[type="radio"]:checked::after,
.pepschep .shipping input[type="radio"]:checked::after{content:"";position:absolute;left:3px;top:3px;right:3px;bottom:3px;
  border-radius:50%;background:var(--accent)}
.pepschep .woocommerce-shipping-methods li{display:flex;align-items:flex-start;gap:0;margin:0 0 8px}
.pepschep .woocommerce-shipping-methods label{flex:1;min-width:0;line-height:1.4}

/* Waardebon compacter op mobiel */
@media (max-width:700px){
  .pepschep .checkout_coupon,
  .pepschep .woocommerce-form-coupon-toggle{margin-bottom:16px}
  .pepschep .woocommerce-form-coupon-toggle .woocommerce-info{padding:12px 14px;font-size:14px;line-height:1.45}
}

/* ============================================================
   Verzending als eigen stap op de afrekenpagina
   ============================================================ */
.pep-verborgen{display:none!important}
.coship__laden{color:var(--muted);font-size:14.5px;margin:0}
.coship__enkel{margin:0;font-size:15px;color:var(--ink)}
.pepschep #pep-ship-target ul.woocommerce-shipping-methods{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.pepschep #pep-ship-target ul.woocommerce-shipping-methods li{display:flex;align-items:flex-start;gap:12px;margin:0;
  padding:14px 16px;border:1px solid var(--line);border-radius:14px;background:#fff;cursor:pointer;
  transition:border-color .15s ease,background .15s ease}
.pepschep #pep-ship-target ul.woocommerce-shipping-methods li:hover{border-color:var(--muted)}
.pepschep #pep-ship-target ul.woocommerce-shipping-methods li:has(input:checked){border-color:var(--accent);
  background:rgba(46,75,255,.05);box-shadow:0 0 0 2px rgba(46,75,255,.12)}
.pepschep #pep-ship-target ul.woocommerce-shipping-methods label{flex:1;min-width:0;margin:0;cursor:pointer;
  font-size:15px;line-height:1.45;color:var(--ink);display:flex;align-items:baseline;justify-content:space-between;gap:12px}
.pepschep #pep-ship-target ul.woocommerce-shipping-methods label .amount,
.pepschep #pep-ship-target ul.woocommerce-shipping-methods label .woocommerce-Price-amount{font-family:var(--font-display);
  font-weight:600;white-space:nowrap;color:var(--ink)}
.pepschep #pep-ship-target .woocommerce-shipping-destination,
.pepschep #pep-ship-target .shipping-calculator-button{display:block;margin-top:10px;font-size:13px;color:var(--muted)}

/* Verzendlabel als gewone tekstregel, anders breekt een lange naam in kolommen */
.pepschep #pep-ship-target ul.woocommerce-shipping-methods label{display:block!important;
  justify-content:initial!important;align-items:initial!important;gap:0!important}
.pepschep #pep-ship-target ul.woocommerce-shipping-methods label .amount,
.pepschep #pep-ship-target ul.woocommerce-shipping-methods label .woocommerce-Price-amount{margin-left:6px}
.pepschep #pep-ship-target ul.woocommerce-shipping-methods li{align-items:center}

/* Lucht tussen de productlijst en het gekleurde tekstblok eronder */
.pepschep .archive-longread{margin-top:64px}
.pepschep .woo .woo-body{padding-bottom:8px}
.pepschep .archive-longread .longread{max-width:74ch}
@media (max-width:700px){
  .pepschep .archive-longread{margin-top:40px}
}

/* Icoon gratis verzending in side cart */
.pep-freeship__ic{flex:none;width:20px;height:20px;display:inline-flex;align-items:center;justify-content:center;color:#146C3A}
.pep-freeship__ic svg{width:20px;height:20px;display:block}

/* Mega-menu USP's: icoon gecentreerd, kaarten even hoog */
.pepschep .mega__foot{align-items:stretch}
.pepschep .mega__usp{align-items:center}
.pepschep .mega__uspico{display:inline-flex!important;align-items:center;justify-content:center;flex:none;line-height:0}
.pepschep .mega__uspico svg{display:block;width:19px;height:19px;flex:none}

/* ==========================================================
   Homepage-kop (hhero) - opnieuw opgemaakt 17 augustus 2026
   ========================================================== */
.pepschep .hhero{position:relative;padding:60px 0 64px;background:var(--surface);
  border-bottom:1px solid var(--line);overflow:hidden}
.pepschep .hhero::before{content:"";position:absolute;inset:auto -12% -60% 42%;height:75%;
  background:radial-gradient(closest-side, rgba(46,75,255,.09), rgba(46,75,255,0));
  pointer-events:none}
.pepschep .hhero > .container{position:relative;z-index:1}

.pepschep .hhero__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:56px;align-items:center}

.pepschep .hhero__copy{min-width:0}
.pepschep .hhero__eyebrow{display:inline-flex;align-items:center;gap:8px;
  font-size:12.5px;font-weight:700;letter-spacing:.10em;text-transform:uppercase;
  color:var(--accent);background:#fff;border:1px solid var(--line);
  border-radius:999px;padding:7px 14px}
.pepschep .hhero__dot{width:7px;height:7px;border-radius:50%;background:var(--accent);flex:none}

.pepschep .hhero__title{margin:18px 0 0;max-width:11ch;
  font-family:var(--font-display);font-weight:700;
  font-size:clamp(36px,4.2vw,58px);line-height:1.04;letter-spacing:-.02em;color:var(--ink)}
.pepschep .hhero__title em{font-style:normal;color:var(--accent)}

.pepschep .hhero__sub{margin:18px 0 0;max-width:40ch;font-size:17px;line-height:1.55;color:var(--muted)}

.pepschep .hhero__cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:26px}
.pepschep .hhero__cta .btn{height:54px;padding:0 26px;display:inline-flex;align-items:center;
  justify-content:center;font-size:16px}

.pepschep .hhero__usps{list-style:none;margin:26px 0 0;padding:0;
  display:flex;flex-wrap:wrap;gap:10px 22px}
.pepschep .hhero__usps li{display:flex;align-items:center;gap:9px;
  font-size:14.5px;font-weight:600;color:var(--ink)}
.pepschep .hhero__check{flex:none;width:19px;height:19px;border-radius:50%;
  background:var(--accent) no-repeat center/10px 10px;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")}

/* 2x2 raster met vier gelijke tegels */
.pepschep .hhero__visual{position:relative;min-width:0;width:100%;max-width:540px;
  margin-left:auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.pepschep .hhero__tile{position:relative;display:block;overflow:hidden;
  border-radius:20px;background:#fff;border:1px solid var(--line);
  text-decoration:none;line-height:0;
  transition:transform .25s ease, box-shadow .25s ease}
.pepschep .hhero__tile img{display:block;width:100%;height:auto;aspect-ratio:1/1;
  object-fit:cover;transform:scale(1.03);transition:transform .35s ease}
.pepschep .hhero__tile:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(20,22,45,.10)}
.pepschep .hhero__tile:hover img{transform:scale(1.08)}

.pepschep .hhero__badge{position:absolute;left:-24px;top:-20px;z-index:3;
  background:#fff;border:1px solid var(--line);border-radius:16px;
  padding:12px 18px;box-shadow:0 16px 36px rgba(20,22,45,.12);text-align:left}
.pepschep .hhero__badge b{display:block;font-family:var(--font-display);font-weight:700;
  font-size:22px;line-height:1;color:var(--accent)}
.pepschep .hhero__badge span{display:block;margin-top:3px;font-size:12.5px;color:var(--muted)}

@media (max-width:1080px){
  .pepschep .hhero__grid{gap:34px}
  .pepschep .hhero__badge{left:-14px;top:-16px;padding:10px 15px}
  .pepschep .hhero__badge b{font-size:20px}
}

@media (max-width:860px){
  .pepschep .hhero{padding:32px 0 48px}
  .pepschep .hhero__grid{grid-template-columns:minmax(0,1fr);gap:28px}
  .pepschep .hhero__title{font-size:clamp(32px,8.4vw,44px);max-width:none}
  .pepschep .hhero__sub{max-width:none;font-size:16px}
  .pepschep .hhero__cta{margin-top:22px}
  .pepschep .hhero__cta .btn{flex:1 1 100%;height:52px}
  .pepschep .hhero__usps{gap:9px 18px;margin-top:20px}
  .pepschep .hhero__usps li{font-size:14px}

  .pepschep .hhero__visual{max-width:none;margin:0;gap:10px}
  .pepschep .hhero__tile{border-radius:16px}
  .pepschep .hhero__badge{left:auto;right:4px;top:auto;bottom:-18px;padding:10px 14px}
  .pepschep .hhero__badge b{font-size:19px}
}

@media (max-width:420px){
  .pepschep .hhero__usps{flex-direction:column;gap:9px}
}

/* Filterpaneel: YITH zet zelf ook een kop 'Filters' neer - die verbergen we,
   de kop in .pfilters__head is leidend. */
.pepschep .pfilters__body .yith-wcan-filters .filters-container > form > h3,
.pepschep .pfilters__body .yith-wcan-filters .filters-container > h3,
.pepschep .pfilters__body > .yith-wcan-filters > h3{display:none!important}

/* Zeer smalle schermen: topbalk-tekst iets kleiner zodat de langste regel past */
@media (max-width:360px){
  .pepschep .topstrip__rotator li{font-size:12px;letter-spacing:-.005em}
}

/* ==========================================================
   Gekozen opties in side cart, winkelmand en checkout
   ========================================================== */
.pepschep .copts{list-style:none;margin:6px 0 0;padding:0;display:flex;flex-wrap:wrap;gap:6px}
.pepschep .copts__item{display:inline-flex;align-items:center;gap:8px;
  max-width:100%;min-width:0;padding:5px 11px;border-radius:999px;
  background:var(--surface);border:1px solid var(--line);
  font-size:13px;line-height:1.25;color:var(--muted)}
.pepschep .copts__text{display:inline-flex;flex-wrap:wrap;align-items:baseline;gap:2px 5px;min-width:0}
.pepschep .copts__label{flex:0 1 auto;min-width:0;color:var(--muted)}
.pepschep .copts__value{flex:1 1 auto;min-width:0;max-width:100%;
  font-weight:700;color:var(--ink);white-space:normal;overflow-wrap:anywhere}

/* Regel met een geuploade foto */
.pepschep .copts__item--img{padding:4px 11px 4px 4px}
.pepschep .copts__thumblink{display:block;line-height:0;flex:none}
.pepschep .copts__thumb{display:block;width:34px;height:34px;flex:none;
  object-fit:cover;border-radius:999px;background:#fff;border:1px solid var(--line)}


/* Compacte variant voor side cart en checkout */
.pepschep .copts--sm{gap:5px;margin-top:5px}
.pepschep .copts--sm .copts__item{padding:4px 9px;font-size:12.5px}
.pepschep .copts--sm .copts__item--img{padding:3px 9px 3px 3px}
.pepschep .copts--sm .copts__thumb{width:30px;height:30px}


/* Oude WooCommerce-opmaak niet meer nodig naast de chips */
.pepschep .scart__item dl.variation,
.pepschep .cartrow__info dl.variation,
.pepschep .colist__info dl.variation{display:none}



/* ==========================================================
   Kortingscode in de winkelmand: ingeklapt achter een linkje
   ========================================================== */
.pepschep .cpn{margin:14px 0 0;border-top:1px solid var(--line);padding-top:14px}
.pepschep .cpn__toggle{display:flex;align-items:center;justify-content:space-between;gap:10px;
  list-style:none;cursor:pointer;padding:4px 0;
  font-size:14.5px;font-weight:600;color:var(--muted);
  -webkit-tap-highlight-color:transparent}
.pepschep .cpn__toggle::-webkit-details-marker{display:none}
.pepschep .cpn__toggle:hover{color:var(--accent)}
.pepschep .cpn__toggle span{text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px}
.pepschep .cpn__chev{flex:none;width:17px;height:17px;transition:transform .2s ease}
.pepschep .cpn[open] .cpn__chev{transform:rotate(180deg)}

.pepschep .cpn__form{display:flex;gap:8px;margin-top:10px;align-items:stretch}
.pepschep .cpn__input{flex:1 1 auto;min-width:0;height:46px;padding:0 16px;
  border:1px solid var(--line);border-radius:var(--r-pill);background:#fff;
  font-family:inherit;font-size:14.5px;color:var(--ink)}
.pepschep .cpn__input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(46,75,255,.12)}
.pepschep .cpn__btn{flex:none;height:46px;padding:0 18px;
  border:1px solid var(--line);border-radius:var(--r-pill);background:#fff;
  font-family:inherit;font-size:14.5px;font-weight:700;color:var(--ink);cursor:pointer;
  transition:background .15s ease,color .15s ease,border-color .15s ease}
.pepschep .cpn__btn:hover{background:var(--ink);border-color:var(--ink);color:#fff}

/* Toegepaste kortingen netjes eronder */
.pepschep .cpn .woocommerce-remove-coupon{font-size:13px;color:var(--muted)}

@media (max-width:420px){
  .pepschep .cpn__form{flex-wrap:wrap}
  .pepschep .cpn__input{flex:1 1 100%}
  .pepschep .cpn__btn{flex:1 1 100%}
}

/* Het aantal-bolletje bij 'Jouw bestelling' steekt boven de productfoto uit.
   De algemene tabelregel knipt dat af met overflow:hidden, terwijl deze tabel
   geen rand of afronding meer heeft waar dat voor nodig is. */
.pepschep .woocommerce-checkout-review-order-table,
.pepschep .woocommerce-checkout-review-order-table tbody,
.pepschep .woocommerce-checkout-review-order-table tr,
.pepschep .woocommerce-checkout-review-order-table td{overflow:visible!important}
.pepschep .woocommerce-checkout-review-order-table tbody tr:first-child{padding-top:8px}

/* Logo's bij de betaalmethoden op de afrekenpagina */
.pepschep .wc_payment_methods label{display:inline-flex;align-items:center;gap:10px;flex-wrap:wrap}
.pepschep .pepay{display:inline-flex;align-items:center;gap:6px;margin-left:auto}
.pepschep .pepay__logo{display:block;width:34px;height:34px;border-radius:7px;
  background:#fff;border:1px solid var(--line);object-fit:contain;flex:none}
.pepschep .wc_payment_methods li label img:not(.pepay__logo){width:34px;height:34px;border-radius:7px;border:1px solid var(--line);background:#fff}
@media (max-width:420px){
  .pepschep .pepay__logo{width:30px;height:30px}
}

/* ============================================================
   AFREKENEN - bovenkant, kassakoopje en slanke voet
   ============================================================ */

body.woocommerce-checkout .pagehead{margin-bottom:10px}
body.woocommerce-checkout .pagehead__title{margin-bottom:0}

.cotop{margin:0 0 20px}

.cotop__bar{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  padding:11px 16px;border:1px solid var(--line);border-radius:14px;background:#fff;margin-bottom:20px}
.cotop__back{font-weight:600;font-size:14px;color:var(--muted);white-space:nowrap}
.cotop__back:hover{color:var(--accent)}

.costeps{display:flex;align-items:center;gap:14px;list-style:none;margin:0;padding:0;flex-wrap:wrap}
.costeps li{display:flex;align-items:center;gap:8px;font-size:14px;font-weight:600;color:var(--muted)}
.costeps li a{color:inherit}
.costeps li a:hover{color:var(--accent)}
.costeps li::before{content:"";width:19px;height:19px;border-radius:50%;border:2px solid var(--line);flex:none;box-sizing:border-box}
.costeps li.is-done{color:var(--ink)}
.costeps li.is-done::before{border-color:var(--accent);background:var(--accent)}
.costeps li.is-now{color:var(--ink)}
.costeps li.is-now::before{border-color:var(--accent);background:var(--accent);box-shadow:inset 0 0 0 3.5px #fff}

.cotop__safe{display:inline-flex;align-items:center;gap:7px;font-size:13.5px;font-weight:600;color:var(--muted);white-space:nowrap}
.cotop__safe svg{width:17px;height:17px;flex:none}

/* ---- Kassakoopje ---- */
.cobump{position:relative;display:flex;align-items:center;gap:16px;padding:14px 18px 14px 14px;
  border:2px dashed var(--accent);border-radius:16px;background:var(--surface);
  transition:opacity .25s ease,transform .25s ease}
.cobump.is-weg{opacity:0;transform:translateY(-6px)}
.cobump__badge{position:absolute;top:-11px;left:16px;background:var(--accent);color:#fff;
  font-size:11px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;padding:4px 10px;border-radius:99px;line-height:1.4}
.cobump__img{flex:none;width:92px;height:92px;border-radius:12px;object-fit:cover;background:#fff;display:block}
.cobump__txt{flex:1;min-width:0}
.cobump__kop{display:block;font-family:var(--font-display);font-weight:600;font-size:17px;line-height:1.25;color:var(--ink)}
.cobump__sub{display:block;font-size:13.5px;line-height:1.45;color:var(--muted);margin-top:5px}
.cobump__buy{flex:none;display:flex;align-items:center;gap:14px}
.cobump__prijs{display:flex;flex-direction:column;align-items:flex-end;line-height:1.15;text-align:right}
.cobump__prijs s,.cobump__prijs s .amount{font-size:13px;color:var(--muted);font-weight:500}
.cobump__prijs b,.cobump__prijs b .amount{font-family:var(--font-display);font-weight:700;font-size:22px;color:var(--ink)}
.cobump__btn{background:var(--accent);color:#fff;border:0;border-radius:var(--r-pill);
  font-family:var(--font-body);font-weight:700;font-size:15px;padding:13px 20px;white-space:nowrap;cursor:pointer}
.cobump__btn:hover{background:var(--accent-ink)}
.cobump__btn[disabled]{opacity:.65;cursor:default}
.cobump__melding:empty{display:none}
.cobump__melding{position:absolute;left:16px;bottom:-20px;font-size:12.5px;color:#B4341F}

@media (max-width:900px){
  .cotop__bar{gap:12px}
  .costeps{gap:10px}
  .costeps li{font-size:13px}
  .cobump__kop{font-size:16px}
}

@media (max-width:720px){
  .cotop{margin-bottom:16px}
  .cotop__bar{padding:12px 14px;gap:10px;margin-bottom:22px}
  .cotop__back{order:1}
  .cotop__safe{order:2;margin-left:auto}
  .costeps{order:3;width:100%;justify-content:space-between;gap:8px}
  .costeps li{font-size:12.5px;gap:6px;min-width:0}
  .costeps li::before{width:16px;height:16px}

  .cobump{flex-wrap:wrap;gap:12px;padding:16px 14px 14px}
  .cobump__img{width:70px;height:70px}
  .cobump__txt{flex:1 1 0;min-width:0}
  .cobump__kop{font-size:15.5px}
  .cobump__sub{font-size:13px;margin-top:4px}
  .cobump__buy{width:100%;justify-content:space-between;gap:12px}
  .cobump__prijs{flex-direction:row;align-items:baseline;gap:8px;text-align:left}
  .cobump__btn{flex:0 1 auto;padding:12px 22px}
}

@media (max-width:400px){
  .costeps li{font-size:11.5px}
  .cobump__btn{padding:12px 16px;font-size:14.5px}
}

/* ---- Slanke voet op de afrekenpagina ---- */
.cofoot{margin-top:38px;border-top:1px solid var(--line);background:#fff;padding:26px 0 30px}
.cofoot__usp{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;list-style:none;margin:0 0 20px;padding:0}
.cofoot__usp li{display:flex;align-items:center;gap:11px;min-width:0}
.cofoot__usp svg{width:24px;height:24px;flex:none;color:var(--accent)}
.cofoot__usp b{display:block;font-weight:700;font-size:14.5px;color:var(--ink);line-height:1.3}
.cofoot__usp span span{display:block;font-size:13px;color:var(--muted);margin-top:2px;line-height:1.35}

.cofoot__mid{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
  padding:16px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.cofoot__pay{display:flex;align-items:center;gap:9px;flex-wrap:wrap}
.cofoot__pay span{font-size:13.5px;font-weight:600;color:var(--muted);margin-right:2px}
.cofoot__pay img{height:28px;width:auto;display:block;border-radius:5px}
.cofoot__help{font-size:13.5px;color:var(--muted);margin:0;max-width:52ch;line-height:1.55}
.cofoot__help a{color:var(--ink);font-weight:600}
.cofoot__help a:hover{color:var(--accent)}

.cofoot__bottom{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  margin-top:16px;font-size:12.5px;color:var(--muted)}
.cofoot__bottom nav a{color:var(--muted);margin-left:16px}
.cofoot__bottom nav a:first-child{margin-left:0}
.cofoot__bottom nav a:hover{color:var(--accent)}

@media (max-width:900px){
  .cofoot__usp{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:560px){
  .cofoot{margin-top:28px;padding:22px 0 26px}
  .cofoot__usp{grid-template-columns:1fr;gap:12px}
  .cofoot__mid{flex-direction:column;align-items:flex-start;gap:12px}
  .cofoot__bottom{flex-direction:column;align-items:flex-start;gap:8px}
  .cofoot__bottom nav a{margin:0 16px 0 0}
}

/* ---- Betaalmethoden: eigen radio i.p.v. het icoonfont van de Pay.-plugin ---- */
.pepschep #payment .payment_methods > .wc_payment_method > label::before{
  content:""!important;display:inline-block!important;flex:none!important;
  width:19px!important;height:19px!important;min-width:19px!important;
  border:2px solid var(--line)!important;border-radius:50%!important;
  background:#fff!important;box-shadow:none!important;
  font-size:0!important;line-height:0!important;margin:0!important;padding:0!important;
  vertical-align:middle!important;
  transition:border-color .15s ease,box-shadow .15s ease!important}
.pepschep #payment .payment_methods > .wc_payment_method > input[type="radio"]:checked + label::before,
.pepschep #payment .payment_methods li.wc_payment_method > input[type="radio"]:first-child:checked + label::before{
  content:""!important;
  border-color:var(--accent)!important;
  background:var(--accent)!important;
  box-shadow:inset 0 0 0 3.5px #fff!important}

/* ---- Minder loze ruimte onder de afrekenkolommen ---- */
body.woocommerce-checkout .copage{padding-bottom:26px}

/* ---- Afrekenen: vertrouwensstrip i.p.v. de stappenbalk ---- */
.costeps{display:none!important}
.cotrust{display:flex;align-items:center;gap:18px;flex-wrap:wrap;list-style:none;margin:0;padding:0}
.cotrust li{display:inline-flex;align-items:center;gap:7px;font-size:13.5px;font-weight:600;color:var(--muted);white-space:nowrap}
.cotrust li svg{width:16px;height:16px;flex:none}
.cotrust .pep-check{flex:none}

@media (max-width:1100px){
  .cotrust{gap:14px}
  .cotrust li{font-size:13px}
}
@media (max-width:820px){
  .cotop__bar{gap:10px;flex-wrap:nowrap;justify-content:space-between}
  .cotrust{width:auto;gap:10px;flex-wrap:nowrap}
  .cotrust li:not(.cotrust__lock){display:none}
}
@media (max-width:420px){
  .cotrust li{font-size:12.5px}
}

/* ---- Bestellingsoverzicht als uitklapbalk bovenaan (mobiel en tablet) ---- */
.cosum__bar{display:none}

@media (max-width:1000px){
  .pepschep form.checkout .copage__side{order:0!important}

  .pepschep .copage__side .cosum{padding:0;overflow:hidden}
  .cosum__bar{display:flex;align-items:center;gap:10px;width:100%;margin:0;
    background:#fff;border:0;border-radius:18px;padding:15px 16px;cursor:pointer;text-align:left;
    font-family:var(--font-body);font-size:15px;font-weight:600;color:var(--ink)}
  .cosum__ico{flex:none;width:22px;height:22px;color:var(--accent)}
  .cosum__ico svg{width:22px;height:22px;display:block}
  .cosum__label{white-space:nowrap}
  .cosum__count{font-weight:500;font-size:13.5px;color:var(--muted);white-space:nowrap}
  .cosum__prijs{margin-left:auto;font-family:var(--font-display);font-weight:700;font-size:17.5px;color:var(--ink);white-space:nowrap}
  .cosum__prijs .amount{font-family:var(--font-display);font-weight:700}
  .cosum__prijs small{display:none}
  .cosum__chev{flex:none;width:18px;height:18px;color:var(--muted);transition:transform .2s ease}
  .cosum__chev svg{width:18px;height:18px;display:block}
  .cosum.is-open .cosum__chev{transform:rotate(180deg)}

  .cosum__body{display:none;padding:2px 16px 18px;border-top:1px solid var(--line)}
  .cosum.is-open .cosum__body{display:block}
  .cosum .summary__head{display:none}
  .cosum__body .colist{margin-top:12px}
}

@media (max-width:560px){
  .cosum__bar{padding:14px;gap:8px;font-size:14.5px}
  .cosum__count{display:none}
  .cosum__prijs{font-size:16.5px}
}

/* ---- Waardebon: rustige regel onder het kassakoopje ---- */
.cotop__coupon{margin-top:14px}
.pepschep .cotop__coupon .woocommerce-form-coupon-toggle{margin:0}
.pepschep .cotop__coupon .woocommerce-info{background:none!important;border:0!important;padding:0!important;margin:0!important;
  font-size:13.5px;color:var(--muted);display:block;text-align:left}
.pepschep .cotop__coupon .woocommerce-info::before{display:none!important}
.pepschep .cotop__coupon .woocommerce-info a{color:var(--accent);font-weight:600;text-decoration:underline}
.pepschep .cotop__coupon form.checkout_coupon{border:1px solid var(--line);border-radius:14px;background:#fff;
  padding:14px;margin:12px 0 0;display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.pepschep .cotop__coupon form.checkout_coupon p{margin:0;padding:0;width:auto;flex:1 1 200px;float:none}
.pepschep .cotop__coupon form.checkout_coupon p.form-row-last{flex:0 0 auto}
.pepschep .cotop__coupon form.checkout_coupon input.input-text{width:100%;height:46px;border:1px solid var(--line);
  border-radius:var(--r-pill);padding:0 16px;font-size:15px}
.pepschep .cotop__coupon form.checkout_coupon button{background:var(--ink);color:#fff;border:0;border-radius:var(--r-pill);
  font-family:var(--font-body);font-weight:700;font-size:14.5px;padding:13px 20px;white-space:nowrap;cursor:pointer}
.pepschep .cotop__coupon form.checkout_coupon button:hover{background:var(--accent)}
.pepschep .cotop__coupon form.checkout_coupon .clear{display:none}

/* ---- Gratis verzending + deadline bovenaan de afrekenpagina ---- */
.cofree{display:flex;align-items:center;gap:8px 26px;flex-wrap:wrap;
  padding:13px 16px;margin:0 0 20px;border:1px solid #CBE7D6;border-radius:14px;background:#EAF6EF}
.pepschep .cofree .pep-freeship{margin:0;font-size:14.5px;font-weight:700;color:#146C3A}
.pepschep .cofree .pdp__deadline{display:flex;align-items:center;gap:8px;margin:0;padding:0;
  background:none!important;border:0!important;border-radius:0!important;box-shadow:none!important;
  font-size:14.5px;font-weight:500;color:#1B6B42}
.pepschep .cofree .pdp__deadlineico{flex:none;width:20px;height:20px;display:inline-flex;align-items:center;justify-content:center;color:#146C3A}
.pepschep .cofree .pdp__deadlineico svg{width:20px;height:20px;display:block}
.pepschep .cofree .pdp__deadlinetext b{font-weight:700;color:#0F5A35}

@media (max-width:820px){
  .cofree{gap:9px;padding:12px 14px}
  .cofree > *{width:100%}
  .pepschep .cofree .pep-freeship,.pepschep .cofree .pdp__deadline{font-size:13.5px}
}

/* ---- Alle betaallogo's netjes rechts, ook die van Riverty ---- */
.pepschep li.wc_payment_method > label{position:relative}
.pepschep li.wc_payment_method > label > img,
.pepschep li.wc_payment_method > label > span.pepay,
.pepschep li.wc_payment_method > label > span > img,
.pepschep li.wc_payment_method > label > a > img{margin-left:auto!important;float:none!important}
.pepschep li.wc_payment_method > label > span:not(.pepay):has(img){margin-left:auto!important}
.pepschep li.wc_payment_method > label img{max-height:26px;width:auto}

/* Bezorgregel in de groene balk */
.pepschep .cofree__lever{display:flex;align-items:center;gap:8px;margin:0;padding:0;
  font-size:14.5px;font-weight:500;color:#1B6B42}
.pepschep .cofree__lever b{font-weight:700;color:#0F5A35}
.pepschep .cofree__leverico{flex:none;width:20px;height:20px;display:inline-flex;align-items:center;justify-content:center;color:#146C3A}
.pepschep .cofree__leverico svg{width:20px;height:20px;display:block}

/* Riverty-logo van de Pay.-plugin ook netjes rechts */
.pepschep #payment .payment_methods li[class*="payment_method_pay_gateway"] > label > img{
  float:none!important;margin:0 -10px 0 auto!important;
  height:26px!important;width:auto!important;max-height:26px!important;max-width:60px!important;
  right:auto!important;left:auto!important;vertical-align:middle!important}

/* ============================================================
   BLOG
   ============================================================ */

.container--lees{max-width:760px}

/* ---- Overzicht ---- */
.bloggrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;padding:6px 0 var(--xl)}

.bcard{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:18px;overflow:hidden;
  transition:border-color .15s ease,transform .15s ease,box-shadow .15s ease}
.bcard:hover{border-color:#D7DCEB;transform:translateY(-2px);box-shadow:0 10px 26px rgba(14,18,32,.07)}
.bcard__media{position:relative;display:block;aspect-ratio:16/10;background:var(--surface);overflow:hidden}
.bcard__media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.bcard:hover .bcard__media img{transform:scale(1.03)}
.bcard__media--leeg::after{content:"PEP SCHEP";position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:700;font-size:20px;color:#C3C9DC;letter-spacing:.06em}
.bcard__cat{position:absolute;left:12px;top:12px;background:#fff;color:var(--ink);border-radius:99px;
  font-size:11.5px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;padding:5px 11px}
.bcard__body{display:flex;flex-direction:column;gap:8px;padding:18px 18px 20px;flex:1}
.bcard__title{font-family:var(--font-display);font-weight:600;font-size:19px;line-height:1.25;margin:0}
.bcard__title a{color:var(--ink)}
.bcard__title a:hover{color:var(--accent)}
.bcard__ex{margin:0;font-size:14.5px;line-height:1.55;color:var(--muted)}
.bcard__meta{margin-top:auto;padding-top:6px;font-size:13px;color:var(--muted);display:flex;align-items:center;gap:7px}

.bpager{display:flex;justify-content:center;align-items:center;gap:8px;flex-wrap:wrap;padding:0 0 var(--xl)}
.bpager .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:42px;padding:0 14px;
  border:1px solid var(--line);border-radius:var(--r-pill);background:#fff;color:var(--ink);font-weight:600;font-size:14.5px}
.bpager .page-numbers:hover{border-color:var(--accent);color:var(--accent)}
.bpager .page-numbers.current{background:var(--accent);border-color:var(--accent);color:#fff}
.bpager .page-numbers.dots{border:0;background:none;min-width:auto;padding:0 4px}

.bleeg{text-align:center;padding:60px 20px 90px;display:flex;flex-direction:column;align-items:center;gap:10px}
.bleeg h2{font-family:var(--font-display);font-weight:600;font-size:24px}
.bleeg p{color:var(--muted);margin:0 0 10px}

/* ---- Los bericht ---- */
.post__head{padding:10px 0 22px}
.post__cat{display:inline-block;margin:10px 0 12px;background:var(--surface);color:var(--accent);border-radius:99px;
  font-size:11.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:6px 12px}
.post__title{font-family:var(--font-display);font-weight:700;font-size:clamp(30px,4.4vw,46px);line-height:1.1;
  letter-spacing:-.01em;margin:0 0 14px;color:var(--ink)}
.post__lead{font-size:18.5px;line-height:1.6;color:var(--muted);margin:0 0 14px}
.post__meta{display:flex;align-items:center;gap:8px;font-size:14px;color:var(--muted);margin:0}

.post__hero{margin:6px 0 30px}
.post__heroimg{width:100%;height:auto;display:block;border-radius:20px;object-fit:cover;max-height:520px}
.post__bij{margin-top:9px;font-size:13px;color:var(--muted);text-align:center}

.post__body{font-size:17.5px;line-height:1.72;color:#2A3145}
.post__body > *:first-child{margin-top:0}
.post__body p{margin:0 0 20px}
.post__body h2{font-family:var(--font-display);font-weight:700;font-size:27px;line-height:1.2;color:var(--ink);margin:38px 0 12px}
.post__body h3{font-family:var(--font-display);font-weight:600;font-size:21px;line-height:1.25;color:var(--ink);margin:30px 0 10px}
.post__body ul,.post__body ol{margin:0 0 20px;padding-left:22px}
.post__body li{margin:0 0 8px}
.post__body li::marker{color:var(--accent)}
.post__body a{color:var(--accent);text-decoration:underline;text-underline-offset:2px}
.post__body a:hover{color:var(--accent-ink)}
.post__body strong{font-weight:700;color:var(--ink)}
.post__body img{max-width:100%;height:auto;border-radius:16px;display:block;margin:26px 0}
.post__body blockquote{margin:26px 0;padding:18px 22px;border-left:3px solid var(--accent);background:var(--surface);
  border-radius:0 14px 14px 0;font-size:18px;line-height:1.6;color:var(--ink)}
.post__body blockquote p:last-child{margin:0}
.post__body hr{border:0;border-top:1px solid var(--line);margin:34px 0}
.post__body table{width:100%;border-collapse:collapse;margin:0 0 22px;font-size:15.5px}
.post__body th,.post__body td{border:1px solid var(--line);padding:10px 12px;text-align:left}
.post__body th{background:var(--surface);font-weight:700}

.post__tags{display:flex;flex-wrap:wrap;gap:8px;list-style:none;margin:30px 0 0;padding:0}
.post__tags a{display:inline-block;border:1px solid var(--line);border-radius:99px;padding:7px 13px;
  font-size:13.5px;font-weight:600;color:var(--muted)}
.post__tags a:hover{border-color:var(--accent);color:var(--accent)}

.post__terug{display:inline-block;margin:28px 0 0;font-weight:600;font-size:15px;color:var(--accent)}
.post__terug:hover{text-decoration:underline}

/* ---- Onderaan ---- */
.bcta{margin:44px 0 0}
.bcta__box{display:flex;align-items:center;justify-content:space-between;gap:22px;flex-wrap:wrap;
  padding:26px 30px;border-radius:20px;background:var(--surface);border:1px solid var(--line)}
.bcta__kop{font-family:var(--font-display);font-weight:700;font-size:23px;margin:0 0 6px;color:var(--ink)}
.bcta__sub{margin:0;font-size:15px;color:var(--muted);max-width:52ch}
.bcta .btn{flex:none}

.bmeer{padding-top:40px}
.bmeer__kop{font-family:var(--font-display);font-weight:700;font-size:24px;margin:0 0 18px;color:var(--ink)}

@media (max-width:1000px){
  .bloggrid{grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
}
@media (max-width:640px){
  .bloggrid{grid-template-columns:minmax(0,1fr);gap:16px}
  .bcard__title{font-size:18px}
  .post__lead{font-size:17px}
  .post__body{font-size:16.5px}
  .post__body h2{font-size:23px;margin-top:30px}
  .post__body h3{font-size:19px}
  .post__heroimg{border-radius:16px;max-height:300px}
  .bcta__box{flex-direction:column;align-items:flex-start;padding:22px}
  .bcta .btn{width:100%;text-align:center}
}

/* ---- Gratis goodiebag ---- */
.gift-prijs{display:inline-flex;align-items:baseline;gap:7px;white-space:nowrap}
.gift-prijs s,.gift-prijs s .amount{color:var(--muted);font-weight:500;font-size:.85em}
.gift-prijs b,.gift-prijs b .amount{color:#146C3A;font-weight:700}

.cartrow__gift,.scart__gift{display:inline-flex;align-items:center;gap:7px;
  font-size:13px;font-weight:600;color:#146C3A;background:#EAF6EF;border-radius:99px;padding:6px 12px}
.cartrow__gift::before,.scart__gift::before{content:"";flex:none;width:14px;height:9px;
  border-left:2.4px solid currentColor;border-bottom:2.4px solid currentColor;transform:rotate(-45deg);margin-top:-4px}
.scart__gift{font-size:12.5px;padding:5px 10px}

.scart__item--gift .scart__thumb{position:relative}
.scart__item--gift .scart__thumb::after{content:"Gratis";position:absolute;left:4px;bottom:4px;
  background:#146C3A;color:#fff;font-size:10px;font-weight:800;letter-spacing:.04em;
  text-transform:uppercase;padding:2px 6px;border-radius:99px;line-height:1.5}

@media (max-width:560px){
  .cartrow__gift{font-size:12.5px;padding:5px 10px}
}

/* ============================================================
   WERKEN BIJ
   ============================================================ */

.whero{background:var(--surface);padding:38px 0 42px;margin-bottom:8px}
.whero__title{font-family:var(--font-display);font-weight:700;font-size:clamp(32px,5vw,52px);line-height:1.03;margin:10px 0 14px}
.whero__title em{font-style:normal;color:var(--accent)}
.whero__sub{font-size:18px;line-height:1.6;color:var(--muted);max-width:62ch;margin:0 0 22px}
.whero__acties{display:flex;gap:12px;flex-wrap:wrap}

.btn--ghost{background:#fff;color:var(--ink);border:1px solid var(--line)}
.btn--ghost:hover{border-color:var(--accent);color:var(--accent)}

/* Kerncijfers */
.wfeiten{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;list-style:none;margin:0;padding:0}
.wfeiten li{border:1px solid var(--line);border-radius:16px;background:#fff;padding:18px 20px}
.wfeiten b{display:block;font-family:var(--font-display);font-weight:700;font-size:26px;line-height:1.1;color:var(--ink)}
.wfeiten span{display:block;font-size:14px;color:var(--muted);margin-top:5px;line-height:1.4}

/* Redenen */
.wredenen{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.wreden{background:#fff;border:1px solid var(--line);border-radius:18px;padding:22px}
.wreden__ico{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:12px;
  background:var(--surface);color:var(--accent);margin-bottom:14px}
.wreden__ico svg{width:24px;height:24px}
.wreden h3{font-family:var(--font-display);font-weight:600;font-size:18px;margin:0 0 7px;line-height:1.25}
.wreden p{margin:0;font-size:14.5px;line-height:1.55;color:var(--muted)}

/* Vacatures */
.wvacs{display:grid;gap:14px}
.wvac{border:1px solid var(--line);border-radius:18px;background:#fff;overflow:hidden;transition:border-color .15s ease}
.wvac[open]{border-color:#CFD6F2;box-shadow:0 12px 30px -22px rgba(11,18,40,.5)}
.wvac__kop{display:flex;align-items:center;gap:14px;flex-wrap:wrap;padding:18px 20px;cursor:pointer;list-style:none}
.wvac__kop::-webkit-details-marker{display:none}
.wvac__soort{flex:none;background:var(--surface);color:var(--accent);font-size:11.5px;font-weight:800;
  letter-spacing:.06em;text-transform:uppercase;padding:5px 11px;border-radius:var(--r-pill)}
.wvac__titel{font-family:var(--font-display);font-weight:600;font-size:20px;color:var(--ink)}
.wvac__meta{font-size:14px;color:var(--muted)}
.wvac__chev{margin-left:auto;flex:none;width:22px;height:22px;color:var(--muted);transition:transform .2s ease}
.wvac__chev svg{width:22px;height:22px;display:block}
.wvac[open] .wvac__chev{transform:rotate(180deg)}

.wvac__body{padding:0 20px 22px;border-top:1px solid var(--line);margin-top:2px}
.wvac__kort{font-size:16px;line-height:1.6;color:var(--ink);margin:16px 0 18px;max-width:70ch}
.wvac__kolom{display:grid;grid-template-columns:1fr 1fr;gap:26px}
.wvac__kolom h4{font-family:var(--font-body);font-weight:700;font-size:14px;letter-spacing:.02em;
  text-transform:uppercase;color:var(--muted);margin:0 0 10px}
.wlijst{list-style:none;margin:0;padding:0;display:grid;gap:9px}
.wlijst li{position:relative;padding-left:26px;font-size:15px;line-height:1.5;color:var(--ink)}
.wlijst li::before{content:"";position:absolute;left:2px;top:7px;width:13px;height:8px;
  border-left:2.4px solid var(--accent);border-bottom:2.4px solid var(--accent);transform:rotate(-45deg)}

.wvac__voet{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:22px;padding-top:18px;border-top:1px solid var(--line)}
.wvac__wa{font-weight:600;font-size:14.5px;color:var(--muted);text-decoration:underline}
.wvac__wa:hover{color:var(--accent)}

/* Stappen */
.wstappen{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;list-style:none;margin:0;padding:0;counter-reset:none}
.wstappen li{background:#fff;border:1px solid var(--line);border-radius:18px;padding:22px}
.wstappen__nr{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;
  background:var(--accent);color:#fff;font-family:var(--font-display);font-weight:700;font-size:16px;margin-bottom:13px}
.wstappen b{display:block;font-family:var(--font-display);font-weight:600;font-size:18px;margin-bottom:6px}
.wstappen p{margin:0;font-size:14.5px;line-height:1.55;color:var(--muted)}

/* Slotblok */
.wcta{display:flex;align-items:center;justify-content:space-between;gap:26px;flex-wrap:wrap;
  background:var(--ink);color:#fff;border-radius:22px;padding:32px 34px}
.wcta__kop{font-family:var(--font-display);font-weight:700;font-size:26px;margin:0 0 8px}
.wcta__sub{margin:0 0 6px;color:#C7CCDF;font-size:15.5px;max-width:52ch}
.wcta__adres{margin:0;color:#8F97B3;font-size:14px}
.wcta__knoppen{display:flex;gap:12px;flex-wrap:wrap;flex:none}
.wcta .btn--ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.35)}
.wcta .btn--ghost:hover{border-color:#fff;color:#fff;background:rgba(255,255,255,.08)}

@media (max-width:1000px){
  .wfeiten{grid-template-columns:repeat(2,minmax(0,1fr))}
  .wredenen{grid-template-columns:repeat(2,minmax(0,1fr))}
  .wstappen{grid-template-columns:1fr}
}
@media (max-width:760px){
  .whero{padding:28px 0 32px}
  .whero__sub{font-size:16.5px}
  .whero__acties .btn{flex:1;text-align:center}
  .wvac__kolom{grid-template-columns:1fr;gap:20px}
  .wvac__kop{gap:9px;padding:16px}
  .wvac__titel{font-size:18px;width:100%;order:2}
  .wvac__soort{order:1}
  .wvac__meta{order:3;width:100%;font-size:13.5px}
  .wvac__chev{position:absolute;right:16px;top:18px}
  .wvac{position:relative}
  .wvac__body{padding:0 16px 20px}
  .wcta{padding:26px 22px;flex-direction:column;align-items:flex-start}
  .wcta__knoppen{width:100%}
  .wcta__knoppen .btn{flex:1;text-align:center}
}
@media (max-width:520px){
  .wfeiten{grid-template-columns:1fr}
  .wredenen{grid-template-columns:1fr}
}

/* Werken bij: wat rustiger ritme dan de standaardsecties */
.werkpage .section{padding:56px 0}
.werkpage .section:first-of-type{padding-top:36px;padding-bottom:8px}
.werkpage .section:last-of-type{padding-bottom:64px}
.werkpage .section__head{margin-bottom:28px}
@media (max-width:760px){
  .werkpage .section{padding:38px 0}
  .werkpage .section:first-of-type{padding-top:24px;padding-bottom:4px}
  .werkpage .section:last-of-type{padding-bottom:44px}
  .werkpage .section__head{margin-bottom:20px}
}

/* ---- Menubalk: meer items, dus krapper en met een vangnet ---- */
.dnav{flex-wrap:nowrap;min-width:0}
.dnav__link{padding:10px 11px;font-size:15px}

@media (max-width:1400px){
  .dnav__link{padding:9px 9px;font-size:14.5px}
}
@media (max-width:1300px){ .dnav__item--p7{display:none} }
@media (max-width:1200px){ .dnav__item--p6{display:none} }
@media (max-width:1120px){ .dnav__item--p5{display:none} }
@media (max-width:1100px){ .dnav__link{padding:9px 8px;font-size:14px} }
@media (max-width:1040px){ .dnav__item--p4{display:none} }
@media (max-width:940px){ .dnav__item--p3{display:none} }
@media (max-width:880px){ .dnav__item--p2{display:none} }
@media (max-width:1180px){
  .dnav__link{padding:9px 8px;font-size:14.2px}
}

/* ---- Pil-knoppen: tekst precies in het midden ---- */
/* Deze stonden als inline-element met padding, waardoor de tekst hoog in de pil hing. */
.mega__all,
.scart__bumpbtn,
.cobump__btn,
.a3__knop,
.pepschep .woocommerce .button,
.pepschep .woocommerce a.button,
.pepschep .woocommerce button.button,
.pepschep .woocommerce input.button,
.pepschep .woocommerce-message .button,
.pepschep .return-to-shop .button,
.pepschep .summary__coupon button,
.pepschep .cotop__coupon form.checkout_coupon button,
.pepschep .pacc__body .comment-form .submit,
.pepschep .pdp__summary form.cart button.single_add_to_cart_button{
  display:inline-flex;align-items:center;justify-content:center;gap:.45em;
  line-height:1;text-align:center}

.pepschep #place_order{display:flex;align-items:center;justify-content:center;line-height:1}
.pepschep .cpn__btn{display:inline-flex;align-items:center;justify-content:center;line-height:1}
/* De knop in het megamenu mag niet meerekken met de USP-kaarten */
.pepschep .mega__foot .mega__all{align-self:center;height:auto}

/* ---- Kleur- en labelfilters: vaste kolommen, tekst binnen het vak ---- */
/* De plugin geeft de items een vaste breedte, waardoor lange labels als
   'Sneeuwpop effect' over de buren heen liepen. */
.pfilters ul.filter-items.filter-color,
.pfilters ul.filter-items.filter-label{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:16px 10px!important;
  align-items:start!important}

.pfilters ul.filter-items.filter-color > li.filter-item,
.pfilters ul.filter-items.filter-label > li.filter-item{
  width:auto!important;max-width:100%!important;min-width:0!important;margin:0!important;
  display:block!important}

.pfilters ul.filter-items.filter-color > li.filter-item > a,
.pfilters ul.filter-items.filter-label > li.filter-item > a{
  display:flex!important;flex-direction:column;align-items:center;justify-content:flex-start;
  gap:7px;width:100%!important;max-width:100%!important;min-width:0;
  padding:0!important;border:0!important;background:none!important;text-align:center}

.pfilters ul.filter-items .term-image{
  flex:none;display:block;margin:0!important}

.pfilters ul.filter-items .term-label{
  display:block;width:100%;min-width:0;
  font-size:12px!important;line-height:1.25!important;font-weight:500!important;
  color:var(--muted);
  overflow-wrap:anywhere;word-break:normal;hyphens:auto;white-space:normal!important}

.pfilters ul.filter-items > li.filter-item.active .term-label,
.pfilters ul.filter-items > li.filter-item > a:hover .term-label{color:var(--accent);font-weight:600!important}

@media (max-width:620px){
  .pfilters ul.filter-items.filter-color,
  .pfilters ul.filter-items.filter-label{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:16px 10px!important}
  .pfilters ul.filter-items .term-label{font-size:11.5px!important}
}

/* ---- Archief: geen lege ruimte onder de producten ----
   De filterkolom spant 99 rasterrijen zodat hij netjes kan meescrollen.
   Met een rij-tussenruimte leverde dat 90+ lege rijen op, samen ruim 3000px
   wit onder de producten. Daarom hier geen rij-tussenruimte, maar marges. */
.pepschep .woo-body{row-gap:0!important}
.pepschep .woo-body > *:not(.pfilters){margin-top:34px}
.pepschep .woo-body > .filterbtn,
.pepschep .woo-body > .woocommerce-notices-wrapper:empty{margin-top:0}
.pepschep .woo-body > .woocommerce-result-count{margin-top:0}

@media (max-width:1000px){
  .pepschep .woo-body > *:not(.pfilters){margin-top:20px}
  .pepschep .woo-body > .filterbtn{margin-top:0}
}

/* ============================================================
   KASSAKOOPJES: horizontale strook
   ============================================================ */
.kkstrip{margin:22px 0 0}
.kkstrip__kop{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:0 0 12px}
.kkstrip__tag{flex:none;background:var(--accent);color:#fff;font-size:11px;font-weight:800;
  letter-spacing:.07em;text-transform:uppercase;padding:5px 11px;border-radius:var(--r-pill);line-height:1.45}
.kkstrip__uitleg{font-size:13.5px;color:var(--muted)}

.kkstrip__rij{display:flex;gap:12px;overflow-x:auto;overflow-y:hidden;
  scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
  padding:2px 0 4px;scrollbar-width:none;-ms-overflow-style:none}
.kkstrip__rij::-webkit-scrollbar{display:none}

.kkcard{flex:0 0 178px;scroll-snap-align:start;display:flex;flex-direction:column;gap:6px;
  border:2px dashed var(--accent);border-radius:16px;background:var(--surface);padding:12px;min-width:0}
.kkcard__media{position:relative;align-self:center;width:70px;height:70px;border-radius:12px;background:#fff;
  display:flex;align-items:center;justify-content:center;overflow:hidden;flex:none}
.kkcard__img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;display:block}
.kkcard__korting{align-self:center;max-width:100%;margin-top:-4px;background:var(--ink);color:#fff;font-size:10px;
  font-weight:800;letter-spacing:.03em;text-transform:uppercase;padding:3px 9px;border-radius:var(--r-pill);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.kkcard__naam{font-family:var(--font-display);font-weight:600;font-size:14.5px;line-height:1.25;color:var(--ink);
  overflow-wrap:anywhere}
.kkcard__sub{font-size:12.5px;line-height:1.35;color:var(--muted);flex:1}
.kkcard__btn{margin-top:2px;width:100%;background:var(--accent);color:#fff;border:0;border-radius:var(--r-pill);
  font-family:var(--font-body);font-weight:700;font-size:14px;padding:10px 12px;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;gap:5px;line-height:1;white-space:nowrap}
.kkcard__btn:hover{background:var(--accent-ink)}
.kkcard__btn .amount{color:#fff}
.kkcard__btn s,.kkcard__btn s .amount{color:rgba(255,255,255,.7);font-weight:500;font-size:12.5px}
.kkcard__plus{font-size:16px;line-height:1}

/* In de side cart is het smaller, dus kleinere kaarten met een kijkje op de volgende */
.kkstrip--smal{margin:16px 0 0;padding:0 22px}
.kkstrip--smal .kkcard{flex:0 0 150px;padding:10px}
.kkstrip--smal .kkcard__media{width:60px;height:60px}
.kkstrip--smal .kkcard__naam{font-size:13.5px}
.kkstrip--smal .kkcard__sub{font-size:12px}
.kkstrip--smal .kkcard__btn{font-size:13.5px;padding:9px 10px}

/* Oude losse blokken niet meer gebruiken */
.cartbumps{display:none}

@media (max-width:560px){
  .kkcard{flex:0 0 158px}
  .kkstrip__uitleg{font-size:12.5px}
}

/* ---- Vinkjes: het -4px compensatiemarge hoort niet in een flex-regel ---- */
.summary__trust li .pep-check,
.cotrust li .pep-check,
.cofoot__usp .pep-check,
.pdp__usps li .pep-check{margin-top:0}
.summary__trust li{align-items:center}

/* ---- Winkelmand: minder loze ruimte onderaan ---- */
body.woocommerce-cart .cartpage{padding-bottom:34px}
body.woocommerce-cart .pagewrap{padding-bottom:28px}
@media (max-width:760px){
  body.woocommerce-cart .cartpage{padding-bottom:24px}
  body.woocommerce-cart .pagewrap{padding-bottom:18px}
}

/* ---- Categorieblokken op de homepage: grotere afbeelding, aantal erbij ---- */
.catgrid{grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}
.cat{display:flex;flex-direction:column;align-items:stretch;gap:0;padding:0;overflow:hidden;text-align:left}
.cat__media{display:block;background:var(--surface);aspect-ratio:4/3;overflow:hidden}
.cat__img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}
.cat:hover .cat__img{transform:scale(1.06)}
.cat__body{display:flex;flex-direction:column;gap:2px;padding:14px 16px 16px}
.cat__name{font-family:var(--font-display);font-weight:600;font-size:17px;color:var(--ink);line-height:1.2}
.cat__count{font-size:13px;color:var(--muted)}

@media (max-width:1000px){
  .catgrid{grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
  .cat__name{font-size:16px}
}
@media (max-width:700px){
  .catgrid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .cat__body{padding:12px 13px 14px}
  .cat__name{font-size:15px}
  .cat__count{font-size:12.5px}
}

/* ============================================================
   EXTRA PRODUCT OPTIONS: keuze met afbeeldingen
   ============================================================ */
.pepschep li.tmcp-field-wrap.tc-mode-images{
  position:relative;border:1px solid var(--line)!important;border-radius:14px;overflow:hidden;
  background:#fff;padding:0!important;margin:0!important;
  transition:border-color .15s ease,box-shadow .15s ease}
.pepschep li.tmcp-field-wrap.tc-mode-images:hover{border-color:#CFD6F2}
.pepschep li.tmcp-field-wrap.tc-mode-images:has(input:checked){
  border-color:var(--accent)!important;box-shadow:0 0 0 2px rgba(46,75,255,.16)}

.pepschep li.tc-mode-images .tmcp-field-wrap-inner,
.pepschep li.tc-mode-images .tc-field-label-wrap,
.pepschep li.tc-mode-images .tm-epo-field-label,
.pepschep li.tc-mode-images .tc-label-wrap{display:block!important;margin:0!important;padding:0!important;border:0!important;width:100%}
.pepschep li.tc-mode-images .tm-epo-field-label{cursor:pointer}

/* Het echte keuzerondje verbergen, de rand toont de keuze al */
.pepschep li.tc-mode-images .tc-input-wrap{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

.pepschep li.tc-mode-images img.tc-image{
  display:block;width:100%!important;height:auto!important;aspect-ratio:1/1;object-fit:cover;
  background:var(--surface);margin:0!important;padding:0!important;border:0!important;border-radius:0!important;
  transform:none!important;transition:transform .3s ease}
.pepschep li.tc-mode-images:hover img.tc-image{filter:brightness(.96)}

.pepschep li.tc-mode-images .tc-label,
.pepschep li.tc-mode-images .radio-image-label{
  display:block!important;width:100%!important;margin:0!important;padding:10px 10px 11px!important;
  border:0!important;background:#fff;text-align:center}
.pepschep li.tc-mode-images .tc-label-inner{display:block;width:100%!important;padding:0!important;margin:0!important}
.pepschep li.tc-mode-images .tc-label-text{
  display:block;font-family:var(--font-body);font-weight:600!important;font-size:12.5px!important;
  line-height:1.3;color:var(--ink)!important;letter-spacing:0;text-transform:none;
  overflow-wrap:anywhere}
/* Geen streep of vlak boven de naam: alleen de rand om de tegel toont de keuze. */
.pepschep li.tc-mode-images:has(input:checked) .tc-label,
.pepschep li.tc-mode-images:has(input:checked) .radio-image-label{background:#fff!important;border-top:0!important}
.pepschep li.tc-mode-images:has(input:checked) .tc-label-text{color:var(--ink)!important;font-weight:700!important}
.pepschep li.tc-mode-images .tc-label *,
.pepschep li.tc-mode-images .tc-label-inner,
.pepschep li.tc-mode-images .tc-label-text{border:0!important;box-shadow:none!important;text-decoration:none!important}

/* Wissen: klein rond knopje in de hoek van de gekozen afbeelding */
.pepschep li.tc-mode-images .tm-epo-reset-radio{
  position:absolute!important;top:8px;right:8px;left:auto;bottom:auto;
  width:26px;height:26px;border-radius:50%;
  display:none;align-items:center;justify-content:center;
  background:rgba(14,18,32,.72);color:#fff;border:0!important;
  font-size:11px;line-height:1;cursor:pointer;z-index:3}
.pepschep li.tc-mode-images:has(input:checked) .tm-epo-reset-radio{display:flex}
.pepschep li.tc-mode-images .tm-epo-reset-radio:hover{background:var(--ink)}
.pepschep li.tc-mode-images .tm-epo-reset-radio i{font-size:11px;line-height:1}

/* De rij zelf */
.pepschep .tmcp-ul-wrap.tm-extra-product-options-radio{
  display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px!important;
  margin:0!important;padding:0!important;list-style:none}

@media (max-width:560px){
  .pepschep .tmcp-ul-wrap.tm-extra-product-options-radio{gap:8px!important}
  .pepschep li.tc-mode-images .tc-label-text{font-size:11.5px!important}
  .pepschep li.tc-mode-images .tc-label{padding:8px 6px 9px!important}
}

/* Kassakoopje-knop: bezig / klaar */
.kkcard__btn.is-bezig{opacity:.6;pointer-events:none}
.kkcard__btn.is-klaar{background:#16794a;border-color:#16794a;color:#fff}
.kkcard__btn.is-klaar s{color:rgba(255,255,255,.7)}

/* Laadindicator op knoppen */
@keyframes pep-spin{to{transform:rotate(360deg)}}
.pepschep .pepspin{display:none;flex:0 0 auto;width:16px;height:16px;margin-right:9px;border-radius:50%;
  border:2px solid rgba(255,255,255,.35);border-top-color:#fff;animation:pep-spin .6s linear infinite}
.pepschep .is-laden .pepspin{display:inline-block}
.pepschep .single_add_to_cart_button.is-laden,
.pepschep .stickybuy__btn.is-laden{pointer-events:none;opacity:1!important;
  background:var(--accent)!important;color:#fff!important;cursor:default}

/* Hero-USP's: netjes twee kolommen op desktop, gestapeld op mobiel. */
@media (min-width:900px){
  .pepschep .hhero__usps{display:grid;grid-template-columns:repeat(2,minmax(0,max-content));gap:12px 30px}
}

/* Vijf USP-tegels sinds de gratis goodiebag erbij kwam. */
@media (min-width:821px){
  .pepschep .footusp__list{grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
}
@media (min-width:901px){
  .pepschep .cofoot__usp{grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
}

/* Herroepingsformulier */
.pepschep .herroep{max-width:760px}
.pepschep .herroep__intro{color:var(--muted);font-size:15.5px;line-height:1.6;margin:0 0 22px}
.pepschep .herroep__melding{border-radius:14px;padding:16px 18px;margin:0 0 22px;font-size:15px;line-height:1.55}
.pepschep .herroep__melding--ok{background:#E9F7EF;border:1px solid #BFE5CE;color:#155C33}
.pepschep .herroep__melding--fout{background:#FDECEC;border:1px solid #F5C6C6;color:#8A1F1F}
.pepschep .herroep__val{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
.pepschep .herroep__form{display:grid;gap:16px}
.pepschep .herroep__rij{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.pepschep .herroep__rij--drie{grid-template-columns:repeat(3,minmax(0,1fr))}
.pepschep .herroep__veld{display:flex;flex-direction:column;gap:6px;min-width:0}
.pepschep .herroep__veld label{font-weight:600;font-size:14.5px;color:var(--ink)}
.pepschep .herroep__veld label span{color:var(--accent)}
.pepschep .herroep__opt{font-weight:400;font-size:13px;color:var(--muted)}
.pepschep .herroep__veld input,
.pepschep .herroep__veld textarea{width:100%;border:1px solid var(--line);border-radius:12px;padding:12px 14px;font-family:var(--font-body);font-size:15px;color:var(--ink);background:#fff;box-sizing:border-box}
.pepschep .herroep__veld textarea{resize:vertical;min-height:70px}
.pepschep .herroep__veld input:focus,
.pepschep .herroep__veld textarea:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(46,75,255,.14)}
.pepschep .herroep__veld.is-fout input,
.pepschep .herroep__veld.is-fout textarea{border-color:#D93A3A;background:#FFF7F7}
.pepschep .herroep__veld em{font-style:normal;font-size:13px;color:#B02222}
.pepschep .herroep__knop{justify-self:start;min-width:230px}
.pepschep .herroep__klein{font-size:13.5px;color:var(--muted);line-height:1.6;margin:4px 0 0}
@media (max-width:680px){
  .pepschep .herroep__rij,
  .pepschep .herroep__rij--drie{grid-template-columns:1fr}
  .pepschep .herroep__knop{width:100%}
}

/* Knop naar het herroepingsformulier in de FAQ */
.pepschep .faq-herroep{display:inline-flex;align-items:center;gap:9px;margin-top:14px;padding:12px 20px;border-radius:999px;background:var(--accent);color:#fff!important;font-weight:600;font-size:15px;text-decoration:none;line-height:1.2}
.pepschep .faq-herroep:hover{background:#1f39d6;color:#fff!important}
.pepschep .faq-herroep svg{width:18px;height:18px;flex:none}

/* Contactkaart zonder link: het nummer staat er wel, maar je klikt niet door. */
.pepschep .ccard--stil{cursor:default}
.pepschep .ccard--stil:hover{transform:none}
.pepschep .ccard--stil .ccard__val{-webkit-user-select:all;user-select:all}

/* ===== Adres automatisch aanvullen op de checkout ===== */
.pepadr__wrap{position:relative}
.pepadr__lijst{position:absolute;left:0;right:0;top:calc(100% + 4px);z-index:60;background:#fff;border:1px solid #E4E8F5;border-radius:12px;box-shadow:0 14px 34px rgba(14,18,32,.14);overflow:hidden;display:none}
.pepadr__lijst.is-open{display:block}
.pepadr__optie{display:block;width:100%;text-align:left;padding:11px 14px;border:0;background:#fff;font:inherit;font-size:15px;line-height:1.3;color:#0E1220;cursor:pointer}
.pepadr__optie+.pepadr__optie{border-top:1px solid #F0F2FA}
.pepadr__optie:hover,.pepadr__optie.is-actief{background:#F2F4FF;color:#2E4BFF}
@media (max-width:600px){.pepadr__lijst{max-height:250px;overflow-y:auto}.pepadr__optie{padding:13px 14px;font-size:16px}}
/* WhatsApp-nummer is geen link */
.pepschep .ccard--stil .ccard__val{color:#0E1220}

/* ===== Landenkiezer bij het telefoonveld ===== */
.peptel{position:relative}
.peptel__knop{position:absolute;left:1px;top:1px;bottom:1px;z-index:3;display:flex;align-items:center;gap:6px;padding:0 10px 0 12px;border:0;border-right:1px solid #E4E8F5;background:transparent;cursor:pointer;font:inherit;font-size:15px;color:#0E1220;border-radius:12px 0 0 12px}
.peptel__knop:hover{background:#F6F8FF}
.peptel__vlag{display:inline-flex;width:22px;height:16px;border-radius:3px;overflow:hidden;box-shadow:inset 0 0 0 1px rgba(14,18,32,.12);flex:0 0 auto}
.peptel__vlag svg{width:100%;height:100%;display:block}
.peptel__vlag--code{align-items:center;justify-content:center;background:#EDF0F8;color:#5A6273;font-size:9px;font-weight:700;box-shadow:none}
.peptel__code{font-weight:600;font-size:14px}
.peptel__pijl{width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid #8A90A2}
.peptel__doos{position:absolute;left:0;top:calc(100% + 4px);z-index:60;width:340px;max-width:100%;background:#fff;border:1px solid #E4E8F5;border-radius:12px;box-shadow:0 14px 34px rgba(14,18,32,.14);overflow:hidden;display:none}
.peptel__doos.is-open{display:block}
.peptel__zoekrij{padding:8px;border-bottom:1px solid #F0F2FA}
.peptel__zoek{width:100%;border:1px solid #E4E8F5;border-radius:9px;padding:8px 10px;font:inherit;font-size:15px;color:#0E1220;background:#FBFCFF}
.peptel__zoek:focus{outline:0;border-color:#2E4BFF}
.peptel__opties{max-height:260px;overflow-y:auto}
.peptel__optie{display:flex;align-items:center;gap:10px;width:100%;text-align:left;padding:9px 12px;border:0;background:#fff;font:inherit;font-size:14.5px;color:#0E1220;cursor:pointer}
.peptel__optie+.peptel__optie{border-top:1px solid #F5F7FC}
.peptel__optie:hover,.peptel__optie.is-actief{background:#F2F4FF}
.peptel__naam{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.peptel__plus{color:#6B7280;font-size:13.5px;flex:0 0 auto}
.peptel__leeg{padding:14px 12px;color:#6B7280;font-size:14px}
@media (max-width:600px){
  .peptel__doos{width:100%}
  .peptel__zoek{font-size:16px}
  .peptel__optie{padding:11px 12px;font-size:15px}
  .peptel__opties{max-height:230px}
}

.peptel__zoek::placeholder{color:#8A90A2;opacity:1}
.peptel__zoek::-webkit-input-placeholder{color:#8A90A2;opacity:1}

/* ===== Onderkant afrekenpagina netter ===== */
.woocommerce-shipping-methods li{margin:0}
.woocommerce-shipping-methods label{display:flex !important;align-items:center;gap:12px;width:100%}
.coship__tekst{display:flex;flex-direction:column;gap:2px;min-width:0;flex:1 1 auto}
.coship__naam{font-weight:600;font-size:15px;color:#0E1220;line-height:1.3}
.coship__sub{font-size:13px;color:#6B7280;line-height:1.35}
.coship__prijs{flex:0 0 auto;font-weight:700;font-size:15px;color:#0E1220;white-space:nowrap}
.coship__gratis{color:#1F9D55;font-weight:700}
.woocommerce-shipping-methods label img.emoji{display:none}

.wc_payment_methods li.wc_payment_method>label{display:flex;align-items:center;gap:10px;width:100%;font-weight:600}
.wc_payment_methods li.wc_payment_method>label img{max-height:22px;width:auto;margin:0 0 0 auto;flex:0 0 auto}
.wc_payment_methods .payment_box:empty{display:none !important}

.cosubmit__note{display:flex;align-items:flex-start;gap:8px;margin:14px 2px 0;color:#6B7280;font-size:13px;line-height:1.5}
.cosubmit__note svg{width:16px;height:16px;flex:0 0 auto;margin-top:1px;color:#2E4BFF}
.cosubmit__note a{color:#6B7280;text-decoration:underline}
.cosubmit__note a:hover{color:#2E4BFF}

body.woocommerce-checkout .pagewrap{padding-bottom:40px}
body.woocommerce-checkout .cofoot{margin-top:0}

@media (max-width:600px){
  .coship__naam{font-size:14.5px}
  .coship__sub{font-size:12.5px}
  .coship__prijs{font-size:14.5px}
  .cosubmit__note{font-size:12.5px}
  body.woocommerce-checkout .pagewrap{padding-bottom:24px}
}

/* Verzendopties: naam en prijs op een rij */
ul#shipping_method li label{display:flex !important;align-items:center;gap:12px;width:100%}
ul#shipping_method li label .coship__tekst{flex:1 1 auto;min-width:0}
ul#shipping_method li label .coship__prijs{margin-left:auto}
.wc_payment_methods li.wc_payment_method>label img{max-height:26px}

/* De verzendlijst zit in #pep-ship-target, dus daar moet de opmaak op aangrijpen. */
.pepschep #pep-ship-target ul.woocommerce-shipping-methods label{display:flex !important;align-items:center;gap:12px;width:100%}
.pepschep #pep-ship-target ul.woocommerce-shipping-methods label .coship__tekst{display:flex;flex-direction:column;gap:2px;flex:1 1 auto;min-width:0}
.pepschep #pep-ship-target ul.woocommerce-shipping-methods label .coship__prijs{margin-left:auto;flex:0 0 auto}

/* Betaallogos gelijk kaderen, anders zweeft een wit logo als Bancontact los. */
.wc_payment_methods li.wc_payment_method>label img{border:1px solid #E7EBF6;border-radius:6px;background:#fff}

.cofoot__pay img{border:1px solid #E7EBF6;border-radius:6px;background:#fff}

/* ===== Voet van de afrekenpagina compacter op mobiel ===== */
@media (max-width:600px){
  .cofoot{margin-top:0;padding:18px 0 22px}

  .cofoot__usp{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 14px;margin:0 0 16px}
  .cofoot__usp li{align-items:flex-start;gap:8px}
  .cofoot__usp svg{width:19px;height:19px;margin-top:1px}
  .cofoot__usp b{font-size:13px;line-height:1.25}
  .cofoot__usp span span{display:none}

  .cofoot__mid{padding:13px 0;gap:10px}
  .cofoot__pay{gap:7px}
  .cofoot__pay span{width:100%;margin:0 0 2px;font-size:12.5px}
  .cofoot__pay img{height:24px}
  .cofoot__help{font-size:12.5px;line-height:1.5}

  .cofoot__bottom{margin-top:12px;gap:6px;font-size:11.5px;padding-right:64px}
  .cofoot__bottom nav a{margin:0 14px 0 0}
}

/* ===== Verzendopties: vervoerder en levertijd ===== */
.pepschep #pep-ship-target ul.woocommerce-shipping-methods label .coship__tekst{align-items:flex-start}
.coship__merk{display:inline-block;font-size:10px;font-weight:800;letter-spacing:.06em;line-height:1.5;padding:1px 5px;border-radius:4px;margin-right:6px;vertical-align:1px}
.coship__merk--postnl{background:#FF6200;color:#fff}
.coship__merk--dhl{background:#FFCC00;color:#D40511}
.coship__lever{display:inline-flex;align-items:center;font-size:11.5px;font-weight:800;line-height:1.5;padding:2px 9px;border-radius:999px;margin-top:6px;align-self:flex-start}
.coship__lever--snel{background:#E4F6EC;color:#177A44}
.coship__lever--snel::before{content:"\2713";font-weight:800;margin-right:5px}
.coship__lever--gewoon{background:#EFF1F7;color:#5A6273}
@media (max-width:600px){
  .coship__lever{font-size:11px;padding:2px 8px}
  .coship__merk{font-size:9.5px}
}

/* ===== Vertrouwensblok onder de tabs op de productpagina ===== */
.pdpvt{margin:34px 0 0}
.pdpvt__pand{margin:0 0 22px;border-radius:16px;overflow:hidden;border:1px solid #E4E8F5;position:relative}
.pdpvt__pand img{display:block;width:100%;height:auto}
.pdpvt__pand figcaption{position:absolute;left:0;right:0;bottom:0;padding:26px 16px 12px;color:#fff;font-size:13.5px;font-weight:600;background:linear-gradient(180deg,rgba(14,18,32,0),rgba(14,18,32,.78))}

.pdpvt__strook{list-style:none;margin:0 0 30px;padding:0;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.pdpvt__strook li{display:flex;gap:11px;align-items:flex-start;border:1px solid #E4E8F5;border-radius:12px;padding:14px;background:#FBFCFF}
.pdpvt__strook svg{width:22px;height:22px;flex:none;color:#2E4BFF}
.pdpvt__strook b{display:block;font-size:14.5px;line-height:1.3}
.pdpvt__strook span span{display:block;font-size:13px;color:#6B7280;margin-top:2px;line-height:1.4}

.pdpvt__bewijs{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.12fr);gap:30px;align-items:start}
.pdpvt h2{font-size:21px;letter-spacing:-.3px;margin:0 0 10px}
.pdpvt__lead{margin:0 0 14px;color:#6B7280;font-size:14px}

.pdpvt__score{display:flex;align-items:baseline;gap:9px;flex-wrap:wrap;margin:0 0 4px}
.pdpvt__score b{font-size:32px;letter-spacing:-.6px;line-height:1}
.pdpvt__sterren{color:#FFB020;font-size:16px;letter-spacing:1px}
.pdpvt__sterren--klein{font-size:12.5px}
.pdpvt__uit{font-size:13.5px;color:#6B7280}
.pdpvt__bron{margin:0 0 16px;font-size:13.5px}
.pdpvt__bron a{color:#2E4BFF;font-weight:600}

.pdpvt__quote{margin:0 0 10px;border:1px solid #E4E8F5;border-radius:12px;padding:13px 15px;background:#fff}
.pdpvt__quote p{margin:6px 0 8px;font-size:14px;line-height:1.5}
.pdpvt__quote cite{font-style:normal;font-weight:700;font-size:13.5px}

.pdpvt__rij{display:flex;gap:11px;overflow-x:auto;padding:2px 0 8px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.pdpvt__tel{flex:0 0 132px;margin:0;scroll-snap-align:start;border-radius:14px;overflow:hidden;border:1px solid #E4E8F5;background:#F4F6FD}
.pdpvt__tel img{display:block;width:100%;height:auto}

.pdpvt__socials{display:flex;gap:10px;flex-wrap:wrap;margin:14px 0 0}
.pdpvt__social{display:inline-flex;align-items:center;gap:8px;border:1px solid #E4E8F5;border-radius:999px;padding:8px 15px;background:#fff;text-decoration:none;color:#0E1220}
.pdpvt__social:hover{border-color:#2E4BFF}
.pdpvt__socialnaam{font-weight:700;font-size:14px}
.pdpvt__handle{font-size:13.5px;color:#6B7280;display:inline-flex;align-items:center;gap:4px}
.pdpvt__vinkje{display:inline-flex;align-items:center;justify-content:center;width:15px;height:15px;border-radius:50%;background:#1D9BF0;color:#fff;font-size:9px;font-weight:800;line-height:1}
.pdpvt__volgers{font-size:13px;color:#0E1220;font-weight:600}

@media (max-width:900px){
  .pdpvt__bewijs{grid-template-columns:1fr;gap:26px}
}
@media (max-width:600px){
  .pdpvt{margin-top:26px}
  .pdpvt__strook{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;margin-bottom:24px}
  .pdpvt__strook li{padding:11px;gap:8px}
  .pdpvt__strook svg{width:19px;height:19px}
  .pdpvt__strook b{font-size:13px}
  .pdpvt__strook span span{font-size:12px}
  .pdpvt h2{font-size:18px}
  .pdpvt__score b{font-size:27px}
  .pdpvt__tel{flex:0 0 116px}
  .pdpvt__pand figcaption{font-size:12.5px;padding:22px 12px 10px}
}

/* Zorgen dat het vertrouwensblok binnen een smal scherm past. */
.pdpvt__bewijs>*{min-width:0}
.pdpvt__reviews,.pdpvt__sfeer{min-width:0;max-width:100%}
.pdpvt__rij{min-width:0;max-width:100%}
.pdpvt__quote p{overflow-wrap:anywhere}
.pdpvt__score{max-width:100%}
.pdpvt__uit{flex:1 1 auto;min-width:0}

/* De klantfoto's schuiven rustig door in een doorlopende lus.
   De reeks staat twee keer in de HTML; op de helft springt hij terug
   en dat zie je niet omdat de tweede helft identiek is. */
.pdpvt__rij{overflow:hidden;display:block;padding:2px 0 6px;scroll-snap-type:none}
.pdpvt__baan{display:flex;gap:0;width:max-content;animation:pdpvt-lus 52s linear infinite;will-change:transform}
.pdpvt__baan .pdpvt__tel{margin-right:11px;flex:0 0 132px}
.pdpvt__rij:hover .pdpvt__baan,
.pdpvt__rij:focus-within .pdpvt__baan{animation-play-state:paused}

@keyframes pdpvt-lus{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

@media (max-width:600px){
  .pdpvt__baan{animation-duration:44s}
  .pdpvt__baan .pdpvt__tel{flex:0 0 116px;margin-right:9px}
}

@media (prefers-reduced-motion:reduce){
  .pdpvt__baan{animation:none}
  .pdpvt__rij{overflow-x:auto}
}

/* Minder lucht boven het kruimelpad op de productpagina. Was 30px (20 marge + 10 padding). */
@media (max-width:600px){
  body.single-product .container.woo-body{padding-top:8px}
  body.single-product .woo-body > .pdp{margin-top:6px}
}

/* De chatknop van Chatbase staat op z-index 2147483645 en lag daardoor over de winkelmandlade heen.
   Zolang het mandje openstaat zetten we hem onder de lade, zodat hij er netjes achter verdwijnt.
   Chatbase zet zelf transition:all op de knop; daardoor loopt ook z-index mee in de overgang
   en blijft de oude waarde staan. Daarom halen we z-index uit die overgang. */
#chatbase-bubble-button{transition-property:background-color,box-shadow,transform,opacity !important}

body.scart-open #chatbase-bubble-button,
body.scart-open #chatbase-message-bubbles,
body.scart-open #chatbase-bubble-window{
  z-index:1 !important;
  pointer-events:none !important;
}

/* ============ Cadeaus vanaf een bedrag, boven in de winkelmandlade ============ */
.cdo{padding:13px 20px 14px;background:var(--surface);border-bottom:1px solid var(--line)}
.cdo__tekst{font-size:14.5px;line-height:1.4;color:var(--ink);margin:0 0 11px}
.cdo__tekst b{font-weight:700}
.cdo__tekst .amount{font-weight:700}
.cdo__tekst.is-klaar{color:#146C3A;font-weight:600}
.cdo__tekst.is-klaar::before{content:'';display:inline-block;width:11px;height:6px;margin-right:8px;border-left:2.2px solid currentColor;border-bottom:2.2px solid currentColor;transform:rotate(-45deg) translateY(-2px)}

.cdo__spoor{position:relative;height:6px;border-radius:99px;background:#DDE3F6;margin:0 4px}
.cdo__spoor i{position:absolute;left:0;top:0;height:100%;border-radius:99px;background:var(--accent);transition:width .45s cubic-bezier(.4,0,.2,1)}

.cdo__kaarten{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:11px}
.cdok{border:1.5px solid var(--line);border-radius:13px;background:#fff;padding:8px 6px 9px;text-align:center;min-width:0;transition:border-color .3s ease,background-color .3s ease}
.pepschep .cdok img{width:42px;height:42px;object-fit:cover;border-radius:9px;display:block;margin:0 auto;background:#F2F3F7;filter:grayscale(1);opacity:.45;transition:filter .35s ease,opacity .35s ease;mix-blend-mode:normal}
.cdok b{display:block;font-size:12px;font-weight:700;line-height:1.25;margin-top:5px;color:var(--muted);overflow-wrap:anywhere}
.cdok span{display:block;font-size:11px;font-weight:600;color:#9AA1B8;margin-top:2px;white-space:nowrap}
.cdok.is-aan{border-color:#146C3A;background:#EAF6EF}
.pepschep .cdok.is-aan img{filter:none;opacity:1}
.cdok.is-aan b,.cdok.is-aan span{color:#146C3A}
.cdok.is-nu{border-color:var(--accent)}
.pepschep .cdok.is-nu img{filter:grayscale(.3);opacity:.9}
.cdok.is-nu b{color:var(--ink)}
.cdok.is-nu span{color:var(--accent)}

@media (max-width:380px){
  .cdo{padding:12px 16px 14px}
  .cdok b{font-size:11.5px}
}

/* ============ Cadeaus als eigen blokje onderaan de lade ============ */
.cdgift{margin:12px 20px 4px;border:1px solid #CBE6D7;background:#EAF6EF;border-radius:14px;padding:9px 12px 11px}
.cdgift__kop{font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#146C3A;display:flex;align-items:center;gap:7px;margin:0 0 2px}
.cdgift__kop::before{content:'';flex:none;width:12px;height:7px;border-left:2.2px solid currentColor;border-bottom:2.2px solid currentColor;transform:rotate(-45deg) translateY(-2px)}
.cdgift__rij{display:flex;align-items:center;gap:11px;padding:7px 0;border-top:1px solid rgba(20,108,58,.13)}
.cdgift__rij:first-of-type{border-top:0}
.cdgift__foto{flex:none;width:40px;height:40px;border-radius:9px;overflow:hidden;background:#fff;display:block}
.pepschep .cdgift__img{width:40px!important;height:40px!important;object-fit:cover!important;display:block;border-radius:9px;mix-blend-mode:normal!important}
.cdgift__t{flex:1;min-width:0}
.cdgift__naam{display:block;font-family:var(--font-display);font-weight:600;font-size:14.5px;line-height:1.2;color:var(--ink);overflow-wrap:anywhere}
.cdgift__naam:hover{color:var(--accent)}
.cdgift__reden{display:block;font-size:11.5px;color:#146C3A;margin-top:2px}
.cdgift__prijs{flex:none;text-align:right;font-size:13.5px;white-space:nowrap}
.cdgift__prijs s{display:block;color:#7C8AA0;font-size:12.5px}
.cdgift__prijs b{color:#146C3A;font-weight:700}
.cdgift__prijs .amount{font-weight:inherit}

/* Cadeaublok op de winkelmandpagina: zelfde stijl, iets ruimer omdat er meer plek is. */
.cdgift--breed{margin:14px 0 0;padding:12px 16px 14px;border-radius:16px}
.cdgift--breed .cdgift__kop{font-size:11.5px;margin-bottom:4px}
.cdgift--breed .cdgift__rij{gap:14px;padding:9px 0}
.cdgift--breed .cdgift__foto{width:48px;height:48px;border-radius:10px}
.pepschep .cdgift--breed .cdgift__img{width:48px!important;height:48px!important;border-radius:10px}
.cdgift--breed .cdgift__naam{font-size:15.5px}
.cdgift--breed .cdgift__reden{font-size:12.5px}
.cdgift--breed .cdgift__prijs{font-size:14.5px}
@media (max-width:600px){
  .cdgift--breed{padding:10px 12px 12px}
  .cdgift--breed .cdgift__foto{width:42px;height:42px}
  .pepschep .cdgift--breed .cdgift__img{width:42px!important;height:42px!important}
  .cdgift--breed .cdgift__naam{font-size:14.5px}
}

/* Verzending en bezorging samen op een regel, rustiger naast het groene cadeaublok. */
.pep-lever{display:flex;align-items:flex-start;gap:11px;margin:0 0 14px}
.pep-lever__ico{flex:none;width:22px;height:22px;display:inline-flex;align-items:center;justify-content:center;color:var(--accent);margin-top:1px}
.pep-lever__ico svg{width:22px;height:22px;display:block}
.pep-lever__t{min-width:0}
.pep-lever__t b{display:block;font-size:14.5px;font-weight:700;color:var(--ink);line-height:1.25}
.pep-lever__t span{display:block;font-size:13px;color:var(--muted);margin-top:2px;line-height:1.3}
.summary .pep-lever{margin-bottom:16px}


/* Op de winkelmandpagina kleurt .pepschep .woocommerce a alle links blauw. */
.pepschep .cdgift .cdgift__naam{color:var(--ink)}
.pepschep .cdgift .cdgift__naam:hover{color:var(--accent)}

/* De winkelmandpagina werkt het aantal nu vanzelf bij. De knop staat er nog
   voor bezoekers zonder javascript, maar hij is uit beeld. */
.cartpage__auto .cartpage__update{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap;border:0}
.woocommerce-cart-form.is-bezig .cartlist{opacity:.55;pointer-events:none;transition:opacity .15s ease}

/* Zonder die knoppenrij eronder mogen de kassakoopjes wat lucht en een eigen scheiding. */
.pepschep .cartpage__main > .kkstrip{margin-top:34px;padding-top:28px;border-top:1px solid var(--line)}
@media (max-width:600px){
  .pepschep .cartpage__main > .kkstrip{margin-top:26px;padding-top:22px}
}

/* De groene strook boven het kassakoopje is weg; het badgelabel plakte daardoor tegen de titel. */
.pepschep .cotop{margin-top:30px}
@media (max-width:600px){ .pepschep .cotop{margin-top:24px} }

/* Melding onder het kortingscodeveld in het bestellingsoverzicht. */
.pepschep .cpn__melding{margin:9px 0 0;font-size:13.5px;line-height:1.4}
.pepschep .cpn__melding:empty{display:none}
.pepschep .cpn__melding.is-goed{color:#146C3A;font-weight:600}
.pepschep .cpn__melding.is-fout{color:#B42318}

@media (max-width:900px){
  /* De kolom stond op align-items:start en kromp daardoor mee met de inhoud. */
  .pepschep form.checkout .copage__side{align-self:stretch;width:100%}
}

/* De regel boven de cadeaubalk viel vaak net over twee regels. */
.cdo__tekst{font-size:13.5px}
@media (max-width:400px){ .cdo__tekst{font-size:13px} }
@media (max-width:360px){ .cdo{padding-left:16px;padding-right:16px} .cdo__tekst{font-size:12.5px} }

/* De opmerking bij de bestelling is een smalle uitklapregel geworden, geen wit vak meer. */
.pepschep .cobox__shipwrap .woocommerce-additional-fields.conote-wrap{border:0;background:none;padding:0;margin:0 0 18px}
.pepschep .conote{border:1px solid var(--line);border-radius:var(--r-pill);background:#fff;padding:0 18px}
.pepschep .conote[open]{border-radius:18px;padding:4px 18px 16px}
.pepschep .conote__toggle{display:flex;align-items:center;justify-content:space-between;gap:10px;list-style:none;cursor:pointer;padding:14px 0;font-size:14.5px;font-weight:600;color:var(--muted);-webkit-tap-highlight-color:transparent}
.pepschep .conote__toggle::-webkit-details-marker{display:none}
.pepschep .conote__toggle:hover{color:var(--accent)}
.pepschep .conote__chev{flex:none;width:17px;height:17px;transition:transform .2s ease}
.pepschep .conote[open] .conote__chev{transform:rotate(180deg)}
.pepschep .conote .form-row{margin:0}
.pepschep .conote label{display:none}
.pepschep .conote textarea,
.pepschep .conote #order_comments{min-height:88px!important}

/* ============ Bedankpagina na het bestellen ============ */
.pepdank{max-width:780px;margin:0 auto;padding:0 0 20px}

.pepdank__hero{text-align:center;padding:6px 0 4px}
.pepdank__ping{display:inline-flex;align-items:center;gap:8px;background:#EAF6EF;color:#146C3A;
  font-size:12.5px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;
  border-radius:var(--r-pill);padding:7px 14px;margin:0 0 14px}
.pepdank__ping::before{content:'';width:12px;height:7px;border-left:2.4px solid currentColor;
  border-bottom:2.4px solid currentColor;transform:rotate(-45deg) translateY(-2px)}
.pepdank__ping--mis{background:#FDECEA;color:#B42318}
.pepdank__ping--mis::before{display:none}

.pepdank__titel{font-family:var(--font-display);font-weight:600;font-size:44px;line-height:1.02;
  letter-spacing:-.015em;margin:0 0 12px}
.pepdank__sub{font-size:17px;line-height:1.5;color:var(--muted);max-width:560px;margin:0 auto}
.pepdank__sub b{color:var(--ink);font-weight:600;overflow-wrap:anywhere}

.pepdank__gif{margin:26px auto 0;max-width:420px}
.pepdank__gif img{width:100%;height:auto;display:block;border-radius:18px;background:var(--surface)}

.pepdank__knoppen{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:14px;margin:24px 0 0}
.pepdank__knoppen--onder{margin-top:34px}
.pepdank__tweede{font-weight:600;font-size:15px;color:var(--ink);text-decoration:underline;text-underline-offset:3px}
.pepdank__tweede:hover{color:var(--accent)}

.pepdank__feiten{list-style:none;display:grid;grid-template-columns:repeat(4,1fr);margin:34px 0 0;padding:0;
  border:1px solid var(--line);border-radius:18px;background:#fff;overflow:hidden}
.pepdank__feiten li{padding:15px 16px;min-width:0;border-left:1px solid var(--line)}
.pepdank__feiten li:first-child{border-left:0}
.pepdank__feiten span{display:block;font-size:12px;font-weight:700;letter-spacing:.05em;
  text-transform:uppercase;color:var(--muted)}
.pepdank__feiten b{display:block;font-family:var(--font-display);font-weight:600;font-size:17px;
  margin-top:4px;overflow-wrap:anywhere}
.pepdank__feiten .amount{font-family:var(--font-display);font-weight:600}

.pepdank__kop{font-family:var(--font-display);font-weight:600;font-size:22px;margin:0 0 16px}

.pepdank__stappen{margin:34px 0 0;border:1px solid var(--line);border-radius:18px;background:#fff;padding:22px}
.pepdank__stappen ol{list-style:none;margin:0;padding:0;counter-reset:pepstap}
.pepdank__stappen li{position:relative;padding:0 0 22px 44px;counter-increment:pepstap}
.pepdank__stappen li:last-child{padding-bottom:0}
.pepdank__stappen li::before{content:counter(pepstap);position:absolute;left:0;top:0;width:28px;height:28px;
  border-radius:50%;background:var(--surface);color:var(--muted);border:1.5px solid var(--line);
  font-size:13px;font-weight:700;display:flex;align-items:center;justify-content:center}
.pepdank__stappen li::after{content:'';position:absolute;left:13.5px;top:30px;bottom:6px;width:1.5px;background:var(--line)}
.pepdank__stappen li:last-child::after{display:none}
.pepdank__stappen li.is-klaar::before{content:'';background:#146C3A;border-color:#146C3A;
  background-image:linear-gradient(transparent,transparent)}
.pepdank__stappen li.is-klaar::before{background:#146C3A}
.pepdank__vink{position:absolute;left:8px;top:9px;width:12px;height:7px;border-left:2.2px solid #fff;
  border-bottom:2.2px solid #fff;transform:rotate(-45deg)}
.pepdank__stappen li b{display:block;font-family:var(--font-display);font-weight:600;font-size:16.5px;line-height:1.25}
.pepdank__stappen li>span{display:block;font-size:14.5px;line-height:1.5;color:var(--muted);margin-top:3px}
.pepdank__stappen li>span b{display:inline;font-family:var(--font-body);font-weight:700;color:var(--ink);font-size:inherit}

.pepdank__muziek{margin:18px 0 0;display:flex;align-items:center;gap:14px;flex-wrap:wrap;
  border:2px dashed var(--accent);border-radius:18px;background:var(--surface);padding:16px 18px}
.pepdank__noot{flex:none;width:40px;height:40px;border-radius:50%;background:var(--accent);position:relative}
.pepdank__noot::before{content:'';position:absolute;left:15px;top:11px;width:2.4px;height:14px;background:#fff;border-radius:2px}
.pepdank__noot::after{content:'';position:absolute;left:11px;top:22px;width:9px;height:7px;background:#fff;border-radius:99px}
.pepdank__muziek div{flex:1;min-width:160px}
.pepdank__muziek b{display:block;font-family:var(--font-display);font-weight:600;font-size:16.5px}
.pepdank__muziek span{display:block;font-size:14px;color:var(--muted);margin-top:2px}
.pepdank__muziek a{flex:none;background:var(--accent);color:#fff;font-weight:700;font-size:14.5px;
  border-radius:var(--r-pill);padding:12px 20px;white-space:nowrap}
.pepdank__muziek a:hover{background:var(--accent-ink)}

@media (max-width:700px){
  .pepdank__titel{font-size:31px}
  .pepdank__sub{font-size:15.5px}
  .pepdank__feiten{grid-template-columns:1fr 1fr}
  .pepdank__feiten li{border-top:1px solid var(--line)}
  .pepdank__feiten li:nth-child(-n+2){border-top:0}
  .pepdank__feiten li:nth-child(odd){border-left:0}
  .pepdank__stappen{padding:18px 16px}
  .pepdank__muziek{padding:14px}
  .pepdank__muziek a{width:100%;text-align:center}
}
/* Op de bedankpagina staat de eigen kop al in het blok zelf. */
.woocommerce-order-received .pagehead{display:none}
.woocommerce-order-received .pagewrap{padding-top:34px}
@media (max-width:600px){ .woocommerce-order-received .pagewrap{padding-top:22px} }
.pepdank__feiten b{overflow-wrap:normal}
.pepdank__feiten .amount{white-space:nowrap}
.pepdank__feiten li:nth-child(4) b{font-size:15.5px;line-height:1.3}

/* .pepschep .woocommerce a kleurt alle links blauw; de knop werd daardoor blauw op blauw. */
.pepschep .pepdank__muziek a{color:#fff}
.pepschep .pepdank__muziek a:hover{color:#fff}
.pepschep .pepdank__tweede{color:var(--ink)}
.pepschep .pepdank__tweede:hover{color:var(--accent)}
.pepdank__feiten b{line-height:1.25}

/* Losse tekst van de betaalmethode, bijvoorbeeld de uitleg bij contant betalen. */
.pepdank > p:not([class]){margin:20px 0 0;font-size:15px;line-height:1.5;color:var(--muted);
  background:var(--surface);border-radius:14px;padding:14px 16px}

/* De bestelgegevens van WooCommerce eronder. */
.pepdank > h2{font-family:var(--font-display);font-weight:600;font-size:22px;margin:34px 0 14px}
.pepdank .shop_table{width:100%;border:1px solid var(--line);border-radius:18px;background:#fff;
  border-collapse:separate;border-spacing:0;overflow:hidden;font-size:15px}
.pepdank .shop_table th,.pepdank .shop_table td{padding:14px 16px;text-align:left;border-bottom:1px solid var(--line);vertical-align:top}
.pepdank .shop_table thead th{font-family:var(--font-display);font-weight:600;font-size:15px;background:var(--surface)}
.pepdank .shop_table tfoot th{font-weight:700}
.pepdank .shop_table tr:last-child th,.pepdank .shop_table tr:last-child td{border-bottom:0}
.pepschep .pepdank .shop_table a{color:var(--ink);font-weight:600}
.pepschep .pepdank .shop_table a:hover{color:var(--accent)}
.pepdank .shop_table .wc-item-meta{list-style:none;margin:5px 0 0;padding:0;font-size:13.5px;color:var(--muted)}
.pepdank .shop_table .wc-item-meta p{display:inline;margin:0}
.pepdank .shop_table .wc-item-meta strong{font-weight:700;color:var(--ink)}
.pepdank .woocommerce-customer-details{margin-top:34px}
.pepdank address{font-style:normal;line-height:1.6;color:var(--muted);border:1px solid var(--line);
  border-radius:16px;background:#fff;padding:16px 18px}

/* Ergens in het thema staat het euroteken op display:block; in deze cellen moet het naast het bedrag. */
.pepschep .pepdank__feiten .woocommerce-Price-currencySymbol{display:inline;width:auto}
.pepschep .pepdank__feiten .amount{display:inline}

/* Zelfde verhaal als bij de knop Zet aan: .pepschep .woocommerce a maakte de tekst blauw op blauw. */
.pepschep .pepdank .btn--primary,
.pepschep .pepdank .btn--primary:hover{color:#fff}

.pepschep .pepdank .pepdank__tweede{color:var(--ink)}
.pepschep .pepdank .pepdank__tweede:hover{color:var(--accent)}

/* Eindigt de pagina met een gekleurd blok, dan hoeft daaronder geen witte strook meer.
   De oude regel .archive-longread + .site-footer kon nooit werken: de voettekst is geen
   buurman van dat blok maar van main. */
main:has(> .section--tint:last-child) + .site-footer{margin-top:0}

/* De animatie boven aan de bedankpagina. */
.pepdank__rit{margin:26px auto 0;max-width:640px}
.pepdank__rit img{width:100%;height:auto;display:block;border-radius:20px}
@media (max-width:600px){ .pepdank__rit{margin-top:20px} }

/* ============ Vaak samen gekocht op de productpagina ============ */
.erbij{margin:0 0 18px;flex:1 0 100%;width:100%;min-width:0}
.erbij__kop{font-family:var(--font-display);font-weight:600;font-size:16.5px;margin:0}
.erbij__uit{font-size:13.5px;color:var(--muted);margin:3px 0 0;line-height:1.45}
.erbij__lijst{display:grid;gap:8px;margin-top:11px}
.erbijk{display:flex;align-items:center;gap:12px;padding:10px 12px;cursor:pointer;position:relative;
  border:1.5px solid var(--line);border-radius:14px;background:#fff;
  transition:border-color .18s ease,background-color .18s ease}
.erbijk:hover{border-color:#C3CDF7}
.erbijk:has(input:checked){border-color:var(--accent);background:var(--surface)}
.erbijk input{position:absolute;opacity:0;width:0;height:0}
.erbijk__foto{flex:none;width:54px;height:54px;border-radius:11px;overflow:hidden;background:#F2F3F7;display:block}
.pepschep .erbijk__img{width:54px!important;height:54px!important;object-fit:cover!important;display:block;mix-blend-mode:normal!important}
.erbijk__t{flex:1;min-width:0}
.erbijk__t b{display:block;font-family:var(--font-display);font-weight:600;font-size:15px;line-height:1.2;color:var(--ink)}
.erbijk__p{display:block;font-size:14px;font-weight:600;color:var(--ink);margin-top:3px}
.erbijk__p s{color:#8894B8;font-weight:500;font-size:13px;margin-right:4px}
.erbijk__vak{flex:none;width:24px;height:24px;border:2px solid var(--line);border-radius:50%;background:#fff;
  position:relative;transition:border-color .18s ease,background-color .18s ease}
.erbijk__vak::before{content:'';position:absolute;left:50%;top:50%;width:11px;height:2.4px;border-radius:2px;
  background:#8894B8;transform:translate(-50%,-50%);transition:opacity .15s ease}
.erbijk__vak::after{content:'';position:absolute;left:50%;top:50%;width:2.4px;height:11px;border-radius:2px;
  background:#8894B8;transform:translate(-50%,-50%);transition:opacity .15s ease,transform .18s ease}
.erbijk:has(input:checked) .erbijk__vak{background:var(--accent);border-color:var(--accent)}
.erbijk:has(input:checked) .erbijk__vak::before{opacity:0}
.erbijk:has(input:checked) .erbijk__vak::after{width:11px;height:6px;background:none;border-left:2.4px solid #fff;
  border-bottom:2.4px solid #fff;border-radius:0;transform:translate(-50%,-70%) rotate(-45deg)}
.erbijk input:focus-visible ~ .erbijk__vak{box-shadow:0 0 0 3px rgba(46,75,255,.22)}
@media (max-width:420px){
  .erbijk{gap:10px;padding:9px 10px}
  .erbijk__foto{width:48px;height:48px}
  .pepschep .erbijk__img{width:48px!important;height:48px!important}
  .erbijk__t b{font-size:14.5px}
}
