:root {
  --navy: #0b0b0b;
  --navy-2: #1a1a1a;
  --text: #121212;
  --muted: #6b6b6b;
  --line: #ebebeb;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --accent: #ffcc00;
  --bee: #ffcc00;
  --bee-dark: #e6b800;
  --ok: #1f8f5f;
  --danger: #c53d3d;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --font: "Outfit", "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }

.topbar {
  background: var(--bee);
  color: #111;
  font-size: 0.82rem;
  font-weight: 600;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}
.topbar-usps { display: flex; flex-wrap: wrap; gap: 1rem; }
.topbar-usps i { margin-right: 0.25rem; font-size: 0.75rem; opacity: 0.95; }
.topbar-links { display: flex; gap: 1rem; }
.topbar-links a { color: #111; opacity: 0.85; }
.topbar-links a:hover { opacity: 1; }

.site-header {
  border-bottom: 1px solid #1f1f1f;
  background: #0b0b0b;
  position: sticky;
  top: 0;
  z-index: 40;
  color: #fff;
  overflow: visible;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 0.85rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-mark-img {
  display: block;
  height: 36px;
  width: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-word {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
}
.logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
}
.logo-img-light {
  height: 48px;
  max-width: 240px;
  border-radius: 8px;
}
.logo-img-on-dark {
  filter: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--bee);
  color: #111;
  font-weight: 800;
}
.logo-text { font-size: 0.95rem; }
.search {
  position: relative;
  display: flex;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  overflow: visible;
  background: #161616;
  z-index: 40;
}
.search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.7rem 1rem;
  font: inherit;
  outline: none;
  color: #fff;
  min-width: 0;
  border-radius: 999px 0 0 999px;
}
.search input::placeholder { color: #8a8a8a; }
.search button {
  border: 0;
  background: transparent;
  padding: 0 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  color: #cfcfcf;
  border-radius: 0 999px 999px 0;
}
.search.smart-search-open {
  border-color: var(--bee);
  box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.35);
}

/* —— Smart search dropdown —— */
.smart-search-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  min-width: min(720px, 92vw);
  width: max(100%, min(720px, 92vw));
  background: #fff;
  color: #111;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 80;
}
.mobile-search-form.smart-search {
  position: relative;
}
.mobile-search-form .smart-search-panel {
  position: relative;
  top: 0.65rem;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  box-shadow: none;
  border-radius: 14px;
}
.ss-loading {
  padding: 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.ss-inner { display: flex; flex-direction: column; }
.ss-cols {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(260px, 1.4fr);
  gap: 0;
  max-height: min(420px, 70vh);
  overflow: hidden;
}
.ss-left {
  border-right: 1px solid var(--line);
  overflow: auto;
  background: #fafafa;
  padding: 0.75rem 0.35rem 0.75rem 0.55rem;
}
.ss-right {
  overflow: auto;
  padding: 0.75rem 0.75rem 0.55rem;
}
.ss-block { margin-bottom: 0.75rem; }
.ss-heading {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a8a8a;
  padding: 0 0.55rem 0.4rem;
}
.ss-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ss-sug,
.ss-cat {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  cursor: pointer;
}
.ss-sug i,
.ss-cat i {
  color: #9a9a9a;
  font-size: 0.78rem;
  width: 1rem;
  text-align: center;
}
.ss-sug:hover,
.ss-cat:hover,
.ss-sug.is-active,
.ss-cat.is-active {
  background: #f0f0f0;
}
.ss-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.ss-product {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.ss-product:hover,
.ss-product.is-active {
  border-color: #111;
  transform: translateY(-1px);
}
.ss-product-img {
  position: relative;
  aspect-ratio: 1;
  background: #f5f5f5;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ss-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
}
.ss-img-fallback {
  width: 40%;
  height: 40%;
  border-radius: 8px;
  background: linear-gradient(135deg, #eee, #ddd);
}
.ss-disc {
  position: absolute;
  top: 0.35rem;
  left: 0.35rem;
  background: var(--bee);
  color: #111;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
}
.ss-product-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.45rem 0.5rem 0.55rem;
}
.ss-product-title {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2em;
}
.ss-product-price {
  font-size: 0.88rem;
  font-weight: 800;
  color: #111;
}
.ss-empty {
  margin: 0;
  padding: 0.5rem 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.ss-notfound {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
  padding: 0.75rem 0.9rem;
  background: #fff6e8;
  border-bottom: 1px solid #f0e0c4;
  color: #3a2f1c;
  font-size: 0.9rem;
  line-height: 1.35;
}
.ss-notfound strong {
  font-size: 0.95rem;
  color: #111;
}
.ss-alt-note {
  margin: 0 0 0.45rem;
  padding: 0 0.15rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.empty-search {
  padding: 1.25rem 0.25rem 0.5rem;
}
.empty-search h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  color: var(--navy);
}
.empty-search > p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  max-width: 40rem;
}
.empty-search-sugs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
}
.empty-search-alt {
  margin: 0.5rem 0 0.85rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.ss-footer {
  display: block;
  text-align: center;
  background: #111;
  color: var(--bee);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid #222;
}
.ss-footer:hover {
  background: #1a1a1a;
  color: #ffe566;
}

@media (max-width: 900px) {
  .ss-cols {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .ss-left {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    max-height: 160px;
  }
  .ss-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.header-actions {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: #f2f2f2;
}
.header-actions .muted { color: #9a9a9a; font-weight: 500; }
.header-actions a:hover { color: var(--bee); }
.cart span {
  display: inline-grid;
  place-items: center;
  min-width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--bee);
  color: #111;
  font-size: 0.72rem;
  margin-left: 0.2rem;
  font-weight: 800;
}
.main-nav {
  display: flex;
  gap: 1.25rem;
  padding: 0 0 0.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #e8e8e8;
  flex-wrap: wrap;
}
.main-nav a:hover { color: var(--bee); }
.nav-deals { color: var(--bee) !important; }

.flash-wrap { margin-top: 1rem; }
.flash {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.flash-ok { border-color: #b7e4cb; background: #f0faf4; }
.flash-error { border-color: #f0c2c2; background: #fff5f5; color: #8a1f1f; }

.hero-banner {
  display: none;
}
.hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0 1.35rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.15fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  padding: 0.35rem 0;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-kicker {
  display: inline-block;
  margin: 0 0 0.55rem;
  color: var(--bee-dark);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #111;
  margin: 0 0 0.85rem;
  font-weight: 800;
}
.hero h1 .hero-em {
  color: var(--bee-dark);
}
.hero-copy > p:not(.hero-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 0 0 1.35rem;
  line-height: 1.55;
}
.hero-visual {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 0;
  height: auto;
  aspect-ratio: auto;
  max-height: none;
  padding: 0;
}
.hero-visual img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(480px, 58vh);
  min-height: 0;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
  display: block;
}
@media (min-width: 901px) {
  body:has(.hero) main {
    background: #fff;
  }
}
@media (max-width: 900px) {
  .hero {
    padding: 1.15rem 0 1rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .hero-copy {
    max-width: none;
    order: 1;
    padding: 0;
  }
  .hero-visual {
    order: 2;
    width: 100%;
  }
  .hero-visual img {
    max-height: none;
    width: 100%;
  }
  .hero-stage { margin-top: 0.5rem; }
}
.mission-lead {
  color: var(--muted);
  max-width: 62ch;
  margin: -0.4rem 0 1.2rem;
  font-size: 1.02rem;
}
.mission-section {
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  border: 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.mission-grid h2 {
  margin: 0 0 0.7rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.mission-grid > div > p {
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.55;
}
.mission-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.mission-list li {
  padding: 0.75rem 0.95rem;
  background: #fff;
  border: 0;
  border-radius: 12px;
  color: var(--text);
  font-size: 0.95rem;
}
.mission-cards {
  display: grid;
  gap: 0.75rem;
}
.mission-card {
  background: #fff;
  border: 0;
  border-radius: 14px;
  padding: 1.05rem 1.1rem;
}
.mission-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.mission-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.impact-strip h2 {
  margin: 0 0 1rem;
  color: var(--navy);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.impact-grid div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}
.impact-grid strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.impact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.faq-grid {
  display: grid;
  gap: 0.55rem;
}
.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.85rem 1rem;
}
.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}
.faq-grid details p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: var(--bee);
  color: #111;
}
.btn:hover { background: var(--bee-dark); }
.btn-outline {
  background: #fff;
  color: #111;
  border: 1.5px solid #111;
}
.btn-outline:hover { background: var(--bg-soft); }
.btn-dark {
  background: #111;
  color: #fff;
}
.btn-dark:hover { background: #222; }
.trust {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.trust-stars { color: #00b67a; letter-spacing: 0.08em; font-size: 0.9rem; }

.usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  padding: 1rem 0 2rem;
}
.usp {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.usp-icon {
  width: 40px;
  height: 40px;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  background: var(--bee);
  display: grid;
  place-items: center;
  color: #111;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.usp-icon i { line-height: 1; }
.usp strong { display: block; font-size: 0.95rem; }
.usp span { color: var(--muted); font-size: 0.85rem; }

.section { padding: 1.5rem 0 2.5rem; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.section-head h2 {
  margin: 0;
  font-size: 1.55rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section-head a { color: var(--accent); font-weight: 600; font-size: 0.95rem; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}
.cat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 0.8rem;
  text-align: center;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cat-card:hover { border-color: #e0c200; box-shadow: var(--shadow); }
.cat-card .cat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.55rem;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  border-radius: 0;
  background: var(--bee);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}
.cat-card strong { display: block; font-size: 0.92rem; margin-bottom: 0.2rem; }
.cat-card span { color: var(--muted); font-size: 0.82rem; font-weight: 600; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.product-grid-shop {
  grid-template-columns: repeat(3, 1fr);
}

.shop-filters {
  display: block;
  margin: 0 0 1rem;
}
.filter-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.shop-body {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
.filter-vertical {
  width: 260px;
  flex: 0 0 260px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.85rem 1rem 1.1rem;
  box-shadow: var(--shadow);
}
.shop-main {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.filter-field {
  display: grid;
  gap: 0.28rem;
  flex: 1 1 130px;
  min-width: 120px;
  max-width: 200px;
}
.filter-field.filter-price {
  flex: 1 1 170px;
  max-width: 210px;
}
.filter-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.filter-field .form-control {
  width: 100%;
  min-height: 42px;
}
.filter-sheet-head {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.filter-sheet-head strong { color: var(--navy); }
.sheet-close {
  border: 0;
  background: var(--bg-soft);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--navy);
}
.filter-block {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.filter-block:last-of-type { border-bottom: 0; }
.filter-block h3 {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: var(--navy);
}
.price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.price-inputs label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.filter-actions { margin-top: 0.9rem; }
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
  min-height: 0.5rem;
}
.chip {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 600;
}

.mobile-only { display: none !important; }

/* App dock / footer widget — alleen mobiel */
.app-dock { display: none; }
.sheet-backdrop { display: none; }
.mobile-sheet { display: none; }
.product-card {
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s ease;
  box-shadow: none;
}
.product-card:hover { transform: translateY(-2px); }
.product-card .img {
  aspect-ratio: 4/3;
  background: #fff;
  border: 0;
  box-shadow: none;
  outline: none;
  display: grid;
  place-items: center;
  position: relative;
}
.product-card .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  border: 0;
  outline: none;
  box-shadow: none;
}
.wish {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: #94a3b8;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 3;
}
.wish.is-active,
.wish.is-active i {
  color: #e11d48;
}
.btn[data-wishlist-toggle].is-active {
  border-color: #e11d48;
  color: #e11d48;
}
.wishlist-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  margin-left: 0.25rem;
  border-radius: 999px;
  background: var(--bee);
  color: #111;
  font-size: 0.7rem;
  font-weight: 800;
}
.product-card h3 {
  margin: 0.85rem 0 0.35rem;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.35;
  min-height: 2.7em;
}
.product-card .price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}
.product-card .price-old {
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 0.4rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.price-block {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.7rem;
}
.product-card .price-block {
  margin: 0;
}
.product-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.15rem 0 0.15rem;
}
.product-card .card-main {
  display: grid;
  grid-template-columns: minmax(5.5rem, 0.95fr) minmax(0, 1.2fr);
  gap: 0.55rem 0.75rem;
  align-items: start;
}
.spec-chips {
  list-style: none;
  margin: 0;
  padding: 0.55rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.spec-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}
.spec-chips i {
  color: var(--accent);
  font-size: 0.72rem;
  width: 0.9rem;
  text-align: center;
}
.product-stock-text {
  margin: 0.35rem 0 0;
  font-weight: 600;
  color: var(--navy);
}
.buy-box .product-spec-chips {
  margin: 0.85rem 0 0;
}
.product-spec-chips li {
  border-radius: 999px;
  background: #fff;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
}
.product-spec-chips i {
  color: var(--accent);
  font-size: 0.78rem;
}
.product-spec-chips-panel {
  margin: 0 0 1rem;
}
.card-model {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.card-model .buy-meta {
  display: block;
  margin: 0 0 0.12rem;
  font-size: 0.78rem;
}
.card-model .model-name {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}
.card-model h3 {
  margin: 0;
  font-size: 0.95rem;
  min-height: 0;
  line-height: 1.25;
}
.product-card-laptop {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.product-card .card-rating {
  margin-top: 0.18rem;
}
.price-block-lg { margin: 0.4rem 0 0.6rem; }
.price-van {
  color: #9aa3b2;
  font-size: 0.95rem;
  font-style: italic;
  text-decoration: line-through;
}
.price-block-lg .price-van { font-size: 1.05rem; }
.price-voor {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2a3340;
  letter-spacing: -0.02em;
}
.price-block-lg .price-voor,
.price-xl {
  font-size: 1.85rem;
  font-weight: 800;
  color: #2a3340;
}
.price-unit {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9aa3b2;
  font-weight: 600;
  margin-top: 0.28rem;
  line-height: 1.35;
  display: block;
}
.discount-badge {
  display: inline-flex;
  width: fit-content;
  background: var(--bee, #ffcc00);
  color: #111;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.25rem;
}
.product-card .img .discount-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
}
.product-card .img .config-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  display: inline-flex;
  background: var(--navy, #1e3a5f);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.product-card .img .config-badge + .discount-badge {
  top: 2.35rem;
}
.filter-field.filter-config {
  min-width: 11rem;
  flex: 1.2 1 12rem;
}

.toolbar {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.toolbar input, .toolbar select,
.form-control, select.form-control, input.form-control {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
  color: var(--text);
  width: 100%;
}
.toolbar input { min-width: 220px; flex: 1; }
.toolbar select { width: auto; min-width: 160px; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0 2rem;
  align-items: start;
}
.gallery {
  background: transparent;
  border-radius: 0;
  padding: 0;
  /* Desktop: foto blijft sticky, opties scrollen met de pagina */
  position: sticky;
  top: 5.75rem;
  align-self: start;
}
.gallery-main {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 0;
}
.gallery-main img { max-height: 100%; object-fit: contain; }
.thumbs { display: flex; gap: 0.5rem; margin-top: 0.8rem; overflow-x: auto; }
.thumbs img {
  width: 70px; height: 70px; object-fit: contain;
  background: transparent; border-radius: 8px; border: 1px solid var(--line); padding: 0.2rem; cursor: pointer;
}

/* Opties: normale pagina-scroll, géén eigen sticky/scroll */
.buy-box {
  align-self: start;
  min-width: 0;
}

.buy-box h1 {
  font-size: 1.55rem;
  color: var(--navy);
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}
.buy-meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.45rem; }

.buy-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0 0 0.95rem;
  min-height: 2.5rem;
}
.product-rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1;
  min-width: 0;
}
.product-rating-inline:hover { opacity: 0.85; }
.product-rating-inline .stars {
  color: #f5a524;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}
.product-rating-inline strong {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.product-rating-inline span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
}
.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #fff8eb;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1;
  width: fit-content;
  max-width: 100%;
}
.product-rating-model { background: #f3f6fb; }
.product-rating .stars { color: #f5a524; }

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  margin-bottom: 0.35rem;
}
.reviews-head h2 { margin: 0; }
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.reviews-summary .stars { color: #f5a524; }
.reviews-summary .help { margin: 0; }

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1;
}
.card-rating .stars {
  color: #f5a524;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
}
.card-rating strong {
  color: var(--navy);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.buy-wish-top {
  flex: 0 0 auto;
  min-height: 2.45rem;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  white-space: nowrap;
}
.buy-wish-top i { margin-right: 0.35rem; }
.price-preset-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.65rem 0.85rem;
  margin: 0.35rem 0 0.5rem;
}
.price-preset-row .price-block-lg {
  margin: 0;
  flex: 0 1 auto;
}
.preset-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  flex: 1 1 240px;
  align-items: stretch;
  align-self: flex-start;
  max-width: 100%;
  min-height: 4.25rem;
}
.preset-btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 4.25rem;
  height: auto;
  aspect-ratio: auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 11px;
  padding: 0.7rem 0.7rem;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--navy);
  line-height: 1.2;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.preset-btn strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.preset-btn span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.preset-btn:hover {
  border-color: #9eb6d0;
}
.preset-btn.is-active {
  border-color: var(--navy);
  background: #f3f7fb;
  box-shadow: 0 0 0 1px var(--navy);
}
.preset-hint {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.price-xl {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.6rem;
}
.badge-ok { background: #e8f7ef; color: var(--ok); }
.badge-no { background: #fff0f0; color: var(--danger); }

.option-group { margin: 1rem 0; }
.option-group label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
select.option-select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
  color: var(--text);
}
select.option-select:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 35%, white);
  border-color: var(--accent);
}
.live-total {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.live-total strong { font-size: 1.25rem; color: var(--navy); }

.panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  background: #fff;
}
.panel h2, .panel h3 { margin: 0 0 0.7rem; color: var(--navy); }
.panel p, .help { color: var(--muted); }
.product-description {
  color: var(--text);
  line-height: 1.65;
  font-size: 0.98rem;
}
.product-description p {
  margin: 0 0 1rem;
  color: var(--text);
  max-width: 68ch;
}
.product-description h2,
.product-description h3 {
  margin: 1.4rem 0 0.65rem;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.product-description h2:first-child,
.product-description h3:first-child {
  margin-top: 0.2rem;
}
.product-description ul,
.product-description ol {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.product-description li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2.1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  line-height: 1.5;
}
.product-description li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}
.product-description li strong {
  color: var(--navy);
}
.product-description .desc-k {
  color: var(--muted);
  font-weight: 600;
  margin-right: 0.25rem;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: end;
  margin-bottom: 0.8rem;
}
.form-row label { display: grid; gap: 0.35rem; color: var(--muted); font-size: 0.9rem; flex: 1; min-width: 160px; }
.stack { display: grid; gap: 0.8rem; }

.specs { display: grid; gap: 0.35rem; }
.specs div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.specs .k { color: var(--muted); }

.review { border-top: 1px solid var(--line); padding: 0.9rem 0; }
.review header {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.stars { color: #f5a524; }

.admin-layout { padding: 1.5rem 0 3rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th, .admin-table td {
  text-align: left;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.admin-table th { color: var(--muted); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.cost { color: var(--muted); font-size: 0.85rem; }
.job-box {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: #0f1722;
  color: #9fe7c7;
  border-radius: 10px;
  padding: 0.9rem;
  white-space: pre-wrap;
  min-height: 4rem;
}

/* —— Admin shell —— */
.admin-body {
  margin: 0;
  background: #eef2f6;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--navy, #1a2740);
}
.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: #142033;
  color: #dce6f5;
  padding: 1.1rem 0.9rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 40;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  padding: 0.35rem 0.45rem;
}
.admin-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.admin-brand strong { display: block; font-size: 0.92rem; }
.admin-brand span { display: block; font-size: 0.72rem; color: #8fa3bd; }
.admin-nav { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  color: #c5d3e6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.admin-nav-link i { width: 1.1rem; text-align: center; opacity: 0.9; }
.admin-nav-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.admin-nav-link.is-active { background: #1f6feb; color: #fff; }
.admin-sidebar-foot {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.9rem;
}
.admin-sidebar-foot a {
  color: #9eb0c7;
  text-decoration: none;
  font-size: 0.86rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.admin-sidebar-foot a:hover { color: #fff; }
.admin-user { margin: 0.4rem 0 0; font-size: 0.75rem; color: #6f829a; word-break: break-all; }
.admin-main { min-width: 0; }
.admin-topbar {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem 0.5rem;
}
.admin-topbar h1 { margin: 0; font-size: 1.45rem; letter-spacing: -0.02em; }
.admin-menu-btn {
  display: none;
  border: 1px solid #d0d7e2;
  background: #fff;
  border-radius: 10px;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
}
.admin-content { padding: 0.6rem 1.5rem 2.5rem; }
.admin-flash { padding: 0 1.5rem; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.admin-stat {
  background: #fff;
  border: 1px solid #dde3ec;
  border-radius: 14px;
  padding: 0.9rem 1rem;
}
.admin-stat-label { display: block; color: #7a8699; font-size: 0.78rem; font-weight: 600; margin-bottom: 0.25rem; }
.admin-stat strong { font-size: 1.35rem; }
.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.admin-quick { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.admin-filters {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.85fr 1fr auto;
  gap: 0.65rem;
  align-items: end;
  background: #fff;
  border: 1px solid #dde3ec;
  border-radius: 14px;
  padding: 0.9rem;
  margin-bottom: 0.75rem;
}
.admin-empty-msg {
  padding: 1rem 1.1rem 1.2rem;
  margin: 0;
}
.admin-col-sort {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted, #7a8699);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.admin-order-btn {
  padding: 0.35rem 0.65rem !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
}
.admin-order-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #445066;
  line-height: 1.55;
}
.admin-order-list li { margin: 0.25rem 0; }
.admin-filters label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #5b6b80;
}
.admin-filter-actions { display: flex; gap: 0.4rem; }
.admin-result-count { margin: 0 0 0.6rem; }
.admin-products-panel { padding: 0; overflow: hidden; }
.admin-table-wrap { overflow-x: auto; }
.admin-table-products { min-width: 920px; }
.admin-table-products th,
.admin-table-products td { padding: 0.7rem 0.65rem; }
.admin-thumb-cell { width: 64px; }
.admin-thumb {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: #f4f7fb;
  border: 1px solid #e4eaf2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9aa8ba;
}
.admin-thumb-empty { font-size: 1.1rem; }
.admin-product-title {
  color: var(--accent, #1f6feb);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
}
.admin-product-title:hover { text-decoration: underline; }
.admin-supplier-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: #e8eef8;
  color: #243552;
}
.admin-supplier-remarkt { background: #e7f7ee; color: #146c3c; }
.admin-supplier-cwn { background: #e8eefc; color: #1d4ed8; }
.admin-profit-pos { color: #147a3f; font-weight: 700; }
.admin-profit-neg { color: #b42318; font-weight: 700; }
.admin-margin {
  display: inline-block;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.15rem 0.45rem;
  border-radius: 8px;
}
.admin-margin.is-good { background: #e6f7ed; color: #147a3f; }
.admin-margin.is-ok { background: #fff6e5; color: #9a6700; }
.admin-margin.is-low { background: #fdecec; color: #b42318; }
.admin-stock { font-weight: 700; font-size: 0.85rem; }
.admin-stock.is-yes { color: #147a3f; }
.admin-stock.is-no { color: #b42318; }
.admin-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 30;
}

@media (max-width: 980px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    transform: translateX(-105%);
    transition: transform 0.2s ease;
    width: min(280px, 86vw);
  }
  body.admin-nav-open .admin-sidebar { transform: translateX(0); }
  body.admin-nav-open .admin-backdrop { display: block; }
  .admin-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .admin-grid-2 { grid-template-columns: 1fr; }
  .admin-filters { grid-template-columns: 1fr 1fr; }
  .admin-filter-actions { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .admin-filters { grid-template-columns: 1fr; }
  .admin-content, .admin-topbar, .admin-flash { padding-left: 1rem; padding-right: 1rem; }
}

.login-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
  background: var(--bg-soft);
}
.login-card {
  width: min(420px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.login-card h1 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: 1.5rem;
}
.login-card .help { margin-bottom: 1.2rem; }

.site-footer {
  background: #0b0b0b;
  color: #cfcfcf;
  margin-top: 2rem;
  padding: 2.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-logo { color: #fff; margin-bottom: 0.6rem; }
.footer-logo .logo-img { height: 36px; max-width: 190px; }
.site-footer h4 { color: #fff; margin: 0 0 0.6rem; }
.site-footer a { display: block; color: #cfcfcf; margin-bottom: 0.35rem; }
.site-footer a:hover { color: var(--bee); }
.footer-company {
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #9a9a9a;
}
.footer-company strong { color: #f2f2f2; }
.footer-company a {
  display: inline;
  color: #cfcfcf;
}
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #222;
  font-size: 0.85rem;
  color: #8a8a8a;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.footer-bottom-links a {
  display: inline;
  margin: 0;
  color: #9aa6b5;
}
.footer-bottom-links a:hover { color: #fff; }

.legal-page {
  max-width: 860px;
}
.legal-card {
  padding: 1.6rem 1.5rem 1.8rem;
}
.legal-eyebrow {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}
.legal-card h1 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 3vw, 2rem);
}
.legal-updated { margin: 0 0 1.2rem; }
.legal-body {
  color: var(--text);
  line-height: 1.65;
  font-size: 1.02rem;
}
.legal-body h2 {
  margin: 1.6rem 0 0.55rem;
  color: var(--navy);
  font-size: 1.15rem;
}
.legal-body p,
.legal-body ul,
.legal-body ol {
  margin: 0 0 0.85rem;
}
.legal-body ul,
.legal-body ol {
  padding-left: 1.2rem;
}
.legal-body li { margin-bottom: 0.35rem; }
.legal-body a {
  color: var(--accent);
  font-weight: 600;
}
.legal-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.45rem;
}
.legal-facts li {
  padding: 0.7rem 0.85rem;
  background: var(--bg-soft);
  border-radius: 12px;
  margin: 0;
}
.checkout-legal-links {
  margin: 0.85rem 0 0;
  line-height: 1.5;
}
.checkout-legal-links a {
  color: var(--accent);
  font-weight: 600;
}
.pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 0.5rem;
}

@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: flex !important; }

  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }
  body.sheet-open,
  body.furbi-open-body {
    overflow: hidden;
  }

  .topbar { display: none; }
  .site-header {
    position: sticky;
    top: 0;
  }
  .header-inner {
    grid-template-columns: 1fr;
    padding: 0.75rem 0;
  }
  .logo-img { height: 36px; }
  .main-nav { display: none; }

  .mission-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    max-width: 16ch;
  }
  .hero-copy > p:not(.hero-kicker) {
    font-size: 0.95rem;
    max-width: none;
    margin-bottom: 1rem;
  }
  .hero-actions {
    margin-bottom: 0.75rem;
  }
  .hero-actions .btn-outline {
    display: inline-flex;
  }
  .hero .trust {
    margin-bottom: 0.25rem;
  }
  .hero-visual {
    order: 2;
    min-height: 0;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
  }
  .hero-visual img {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
    display: block;
    margin: 0;
  }
  .usp-row { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .cat-grid { grid-template-columns: 1fr 1fr !important; }
  .product-grid,
  .product-grid-shop { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .product-card h3 { font-size: 0.86rem; min-height: 0; }

  /* Productpagina: altijd onder elkaar op mobiel */
  .product-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0 1.5rem;
  }
  .product-layout .gallery {
    order: 0;
    width: 100%;
    position: static;
    top: auto;
  }
  .product-layout .gallery-main {
    aspect-ratio: 4 / 3;
    max-height: 280px;
    margin: 0 auto;
  }
  .product-layout .gallery-main img {
    max-height: 260px;
    width: auto;
    max-width: 100%;
  }
  .product-layout .thumbs {
    justify-content: flex-start;
    gap: 0.4rem;
    margin-top: 0.55rem;
  }
  .product-layout .thumbs img {
    width: 58px;
    height: 58px;
  }
  .product-layout .buy-box {
    order: 1;
    width: 100%;
    min-width: 0;
    position: static;
    max-height: none;
    overflow: visible;
  }
  .buy-box h1 {
    font-size: clamp(1.15rem, 5.2vw, 1.4rem);
    line-height: 1.3;
    margin: 0 0 0.5rem;
  }
  .buy-meta {
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
  }
  .buy-rating-row {
    flex-wrap: wrap;
    margin: 0 0 1rem;
  }
  .buy-wish-top {
    margin-left: auto;
  }
  .price-preset-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin: 0 0 0.55rem;
  }
  .price-preset-row .price-block-lg {
    width: 100%;
  }
  .price-block-lg .price-voor,
  .price-xl {
    font-size: 1.65rem;
    line-height: 1.15;
  }
  .price-unit {
    margin-top: 0.25rem;
    line-height: 1.3;
  }
  .preset-bar {
    width: 100%;
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.3rem;
    align-items: start;
    grid-auto-rows: min-content;
  }
  .preset-btn {
    width: 100%;
    flex: none;
    display: block;
    padding: 0.32rem 0.35rem;
    border-radius: 8px;
    min-height: 0 !important;
    height: auto !important;
    max-height: none;
    aspect-ratio: auto !important;
  }
  .preset-btn strong {
    font-size: 0.74rem;
    line-height: 1.1;
  }
  .preset-btn span {
    margin-top: 0.04rem;
    font-size: 0.58rem;
    line-height: 1.1;
  }
  .preset-hint {
    margin-top: 0.45rem;
    font-size: 0.8rem;
  }
  .option-group {
    margin: 0.75rem 0;
  }
  .buy-actions {
    margin-top: 1rem;
    padding-bottom: 0.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .shop-page { padding-top: 1rem !important; }
  .shop-main { min-width: 0; width: 100%; }

  .shop-filters {
    display: block;
    margin: 0 0 1rem;
  }
  .shop-body {
    display: block;
  }
  .filter-horizontal {
    margin-bottom: 0.85rem;
  }
  .filter-vertical {
    width: auto;
    flex: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 95;
    max-height: min(88vh, 720px);
    border-radius: 18px 18px 0 0;
    padding: 0.9rem 1rem calc(1rem + env(safe-area-inset-bottom));
    transform: translateY(110%);
    transition: transform 0.22s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.18);
    background: #fff;
    border: 0;
  }
  .filter-vertical.is-open {
    transform: translateY(0);
  }
  .filter-field,
  .filter-field.filter-price {
    max-width: none;
    min-width: 0;
    flex: 1 1 140px;
  }
  .filter-sheet-head.mobile-only {
    display: flex !important;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
  }

  .sheet-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .sheet-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .sheet-backdrop[hidden] { display: none !important; }

  .mobile-sheet {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 96;
    background: #fff;
    border-radius: 18px 18px 0 0;
    padding: 0.9rem 1rem calc(1rem + env(safe-area-inset-bottom));
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(110%);
    transition: transform 0.22s ease;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.18);
  }
  .mobile-sheet.is-open { transform: translateY(0); }
  .mobile-sheet[hidden] { display: none !important; }
  .mobile-quick-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.9rem;
  }
  .mobile-nav-list {
    display: grid;
    gap: 0.2rem;
  }
  .mobile-nav-list a {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
    color: var(--navy);
  }
  .mobile-nav-list em {
    color: var(--muted);
    font-style: normal;
  }

  .app-dock {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: rgba(255,255,255,0.98);
    border-top: 1px solid var(--line);
    padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
  }
  .dock-item {
    appearance: none;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
    padding: 0.35rem 0.15rem;
    cursor: pointer;
  }
  .dock-item-main { color: #111; }
  .dock-ico {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--bg-soft);
    font-size: 0.95rem;
  }
  .dock-item-main .dock-ico {
    background: var(--bee);
    color: #111;
  }
  .dock-furbi-ico {
    background: var(--bee, #ffcc00) !important;
    color: #111 !important;
    font-size: 0.85rem;
  }

  /* Furbi: launcher blijft; panel is right drawer (zie basisstyles) */
  .furbi-root {
    right: 0.75rem;
    bottom: calc(76px + env(safe-area-inset-bottom));
    z-index: 90;
    pointer-events: none;
  }
  .furbi-root > * {
    pointer-events: auto;
  }
  .furbi-launcher { display: none !important; }
  .furbi-backdrop {
    z-index: 210;
    pointer-events: none;
  }
  .furbi-backdrop.is-open {
    pointer-events: auto;
  }
  .furbi-panel {
    width: 100vw;
    z-index: 220;
    padding-bottom: 0;
  }
  .furbi-panel[hidden] {
    display: none !important;
  }
  .furbi-form {
    padding-bottom: calc(0.85rem + env(safe-area-inset-bottom));
  }
  .app-dock {
    z-index: 200;
    pointer-events: auto;
  }
}

@media (max-width: 640px) {
  .wrap { width: min(1180px, calc(100% - 1.25rem)); }
  .usp-row,
  .product-grid,
  .product-grid-shop,
  .cat-grid { grid-template-columns: 1fr !important; }
  .header-actions { display: none; }

  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
  body:has(.product-sticky-cart) {
    padding-bottom: calc(152px + env(safe-area-inset-bottom));
  }

  .product-layout {
    gap: 0.85rem;
    padding: 0.75rem 0 1.25rem;
  }
  .product-layout .gallery-main {
    aspect-ratio: 1 / 1;
    max-height: 240px;
    background: var(--bg-soft);
    border-radius: 14px;
  }
  .preset-btn {
    padding: 0.28rem 0.3rem;
  }
  .section-head h2,
  .panel h2 {
    font-size: 1.15rem;
  }
  .panel {
    padding: 1rem;
    border-radius: 12px;
  }
  .specs {
    grid-template-columns: 1fr;
  }
  .cart-summary,
  .checkout-form-wrap .panel {
    margin-top: 0.75rem;
  }
}

/* Furbi chatbot — slide-out vanaf rechts */
.furbi-root {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  font-family: var(--font);
  pointer-events: none;
}
.furbi-root .furbi-launcher,
.furbi-root .furbi-panel.is-open,
.furbi-root .furbi-backdrop.is-open {
  pointer-events: auto;
}
.furbi-launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.9rem 0.55rem 0.55rem;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(29, 53, 87, 0.28);
  position: relative;
  z-index: 81;
}
.furbi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bee, #ffcc00);
  color: #111;
  font-weight: 800;
}
.furbi-avatar svg {
  display: block;
}
.furbi-ask-btn svg {
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.15rem;
}
.dock-furbi-ico svg {
  display: block;
}
.furbi-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  z-index: 210;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.furbi-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.furbi-backdrop[hidden] {
  display: none !important;
  pointer-events: none !important;
}
.furbi-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100vw);
  height: 100vh;
  height: 100dvh;
  background: #fff;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: -16px 0 48px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 220;
  transform: translateX(105%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
  pointer-events: none;
}
.furbi-panel[hidden] {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.furbi-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.furbi-header {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  background: #0b0b0b;
  color: #fff;
  flex-shrink: 0;
  border-bottom: 3px solid var(--bee);
}
.furbi-header strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.furbi-header small {
  display: block;
  margin-top: 0.2rem;
  opacity: 0.85;
  font-size: 0.86rem;
  line-height: 1.35;
}
.furbi-header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  margin-left: auto;
}
.furbi-new {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.1);
  color: #fff;
  height: 34px;
  padding: 0 0.75rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.furbi-new:hover {
  background: rgba(255,255,255,0.2);
}
.furbi-close {
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.furbi-close:hover {
  background: rgba(255,255,255,0.22);
}
.furbi-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.15rem 1.2rem;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  -webkit-overflow-scrolling: touch;
}
.furbi-bubble {
  max-width: 100%;
  padding: 0.15rem 0.1rem;
  border-radius: 0;
  font-size: 1.02rem;
  line-height: 1.55;
}
.furbi-bot {
  background: transparent;
  border: 0;
  align-self: stretch;
  color: var(--text);
  box-shadow: none;
  padding: 0.2rem 0.15rem;
}
.furbi-bot p {
  margin: 0 0 0.55rem;
  color: var(--text);
}
.furbi-bot p:last-child { margin-bottom: 0; }
.furbi-list {
  margin: 0.25rem 0 0.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}
.furbi-list li {
  position: relative;
  padding: 0 0 0 0.95rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  line-height: 1.45;
  color: var(--muted);
}
.furbi-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--accent);
}
.furbi-link {
  display: inline-flex;
  margin-top: 0.15rem;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.furbi-link:hover { text-decoration: underline; }
.furbi-price {
  color: var(--navy);
  font-weight: 800;
}
.furbi-user {
  background: var(--navy);
  color: #fff;
  align-self: flex-end;
  max-width: 88%;
  white-space: pre-wrap;
  border-radius: 16px 16px 4px 16px;
  padding: 0.75rem 0.95rem;
  box-shadow: none;
  border: 0;
}
.furbi-thinking { opacity: 0.7; font-style: italic; color: var(--muted); }
.furbi-web-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: #111;
  color: var(--bee);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.furbi-web-badge svg { flex-shrink: 0; }
.furbi-memory-badge {
  background: #1a1a1a;
  color: #f2f2f2;
}
.furbi-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem 0.35rem;
  background: #fff;
  border-top: 1px solid var(--line);
}
.furbi-quick-btn {
  border: 0;
  background: var(--bg-soft);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.furbi-quick-btn:hover {
  background: #e8eef6;
}
.furbi-ask-btn i {
  margin-right: 0.2rem;
}
.furbi-suggestions:empty {
  display: none;
}
.furbi-suggestions {
  display: none;
}
.furbi-cards {
  display: grid;
  gap: 0.65rem;
  width: 100%;
  margin: 0.15rem 0 0.2rem;
}
.furbi-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem 0.9rem 0.75rem 0.75rem;
  background: #fff;
  border: 0;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  box-shadow: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.furbi-card:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.furbi-card-img {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.furbi-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.furbi-card-img-fallback {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #dbe4f0;
  display: block;
}
.furbi-card-body {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}
.furbi-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.furbi-card-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}
.furbi-card-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}
.furbi-product-intro {
  max-width: 100%;
  padding: 0.65rem 0.75rem !important;
}
.furbi-product-intro-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.furbi-product-intro-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.furbi-product-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.furbi-product-intro-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--navy);
}
.furbi-product-intro-card strong {
  font-weight: 800;
}
.furbi-cards + .furbi-bot {
  font-size: 0.95rem;
  padding: 0.35rem 0.15rem 0.15rem;
  color: var(--muted);
  opacity: 1;
}
.furbi-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.95rem 1.1rem calc(0.95rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
  flex-shrink: 0;
}
.furbi-form input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
}
.furbi-form .btn {
  border-radius: 999px;
  padding-inline: 1.15rem;
  font-size: 0.95rem;
}
body.furbi-open-body {
  overflow: hidden;
}

/* Cart + checkout */
.cart-lines { display: grid; gap: 1rem; margin-bottom: 1.25rem; }
.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.cart-line-img img,
.cart-line-ph {
  width: 96px;
  height: 72px;
  object-fit: contain;
  background: #f4f7fb;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.cart-line-ph { display: block; }
.cart-line-body h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}
.cart-line-opts {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.7rem;
}
.cart-line-actions input[type="number"] {
  width: 4.2rem;
  margin-left: 0.35rem;
  padding: 0.35rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.cart-line-price {
  text-align: right;
  display: grid;
  gap: 0.2rem;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.05rem;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}
.checkout-line {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}
.checkout-line:last-child { border-bottom: 0; }
.admin-order-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.admin-order-item-body {
  flex: 1;
  min-width: 0;
}
.admin-order-item-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  line-height: 1.35;
}
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0.85rem 0 0;
}
.admin-metrics-item {
  margin: 0.75rem 0 1rem;
}
.admin-metric {
  background: #f4f7fb;
  border: 1px solid #e4eaf2;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-height: 4.2rem;
}
.admin-metric-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7a90;
}
.admin-metric-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a2740;
  line-height: 1.2;
}
.admin-metric-sub {
  font-size: 0.78rem;
  color: #7a8699;
}
.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 2.45rem;
  padding: 0 0.95rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}
.admin-btn-primary {
  background: #1a2740;
  color: #fff;
  border-color: #1a2740;
}
.admin-btn-primary:hover {
  background: #243552;
  color: #fff;
}
.admin-btn-secondary {
  background: #fff;
  color: #1a2740;
  border-color: #cfd8e6;
}
.admin-btn-secondary:hover {
  background: #f4f7fb;
  color: #1a2740;
}
.admin-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #e8eef5;
}
.admin-order-supplier-form {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
}
.admin-order-select {
  width: auto;
  min-width: 12rem;
  height: 2.45rem;
  border-radius: 10px !important;
  padding: 0 0.75rem !important;
}
.admin-back-link {
  margin-top: 1.1rem;
}
.admin-back-link a {
  color: #445066;
  text-decoration: none;
  font-weight: 600;
}
.admin-back-link a:hover {
  text-decoration: underline;
}
@media (max-width: 820px) {
  .admin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.admin-finance-box {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem 0.85rem;
  background: #f4f7fb;
  border: 1px solid #e4eaf2;
  border-radius: 10px;
}
.admin-finance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
}
.admin-order-thumb {
  width: 88px;
  height: 66px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #e4eaf2;
  background: #f4f7fb;
  flex-shrink: 0;
}
.admin-status {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #eef2f7;
  color: #334155;
}
.admin-status-new { background: #e8f2ff; color: #1d4ed8; }
.admin-status-ordered_at_supplier { background: #fff4e5; color: #b45309; }
.admin-status-done { background: #e8f8ef; color: #15803d; }
.admin-status-cancelled { background: #fde8e8; color: #b91c1c; }
@media (max-width: 800px) {
  .cart-line { grid-template-columns: 72px 1fr; }
  .cart-line-price { grid-column: 1 / -1; text-align: left; }
  .checkout-grid { grid-template-columns: 1fr; }
}

/* Buy actions — verticaal gestapeld */
.buy-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}
.buy-actions .btn {
  min-height: 2.85rem;
  width: 100%;
  justify-content: center;
}

/* Mobiel: sticky In winkelwagen boven de dock */
.product-sticky-cart {
  display: none;
}
@media (max-width: 900px) {
  body:has(.product-sticky-cart) {
    padding-bottom: calc(148px + env(safe-area-inset-bottom));
  }
  .buy-actions-cart {
    display: none !important;
  }
  .product-sticky-cart.mobile-only {
    display: flex !important;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(62px + env(safe-area-inset-bottom));
    z-index: 190;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.1);
  }
  .product-sticky-cart-price {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    min-width: 5.5rem;
    flex-shrink: 0;
  }
  .product-sticky-cart-price span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .product-sticky-cart-price strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
  }
  .product-sticky-cart .btn {
    flex: 1;
    min-height: 2.65rem;
    margin: 0;
    border-radius: 12px;
  }
  .product-sticky-cart[data-oos="1"] .btn {
    opacity: 0.65;
  }
  body.cart-open .product-sticky-cart,
  body.sheet-open .product-sticky-cart,
  body.furbi-open-body .product-sticky-cart {
    opacity: 0;
    pointer-events: none;
  }
}

/* Slide-out cart */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 28, 44, 0.42);
  z-index: 80;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.cart-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cart-backdrop[hidden] { display: none !important; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  z-index: 90;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(16, 28, 44, 0.18);
  transform: translateX(104%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer[hidden] { display: none !important; }
.cart-drawer.is-open[hidden] { display: flex !important; }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-head strong {
  color: var(--navy);
  font-size: 1.1rem;
}
.cart-drawer-body {
  flex: 1;
  overflow: auto;
  padding: 0.9rem 1.1rem;
  -webkit-overflow-scrolling: touch;
}
.cart-drawer-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.cart-drawer-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-img img,
.cart-drawer-img .cart-line-ph {
  width: 72px;
  height: 56px;
  object-fit: contain;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.cart-drawer-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-drawer-opts {
  margin: 0.35rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}
.cart-drawer-meta {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.cart-drawer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.55rem;
}
.cart-drawer-remove {
  margin-top: 0.35rem;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.8rem;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}
.cart-drawer-remove:hover { color: var(--danger); }
.cart-drawer-foot {
  padding: 1rem 1.1rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
  display: grid;
  gap: 0.55rem;
}
.cart-drawer-checkout { text-align: center; }
body.cart-open { overflow: hidden; }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.qty-stepper button {
  width: 2rem;
  height: 2rem;
  border: 0;
  background: var(--bg-soft);
  cursor: pointer;
  font-size: 1rem;
  color: var(--navy);
}
.qty-stepper button:hover { background: #e8eef6; }
.qty-stepper span {
  min-width: 1.6rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* One-page checkout */
.checkout-page { padding-bottom: 3rem; }
.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.checkout-steps .is-active { color: var(--accent); }
.checkout-steps .is-done { color: var(--ok); }
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
  align-items: start;
}
.checkout-layout[hidden],
#checkout-empty[hidden] {
  display: none !important;
}
.checkout-main h3,
.checkout-aside h3 {
  margin: 0 0 0.85rem;
}
.checkout-block-title {
  margin-top: 1.35rem !important;
}
.form-row-postcode {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0.75rem;
}
.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 1.1rem 0 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.checkout-trust i { color: var(--accent); margin-right: 0.3rem; }
.checkout-submit-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.checkout-submit-bar .btn:first-child { flex: 1; min-width: 180px; }
.checkout-error { color: var(--danger) !important; font-weight: 600; }
.checkout-aside {
  position: sticky;
  top: 1rem;
}
.checkout-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.7rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.checkout-item:last-of-type { border-bottom: 0; }
.checkout-item-img img,
.checkout-item-img .cart-line-ph {
  width: 64px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.checkout-item-body strong {
  font-size: 0.9rem;
  color: var(--navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.checkout-totals {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
}
.checkout-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.checkout-totals-row strong {
  color: var(--navy);
  font-weight: 700;
}
.checkout-total-row {
  margin-top: 0.35rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
}
.checkout-aside-note { margin-top: 0.7rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-aside { position: static; order: -1; }
  .form-row-postcode { grid-template-columns: 1fr 1.4fr; }
  .cart-drawer {
    width: 100%;
  }
}


