.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:12px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .06s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--primary);
  color: #111827;
  box-shadow: 0 16px 30px rgba(245,158,11,.20);
}
.btn--primary:hover{ background:var(--primary-600); }

.btn--ghost{
  background: rgba(255,255,255,.75);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover{ background: #fff; }

.cta-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px;
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cta-strip__title{ margin:0; }
.cta-strip__text{ margin:6px 0 0; color:var(--muted); max-width: 70ch; }

/* Shop filters */
.page-head{ padding: 26px 0 10px; }
.page-head__title{ margin:0; font-size: 28px; }
.page-head__sub{ margin:8px 0 0; color: var(--muted); max-width: 70ch; }

.filters{ margin: 14px 0 18px; }
.filters__form{
  display:grid;
  grid-template-columns: 1fr 260px auto;
  gap:14px;
  align-items:end;
}
.filters__group{ display:grid; gap:8px; }
.label{ font-weight:800; font-size:13px; color:#374151; }
.input, .select{
  border:1px solid var(--border);
  border-radius: 12px;
  padding: 12px 12px;
  background:#fff;
  font-weight:700;
}
.filters__actions{ display:flex; gap:10px; }

/* Products grid */
.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  padding-bottom: 18px;
}

.product-card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(17,24,39,.05);
}
.product-card__media{
  display:block;
  position:relative;
  background: rgba(17,24,39,.03);
}
.product-card__img{
  width:100%;
  height: 210px;
  object-fit: cover;
  display:block;
}
.product-card__placeholder{
  height:210px;
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(124,58,237,.08));
}

.sale-badge{
  position:absolute;
  top:12px;
  left:12px;
  background:#111827;
  color:#fff;
  font-weight:900;
  border-radius: 999px;
  padding:8px 10px;
  font-size:12px;
}

.product-card__body{ padding:14px; display:grid; gap:10px; }
.product-card__title{ margin:0; font-size:16px; font-weight:900; }
.product-card__title a:hover{ text-decoration: underline; }

.product-card__price{
  display:flex;
  align-items:baseline;
  gap:10px;
}
.price__now{ font-weight:900; font-size:18px; }
.price__old{ color: var(--muted); text-decoration: line-through; font-weight:800; }

.product-card__actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.nav__link--cart{ position:relative; }
.cart-badge{
  margin-left:8px;
  background: rgba(37,99,235,.12);
  color: var(--primary-600);
  border:1px solid rgba(37,99,235,.18);
  font-weight:900;
  padding:2px 8px;
  border-radius:999px;
}

/* Toast */
.toast{
  position:fixed;
  right:18px;
  bottom:18px;
  padding:12px 14px;
  border-radius: 12px;
  background:#111827;
  color:#fff;
  font-weight:800;
  box-shadow: var(--shadow);
  opacity:0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  z-index:9999;
}
.toast--show{
  opacity:1;
  transform: translateY(0);
}

/* =========================
   Cart page
   ========================= */
.cart-layout{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  padding: 10px 0 26px;
}
@media (max-width: 980px){
  .cart-layout{ grid-template-columns: 1fr; }
}

.cart-table{ padding: 14px; }
.cart-table__head{
  display:grid;
  grid-template-columns: 1.2fr .5fr .45fr .5fr .35fr;
  gap: 10px;
  padding: 10px 6px;
  font-weight: 900;
  color: rgba(243,244,246,.85);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.cart-row{
  display:grid;
  grid-template-columns: 1.2fr .5fr .45fr .5fr .35fr;
  gap: 10px;
  padding: 12px 6px;
  align-items:center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.right{ text-align:right; }
.center{ text-align:center; }

.cart-prod{
  display:flex;
  gap: 12px;
  align-items:center;
}
.cart-thumb{
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.cart-title{ font-weight: 1000; }
.cart-old{
  font-size: 12px;
  opacity: .65;
  text-decoration: line-through;
  margin-top: 2px;
}
.qty-input{ max-width: 90px; margin: 0 auto; }

.cart-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 14px;
}

.btn--small{
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 900;
}

.inline{ display:inline; }

.cart-summary{
  padding: 16px;
  height: fit-content;
}
.summary-title{
  margin: 0 0 12px;
  font-size: 16px;
}
.summary-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 10px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin-bottom: 14px;
}
.small{ font-size: 13px; margin-top: 10px; }

/* Force labels (veld titels) altijd wit, ook op admin */
label,
.label,
label.label,
.admin-product-form label,
.admin-product-form .label{
  color: rgba(255,255,255,.92) !important;
  font-weight: 800;
}
/* Input tekst (wat je typt) zwart */
.input,
input.input,
textarea.input,
select.select{
  color: #111 !important;
}

/* Placeholder iets grijs */
.input::placeholder,
textarea.input::placeholder{
  color: rgba(0,0,0,.45) !important;
}

/* Select-option tekst ook zwart */
select.select option{
  color: #111;
}



/* =========================================================
   HOME CONTACT STRIP
   Keeps the Questions before you buy box compact, padded and centered.
   ========================================================= */
/* Homepage: Questions before you buy */
.home-contact-strip{
  width:100%;
  max-width:none;
  margin:34px 0;
  padding:24px 28px;
  box-sizing:border-box;
  align-items:center;
}

.home-contact-strip .cta-strip__content{
  margin-left:25px;
}

.home-contact-strip .cta-strip__actions{
  margin-right:25px;
  flex-shrink:0;
}

@media (max-width:700px){
  .home-contact-strip{
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
  }

  .home-contact-strip .cta-strip__content{
    margin-left:0;
  }

  .home-contact-strip .cta-strip__actions{
    width:100%;
    margin-right:0;
  }

  .home-contact-strip .cta-strip__actions .btn{
    width:100%;
  }
}
