/* 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 12s 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%,18%{transform:translateY(0)}
  25%,43%{transform:translateY(-38px)}
  50%,68%{transform:translateY(-76px)}
  75%,93%{transform:translateY(-114px)}
  100%{transform:translateY(-152px)}
}
@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)}
