:root{
  --bg:#fbfaf7;
  --surface:#ffffff;
  --text:#121212;
  --muted:rgba(18,18,18,.62);
  --border:rgba(18,18,18,.10);
  --shadow:0 18px 60px rgba(0,0,0,.10);

  --accent:#7a1230;
  --accent2:#5e0d24;

  --radius:18px;
  --pill:999px;
  --container:1160px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.container{max-width:var(--container);margin:0 auto;padding:0 22px}
.section{padding:56px 0}
.muted{color:var(--muted)}
.small{font-size:13px;line-height:1.45}

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,250,247,.86);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
}
.header-row{
  display:flex;align-items:center;gap:18px;
  padding:14px 0;
}
.brand{display:flex;flex-direction:column;gap:2px}
.brand-mark{font-weight:900;letter-spacing:.08em}
.brand-sub{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.12em}

.nav{margin-left:auto;display:flex;gap:12px;align-items:center}
.nav-link{
  font-size:13px;
  color:rgba(18,18,18,.78);
  padding:10px 12px;
  border-radius:var(--pill);
  border:1px solid transparent;
}
.nav-link:hover{background:rgba(0,0,0,.04)}
.nav-link.is-active{background:rgba(0,0,0,.06);border-color:rgba(0,0,0,.06);font-weight:800}

.actions{display:flex;gap:10px;align-items:center}
.action{
  height:38px;display:inline-flex;align-items:center;justify-content:center;
  padding:0 14px;border-radius:var(--pill);
  border:1px solid var(--border);background:var(--surface);
  font-size:13px;font-weight:700;color:rgba(18,18,18,.82);
}
.action:hover{border-color:rgba(18,18,18,.18)}
.action--solid{background:#111;color:#fff;border-color:#111}

.burger{display:none;background:transparent;border:0;padding:8px;border-radius:12px}
.burger span{display:block;width:18px;height:2px;background:#111;margin:4px 0;border-radius:2px}

.mobile-nav{display:none;border-top:1px solid var(--border);padding:10px 22px;background:rgba(251,250,247,.92)}
.mobile-nav a{display:block;padding:12px 0;color:rgba(18,18,18,.82)}

@media (max-width: 980px){
  .nav{display:none}
  .burger{display:inline-flex}
  body.nav-open .mobile-nav{display:block}
}

/* Logo / brand */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  height:60px;          /* pas aan indien nodig */
  width:auto;
  display:block;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand-mark{
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.brand-sub{
  font-size:11px;
  color:var(--muted);
  letter-spacing:.12em;
  text-transform:uppercase;
}

/* Mobile: tekst verbergen, alleen logo */
@media (max-width: 520px){
  .brand-text{display:none}
  .brand-logo{height:60px}
}

/* Hero */
.hero{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  min-height:560px;
  background:#000;
  box-shadow:var(--shadow);
}
.hero__media{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transform:scale(1.02);
}
.hero__media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg,
    rgba(0,0,0,.64) 0%,
    rgba(0,0,0,.42) 40%,
    rgba(0,0,0,.10) 70%,
    rgba(0,0,0,0) 100%);
}
.hero__content{
  position:relative; z-index:2;
  padding:56px;
  max-width:560px;
  color:#fff;
}
.kicker{font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.84);font-weight:800}
.h1{margin:14px 0 12px;font-size:56px;line-height:1.02;letter-spacing:-.02em}
.lead{margin:0;color:rgba(255,255,255,.86);line-height:1.6;max-width:48ch}
.hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}
.note{margin-top:18px;color:rgba(255,255,255,.72);font-size:13px}

@media (max-width: 520px){
  .hero__content{padding:28px}
  .h1{font-size:40px}
}

/* Buttons */
.btn{
  height:44px;
  display:inline-flex;align-items:center;justify-content:center;
  padding:0 18px;border-radius:var(--pill);
  font-weight:900;font-size:14px;border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn--primary{background:#fff;color:#111}
.btn--primary:hover{transform:translateY(-1px);box-shadow:0 14px 24px rgba(0,0,0,.18)}
.btn--ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.32)}
.btn--ghost:hover{border-color:rgba(255,255,255,.55);transform:translateY(-1px)}

/* Cards + grid */
.grid{display:grid;gap:18px}
.grid--2{grid-template-columns:1.15fr .85fr}
@media (max-width: 980px){ .grid--2{grid-template-columns:1fr} }

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
}
.card__inner{padding:22px}
.card__title{margin:0 0 14px;font-size:18px;font-weight:900}

/* Products */
.products{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
@media (max-width: 980px){ .products{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 540px){ .products{grid-template-columns:1fr} }

.product{
  background:#fff;border:1px solid var(--border);
  border-radius:18px;overflow:hidden;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.product:hover{transform:translateY(-2px);box-shadow:0 18px 55px rgba(0,0,0,.10);border-color:rgba(18,18,18,.18)}
.product__img{height:190px;padding:14px;display:flex;align-items:center;justify-content:center;background:linear-gradient(180deg, rgba(0,0,0,.03), transparent)}
.product__img img{width:100%;height:100%;object-fit:contain}
.product__body{padding:14px 14px 16px}
.product__name{margin:0 0 6px;font-weight:900}
.product__sub{margin:0 0 12px;color:var(--muted);font-size:13px}
.product__row{display:flex;justify-content:space-between;align-items:center}
.price{font-weight:900}
.product:hover .price{color:var(--accent)}

/* Footer */
.site-footer{margin-top:56px;border-top:1px solid var(--border);padding:46px 0;background:rgba(255,255,255,.40)}
.footer-grid{display:grid;gap:18px;grid-template-columns:1.2fr 1fr 1fr .9fr}
@media (max-width: 980px){ .footer-grid{grid-template-columns:1fr 1fr} }
@media (max-width: 560px){ .footer-grid{grid-template-columns:1fr} }
.footer-brand{font-weight:900;letter-spacing:.06em;margin-bottom:6px}
.footer-title{font-weight:900;margin-bottom:10px}
.footer-link{display:block;color:var(--muted);margin:8px 0}
.footer-link:hover{color:var(--accent)}
.footer-bottom{padding-top:14px;margin-top:14px;border-top:1px solid var(--border)}
.footer-bottom--credits{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer-credit{
  display:flex;
  align-items:center;
  gap:8px;
}

.footer-credit-logo{
  width:60px;
  height:auto;
  opacity:.9;
}

/* Forms */
.label{display:block;font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin:0 0 8px}
.input,.select,textarea{
  width:100%;border:1px solid var(--border);border-radius:16px;
  background:#fff;padding:14px 14px;font-size:15px;outline:none;
  transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.input:focus,.select:focus,textarea:focus{
  border-color:rgba(122,18,48,.28);
  box-shadow:0 0 0 5px rgba(122,18,48,.12);
  transform:translateY(-1px);
}

/* Accordion (details/summary) */
.accordion{
  border:1px solid var(--border);
  border-radius:16px;
  background:var(--surface);
  padding:12px 14px;
  margin-top:12px;
}
.accordion summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.accordion summary::-webkit-details-marker{display:none}
.accordion summary::after{
  content:"＋";
  float:right;
  opacity:.65;
}
.accordion[open] summary::after{content:"—"}
.accordion__body{margin-top:10px}

/* Team */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}

@media (max-width: 980px){
  .team-grid{grid-template-columns:repeat(2, 1fr)}
}
@media (max-width: 540px){
  .team-grid{grid-template-columns:1fr}
}

.team-card{
  margin:0;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:var(--surface);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.team-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 55px rgba(0,0,0,.10);
  border-color:rgba(18,18,18,.18);
}

.team-photo{
  aspect-ratio: 4 / 5;
  background:linear-gradient(180deg, rgba(0,0,0,.03), transparent);
  overflow:hidden;
}

.team-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  /* ✅ automatic grey filter */
  filter: grayscale(1) contrast(1.05) brightness(.98);
  transition: filter .18s ease, transform .18s ease;
}

/* Subtle premium effect on hover */
.team-card:hover .team-photo img{
  filter: grayscale(.15) contrast(1.06) brightness(1);
  transform: scale(1.02);
}

.team-body{padding:12px 14px 14px}
.team-name{font-weight:900}
.team-role{margin-top:4px}

/* =========================
   Team showcase (zoals voorbeeld)
   ========================= */

.team-grid--showcase{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items:start;
}

@media (max-width: 980px){
  .team-grid--showcase{ grid-template-columns: repeat(2, 1fr); gap:22px; }
}
@media (max-width: 560px){
  .team-grid--showcase{ grid-template-columns: 1fr; }
}

/* maak het "clean" (geen card look) */
.team-card--showcase{
  margin:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
  transform:none !important;
}

/* brede foto met vaste hoogte */
.team-photo--wide{
  height: 220px;              /* hiermee zijn ze niet meer mega */
  border:1px solid rgba(18,18,18,.12);
  background:#eee;
  overflow:hidden;
}

/* forceer zwart-wit altijd */
.team-photo--wide img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: grayscale(1) contrast(1.05) brightness(.98) !important;
  transform:none !important;
}

/* GEEN kleur terug op hover */
.team-card--showcase:hover .team-photo--wide img{
  filter: grayscale(1) contrast(1.05) brightness(.98) !important;
}

/* Tekst zoals voorbeeld */
.team-body--showcase{
  text-align:center;
  padding-top:18px;
}

.team-name--showcase{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.01em;
  margin:0;
  color: var(--accent);
}

.team-role--showcase{
  margin-top:10px;
  font-size: 14px;
  color: rgba(18,18,18,.60);
}

/* Bordeaux lijn */
.team-line{
  margin: 22px auto 0;
  height: 10px;
  width: 78%;
  background: var(--accent);
}

/* SHOP */
.shop-header{
  display:flex;
  gap:18px;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
}

.shop-filters{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}

.pill-group{display:flex; gap:8px; flex-wrap:wrap;}
.pill{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.7);
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  font-size:14px;
}
.pill.is-active{
  border-color:rgba(122,18,48,.35);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.select{
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
}

.link-reset{color:var(--muted); font-weight:600; text-decoration:none;}
.link-reset:hover{text-decoration:underline;}

.product-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
@media (max-width: 980px){
  .product-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
}
@media (max-width: 640px){
  .product-grid{grid-template-columns:1fr;}
}

.product-card{
  background:rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:170px;
}

.badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  font-size:12px;
  font-weight:700;
  color:var(--muted);
  margin-bottom:10px;
  width:fit-content;
}

.product-card__title{margin:0 0 6px 0;}
.product-card__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
}

.product-card__image{
  height: 210px;
  overflow: hidden;
  border-radius: 14px;
  background: #f4f1ec;
  margin-bottom: 12px;
}

.product-card__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* kleine hover lift */
.product-card:hover .product-card__image img{
  transform: scale(1.03);
  transition: transform .35s ease;
}

/* ===== HARD SHOP FIX: stop mega images ===== */
.product-card{ overflow:hidden !important; }

.product-card__image{
  height:210px !important;
  overflow:hidden !important;
}

.product-card__image img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  max-width:100% !important;
}

/* =========================
   Team showcase — Tomajbor clean (geen rood)
   ========================= */

.team-grid--showcase{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items:start;
}

@media (max-width: 980px){
  .team-grid--showcase{ grid-template-columns: repeat(2, 1fr); gap:22px; }
}
@media (max-width: 560px){
  .team-grid--showcase{ grid-template-columns: 1fr; }
}

/* Clean: geen card look */
.team-card--showcase{
  margin:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
  transform:none !important;
}

.team-card--showcase:hover{
  transform:none;
  box-shadow:none;
  border-color:transparent;
}

/* Foto: breed + vaste hoogte (niet mega) */
.team-photo--wide{
  height: 220px;
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(0,0,0,.03), transparent);
  overflow:hidden;
}

/* Zwart-wit altijd (en geen kleur bij hover) */
.team-photo--wide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: grayscale(1) contrast(1.05) brightness(.98) !important;
  transform:none !important;
}
.team-card--showcase:hover .team-photo--wide img{
  filter: grayscale(1) contrast(1.05) brightness(.98) !important;
}

/* Typografie: clean, niet bordeaux */
.team-body--showcase{
  text-align:center;
  padding-top: 18px;
}

.team-name--showcase{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.01em;
  margin:0;
  color: var(--text); /* ✅ geen rood */
}

.team-role--showcase{
  margin-top:10px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--muted);
}

/* Onderlijn: subtiel, clean (geen accent) */
.team-line{
  margin: 18px auto 0;
  height: 6px;
  width: 70%;
  background: rgba(18,18,18,.18);  /* ✅ subtiele lijn */
}

/* ✅ FORCE header logo sizing (works even without classes) */
.site-header .brand img,
.site-header .brand svg,
.site-header .brand picture img{
  height: 60px !important;
  max-height: 60px !important;
  width: auto !important;
  max-width: none !important;
}

/* Als je logo een class heeft, nog specifieker */
.brand-logo{
  height: 60px !important;
  width: auto !important;
  max-width: none !important;
}

/* ===== SHOP: hard size lock (prevents banner images) ===== */
.product-grid > .product-card .product-card__image{
  height: 180px !important;
  overflow: hidden !important;
}

.product-grid > .product-card .product-card__image img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Cards compact */
.product-grid > .product-card{
  overflow: hidden !important;
  padding: 14px !important;
  min-height: 0 !important;
}

/* Account dropdown bubble */
.account{ position:relative; display:inline-block; }
.account__btn{ position:relative; }

.account__panel{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  width: 320px;
  background: var(--card, #fff);
  border: 1px solid var(--border, #ece7df);
  border-radius: 16px;
  box-shadow: var(--shadow, 0 14px 40px rgba(0,0,0,.06));
  padding: 14px;
  z-index: 50;
  display:none;
}

.account.is-open .account__panel{ display:block; }

.account__panel:before{
  content:"";
  position:absolute;
  right: 18px;
  top: -8px;
  width: 14px;
  height: 14px;
  background: var(--card, #fff);
  border-left: 1px solid var(--border, #ece7df);
  border-top: 1px solid var(--border, #ece7df);
  transform: rotate(45deg);
}

.account__title{
  font-weight: 700;
  margin: 2px 0 10px;
}

.account__form{ display:grid; gap:10px; }
.account__label{ font-size: 13px; color: var(--muted, #6c6c6c); }

.account__input{
  width:100%;
  padding: 12px 12px;
  border: 1px solid var(--border, #ece7df);
  border-radius: 12px;
  font: inherit;
  background: #fff;
}

.account__submit{
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border, #ece7df);
  background: var(--burgundy, #7a1230);
  color: #fff;
  cursor:pointer;
  font-weight: 700;
}

.account__link{
  color: var(--burgundy, #7a1230);
  text-decoration: none;
  font-size: 13px;
}

.account__who{ padding: 6px 0 10px; }
.account__name{ font-weight: 700; }
.account__email{ font-size: 13px; color: var(--muted, #6c6c6c); margin-top:2px; }

.account__menu{ display:grid; gap:8px; }
.account__item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border, #ece7df);
  background: #fff;
  text-decoration:none;
  color: inherit;
  cursor:pointer;
  font: inherit;
}

.account__item:hover{ filter: brightness(0.98); }

.account__logout{
  text-align:left;
  background: rgba(122,18,48,.06);
  border-color: rgba(122,18,48,.18);
}

.account__tabs{
  display:flex;
  gap:8px;
  margin: 2px 0 12px;
}
.account__tab{
  flex:1;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid var(--border,#ece7df);
  background:#fff;
  cursor:pointer;
  font:inherit;
  font-weight:700;
}
.account__tab.is-active{
  border-color: rgba(122,18,48,.35);
  background: rgba(122,18,48,.06);
}

.account__view{ display:none; }
.account__view.is-active{ display:block; }

.account__hint{
  font-size: 12px;
  color: var(--muted,#6c6c6c);
  line-height: 1.35;
}

/* =========================
   Account page styling
   ========================= */

.form{ display:block; }
.field{ display:grid; gap:8px; margin: 0 0 14px; }

.field label{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
}

.field small{
  margin-top: -4px;
  font-size: 13px;
  color: var(--muted);
}

input[type="text"],
input[type="email"],
input[type="password"]{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus{
  border-color: rgba(122,18,48,.35);
  box-shadow: 0 0 0 4px rgba(122,18,48,.10);
}

.kicker{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.h1{
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.lead{
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 18px;
}

/* Cards (match your soft style) */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Buttons (if .btn exists, this will refine it) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: inherit;
  cursor: pointer;
  font-weight: 700;
  transition: transform .06s ease, filter .15s ease, border-color .15s ease;
}

.btn:hover{ filter: brightness(.99); }
.btn:active{ transform: translateY(1px); }

.btn--ghost{
  background: transparent;
}

.muted{ color: var(--muted); }

/* Account page grid improvements */
.grid{
  align-items: start;
}

.kv{
  font-size: 16px;
}

.kv .muted{
  font-size: 14px;
}

/* Make the forms breathe a bit more inside cards */
.card .h2{ margin-top: 0; }
.card .h3{ margin-top: 0; }

/* Responsive: stack cards on mobile */
@media (max-width: 900px){
  .grid{
    grid-template-columns: 1fr !important;
  }
}

/* Optional: nicer horizontal rule */
hr{
  border: none;
  border-top: 1px solid var(--border);
}

select{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  font:inherit;
}
select:focus{
  border-color: rgba(122,18,48,.35);
  box-shadow: 0 0 0 4px rgba(122,18,48,.10);
}

.cart-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:18px;
  height:18px;
  padding:0 6px;
  margin-left:8px;
  border-radius:999px;
  font-size:12px;
  line-height:1;
  background:#111;
  color:#fff;
}

/* Drawer container */
.cart-drawer{
  position:fixed;
  inset:0;
  z-index:1000;
  pointer-events:none;
}
.cart-drawer.is-open{
  pointer-events:auto;
}

/* Overlay */
.cart-drawer__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  transition:opacity .22s ease;
}
.cart-drawer.is-open .cart-drawer__overlay{
  opacity:1;
}

/* Cart Drawer wrapper */
.cart-drawer{
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.cart-drawer.is-open{
  pointer-events: auto;
}

/* Overlay */
.cart-drawer__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .22s ease;
}

.cart-drawer.is-open .cart-drawer__overlay{
  opacity: 1;
}

/* Panel */
.cart-drawer__panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(420px, 92vw);
  background:#fff;
  transform:translateX(102%);
  transition:transform .22s ease;
  display:flex;
  flex-direction:column;
  box-shadow:-24px 0 48px rgba(0,0,0,.18);
}
.cart-drawer.is-open .cart-drawer__panel{
  transform:translateX(0);
}

.cart-drawer__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.cart-drawer__title{ font-weight:700; }
.cart-drawer__close{
  appearance:none;
  border:0;
  background:transparent;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.cart-drawer__body{
  padding:16px;
  overflow:auto;
  flex:1;
}

.cart-drawer__footer{
  border-top:1px solid rgba(0,0,0,.08);
  padding:14px 16px 16px;
  background:#fff;
}
.cart-drawer__summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}
.cart-drawer__actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

/* Kleine button helpers (als je ze nog niet hebt) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  border:1px solid rgba(0,0,0,.12);
}
.btn--ghost{ background:#fff; color:#111; }
.btn--solid{ background:#111; color:#fff; border-color:#111; }

/* Cart Drawer wrapper */
.cart-drawer{
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.cart-drawer.is-open{ pointer-events: auto; }

/* Overlay */
.cart-drawer__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .22s ease;
}
.cart-drawer.is-open .cart-drawer__overlay{ opacity: 1; }

/* Panel */
.cart-drawer__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background: #fff;
  transform: translateX(102%);
  transition: transform .22s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 48px rgba(0,0,0,.18);
}
.cart-drawer.is-open .cart-drawer__panel{ transform: translateX(0); }

.cart-drawer__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.cart-drawer__title{ font-weight:700; }
.cart-drawer__close{
  appearance:none;
  border:0;
  background:transparent;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.cart-drawer__body{ padding:16px; overflow:auto; flex:1; }
.cart-drawer__footer{ border-top:1px solid rgba(0,0,0,.08); padding:14px 16px 16px; }
