* { box-sizing: border-box; }

:root {
  --bg: #030306;
  --card: rgba(9, 9, 18, .82);
  --card-strong: rgba(12, 12, 24, .95);
  --text: #ffffff;
  --muted: #b8b8c8;
  --red: #ff1717;
  --pink: #ff2bd6;
  --orange: #ff8a00;
  --yellow: #ffe348;
  --cyan: #00e5ff;
  --blue: #3678ff;
  --lime: #7dff68;
  --purple: #9d4edd;
  --cream: #ffd6a5;
  --radius: 22px;
  --shadow: 0 18px 70px rgba(0, 0, 0, .55);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 23, 23, .28), transparent 30%),
    radial-gradient(circle at 87% 12%, rgba(0, 229, 255, .22), transparent 28%),
    radial-gradient(circle at 48% 100%, rgba(157, 78, 221, .26), transparent 32%),
    linear-gradient(180deg, #08080d 0%, #030306 52%, #000 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .42;
  pointer-events: none;
  z-index: -1;
}

.orb-one { left: -130px; top: 130px; background: var(--red); }
.orb-two { right: -120px; top: 320px; background: var(--cyan); }
.orb-three { left: 40%; bottom: -150px; background: var(--purple); }

.app-shell {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 34px 16px 112px;
}

.hero {
  text-align: center;
  padding: 18px 12px 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 8vw, 76px);
  line-height: .9;
  letter-spacing: -2px;
  background: linear-gradient(90deg, #fff, var(--yellow), var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 35px rgba(255, 23, 23, .18);
}

.subtitle {
  width: min(100%, 620px);
  margin: 18px auto 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.notice {
  display: inline-flex;
  max-width: 680px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 227, 72, .5);
  border-radius: 16px;
  color: #fff7bf;
  background: rgba(255, 227, 72, .09);
  font-size: 14px;
  font-weight: 900;
}

.opening-card {
  width: min(100%, 760px);
  margin: 16px auto 0;
  padding: 15px 16px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, .14), rgba(255, 43, 214, .12)),
    rgba(255, 255, 255, .07);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .32), inset 0 0 0 1px rgba(255, 255, 255, .04);
  backdrop-filter: blur(14px);
  text-align: left;
}

.opening-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.opening-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 10px 24px rgba(255, 138, 0, .22);
  font-size: 24px;
}

.opening-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.opening-copy .small-label { margin: 0; }

.opening-copy strong {
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1;
}

.opening-copy span:last-child {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.days-grid {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.day-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
}

.day-row span {
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.day-row b {
  color: #0b0505;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.open-badge {
  padding: 10px 13px;
  border-radius: 999px;
  color: #080808;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.hours-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .34);
  border: 1px solid rgba(255, 255, 255, .10);
}

.hours-day span {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.hours-day strong {
  color: #0b0505;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.quick-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 10px;
  margin: 22px 0;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(3, 3, 6, .72);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
}

.quick-nav a {
  flex: 1 0 auto;
  min-width: 104px;
  padding: 11px 14px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 23, 23, .95), rgba(255, 43, 214, .72));
  font-size: 14px;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.menu-card {
  padding: clamp(14px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.menu-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 22px;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 23, 23, .18), rgba(255, 43, 214, .05));
}

.small-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1;
  letter-spacing: -.6px;
}

.chev { color: var(--yellow); font-size: .72em; }

.toggle-all,
.tier-head {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.toggle-all {
  flex: 0 0 auto;
  padding: 11px 14px;
  border: 0;
  border-radius: 999px;
  color: #080808;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  font-size: 13px;
  font-weight: 950;
}

.tier {
  margin: 16px 0;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
  box-shadow: 0 13px 36px rgba(0, 0, 0, .38);
}

.tier-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent);
  text-align: left;
}

.tier-head strong {
  display: block;
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.1;
}

.tier-title {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.price-chip b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 25px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #0b0505;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  font-size: 15px;
  font-weight: 950;
}

.price-note {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: #0b0505;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  font-size: 14px;
  font-weight: 950;
}

.tier-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #080808;
  background: #fff;
  font-size: 20px;
  font-weight: 950;
}

.tier-body {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
}

.two-cols,
.best-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-row {
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: var(--card-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.best-grid .product-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.product-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.country {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .7px;
}

.product-name {
  min-width: 0;
  color: #fff;
  font-size: clamp(18px, 2.4vw, 23px);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.product-tags {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
}

.tag,
.price-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, .12);
}

.price-pill {
  min-width: 96px;
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 8px;
  row-gap: 4px;
  padding: 10px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red), #b000ff);
  text-align: left;
  line-height: 1;
}

.price-pill span {
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 850;
}

.price-pill b {
  color: #fff;
  font-size: 14px;
  font-weight: 950;
}

.tag-red { background: linear-gradient(135deg, var(--red), #ff006e); }
.tag-warning { background: linear-gradient(135deg, #ff3d00, var(--yellow)); color: #1b0800; }
.tag-blue { background: linear-gradient(135deg, var(--cyan), var(--blue)); }
.tag-orange { background: linear-gradient(135deg, var(--orange), #ff2e63); }
.tag-cream { background: linear-gradient(135deg, #ffe0b5, #e86f00); color: #1c0c00; }
.tag-classic { background: linear-gradient(135deg, var(--red), #d60000); }
.tag-citrus { background: linear-gradient(135deg, #faff00, #ff6d00); color: #160900; }
.tag-fruit { background: linear-gradient(135deg, #ff006e, #8338ec); }

.color-mix { border: 1px solid rgba(255, 23, 23, .55); }
.color-mix .tier-head { background: linear-gradient(90deg, rgba(255, 23, 23, .28), transparent); }
.color-fresh { border: 1px solid rgba(0, 229, 255, .55); }
.color-fresh .tier-head { background: linear-gradient(90deg, rgba(0, 229, 255, .20), transparent); }
.color-sweet { border: 1px solid rgba(255, 138, 0, .55); }
.color-sweet .tier-head { background: linear-gradient(90deg, rgba(255, 138, 0, .24), transparent); }
.color-premium { border: 1px solid rgba(157, 78, 221, .65); }
.color-premium .tier-head { background: linear-gradient(90deg, rgba(157, 78, 221, .27), transparent); }
.color-best { border: 1px solid rgba(255, 227, 72, .65); }
.color-best .tier-head { background: linear-gradient(90deg, rgba(255, 227, 72, .24), transparent); }

.featured {
  background: linear-gradient(135deg, rgba(255, 23, 23, .98), rgba(255, 43, 214, .52));
}

.tier.is-closed .tier-body { display: none; }
.tier.is-closed .tier-arrow { transform: rotate(-90deg); }

.bottom-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 20;
  width: min(94vw, 620px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, rgba(255, 23, 23, .98), rgba(157, 78, 221, .96), rgba(0, 229, 255, .86));
  box-shadow: 0 -14px 34px rgba(0, 0, 0, .45);
  font-size: 15px;
}

.bottom-bar strong { font-weight: 950; }




.product-with-video {
  grid-template-columns: 1fr;
  gap: 12px;
}

.product-with-video .product-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.product-video-inline {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(255, 23, 23, .13), rgba(255, 255, 255, .04));
}

.video-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(255, 23, 23, .12);
  font-size: 14px;
  font-weight: 950;
}

.video-title-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.product-video-inline video {
  display: block;
  width: 100%;
  max-height: 340px;
  background: #000;
}

@media (max-width: 760px) {
  .app-shell { padding-inline: 12px; }
  .menu-title-row { align-items: stretch; flex-direction: column; }
  .toggle-all { width: 100%; }
  .two-cols,
  .best-grid { grid-template-columns: 1fr; }
  .product-row,
  .best-grid .product-row { grid-template-columns: minmax(0, 1fr) auto; }
  .best-grid .price-pill { grid-column: 2; }
}

@media (max-width: 480px) {
  .app-shell { padding: 24px 10px 104px; }
  .hero { padding-inline: 4px; }
  .subtitle { font-size: 14px; }
  .notice { font-size: 12px; }
  .opening-card { padding: 13px; }
  .opening-top { grid-template-columns: auto 1fr; gap: 11px; }
  .open-badge { grid-column: 1 / -1; justify-self: stretch; text-align: center; }
  .hours-grid { grid-template-columns: 1fr; }
  .day-row { flex-direction: column; align-items: flex-start; }
  .quick-nav { border-radius: 18px; }
  .quick-nav a { min-width: 92px; padding: 10px 12px; }
  .menu-card { padding: 10px; border-radius: 22px; }
  .menu-title-row { padding: 18px; }
  .tier-head { padding: 16px; align-items: flex-start; }
  .price-chip { font-size: 14px; }
  .price-chip b { font-size: 14px; min-width: 48px; }
  .tier-body { padding-inline: 10px; }
  .product-row,
  .best-grid .product-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }
  .product-tags { justify-content: flex-start; }
  .video-title-row { flex-direction: column; align-items: flex-start; }
  .product-with-video .product-video { grid-column: auto; }
  .price-pill { justify-self: start; min-width: 92px; }
  .best-grid .price-pill { grid-column: auto; }
  .bottom-bar { flex-direction: column; gap: 3px; padding: 12px; font-size: 13px; }
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 23, 23, .16), rgba(0, 229, 255, .08)), var(--card-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.video-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  color: #fff;
  font-weight: 950;
}

.video-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}

.menu-video {
  display: block;
  width: 100%;
  max-height: 420px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .12);
  object-fit: contain;
}

@media (max-width: 480px) {
  .video-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-head small { text-align: left; }
}

/* Gruis product-dropdown: video zit in het Gruis-vak en opent apart */
details.product-dropdown {
  display: block;
  padding: 0;
  overflow: hidden;
  grid-template-columns: none;
}

.product-summary {
  min-height: 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

.product-summary::-webkit-details-marker {
  display: none;
}

.product-summary::after {
  content: "▼";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101010;
  background: #ffffff;
  font-size: 16px;
  font-weight: 950;
  transition: transform .18s ease;
}

.product-dropdown:not([open]) .product-summary::after {
  transform: rotate(-90deg);
}

.product-video-inline {
  margin: 0 14px 14px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(255, 23, 23, .13), rgba(255, 255, 255, .04));
}

.video-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(255, 23, 23, .12);
  font-size: 14px;
  font-weight: 950;
}

.video-title-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.product-video-inline video {
  display: block;
  width: 100%;
  max-height: 340px;
  background: #000;
}

@media (max-width: 480px) {
  .product-summary {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .product-summary::after {
    grid-column: 2;
    grid-row: 1;
  }

  .product-summary .product-tags {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .video-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Nieuwe Best-layout: nettere kaarten en prijzen zoals het voorbeeld */
.best-showcase {
  border: 1px solid rgba(255, 227, 72, .75);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 227, 72, .20), transparent 42%),
    linear-gradient(135deg, rgba(255, 227, 72, .10), rgba(255, 43, 214, .06)),
    rgba(8, 8, 18, .92);
}

.best-showcase .best-head {
  padding-bottom: 12px;
  background: transparent;
}

.best-showcase .price-note {
  width: fit-content;
  margin-top: 3px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #150b00;
  background: linear-gradient(90deg, #ffe348, #ff8a00);
  font-size: 15px;
  font-weight: 950;
}

.best-showcase .best-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 14px 14px;
}

.best-showcase .best-product {
  min-height: 94px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(8, 8, 20, .94);
}

.best-showcase .best-product.featured {
  background: linear-gradient(135deg, #ff1717, #d90076 55%, #9d4edd);
}

.best-showcase .product-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.best-showcase .country {
  flex: 0 0 auto;
  color: #ff1717;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1px;
}

.best-showcase .featured .country {
  color: rgba(255, 255, 255, .35);
}

.best-showcase .product-name {
  color: #fff;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.05;
  font-weight: 950;
}

.best-showcase .tag {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
}

.best-showcase .clean-price {
  min-width: 104px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 17px;
  background: linear-gradient(135deg, #ff1768, #c000ff);
  color: #fff;
  box-shadow: none;
}

.best-showcase .clean-price div {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.best-showcase .clean-price span,
.best-showcase .clean-price b {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
}

@media (max-width: 760px) {
  .best-showcase .best-grid {
    grid-template-columns: 1fr;
  }

  .best-showcase .best-product {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .best-showcase .clean-price {
    grid-column: 1 / -1;
    width: fit-content;
    min-width: 118px;
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .best-showcase .best-product {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .best-showcase .product-tags {
    justify-content: flex-start;
  }

  .best-showcase .clean-price {
    grid-column: auto;
  }
}


/* Prijzen overal in dezelfde stijl als bij Best */
.price-card-section .tier-head {
  padding-bottom: 14px;
}

.price-card-section .tier-title {
  gap: 0;
}

.price-card-section .tier-body.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card-section .priced-product,
.best-showcase .best-product {
  min-height: 92px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
}

.price-card-section .priced-product {
  gap: 14px;
  padding: 18px 16px;
  border-radius: 20px;
}

.price-card-section .product-name {
  color: #fff;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.05;
  font-weight: 950;
}

.clean-price {
  min-width: 104px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 17px;
  background: linear-gradient(135deg, #ff1768, #c000ff);
  color: #fff;
  box-shadow: none;
}

.clean-price > div {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.clean-price > span,
.clean-price > b,
.clean-price div span,
.clean-price div b {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
}

/* Gruis dropdown: prijsblok in dezelfde rij, video pas na openklikken */
.product-dropdown.priced-product {
  display: block;
  padding: 0;
  overflow: hidden;
}

.product-dropdown.priced-product .product-summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  cursor: pointer;
  list-style: none;
}

.product-dropdown.priced-product .product-summary::-webkit-details-marker {
  display: none;
}

.product-dropdown.priced-product .product-summary::after {
  content: "▼";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 950;
}

.product-dropdown.priced-product:not([open]) .product-summary::after {
  transform: rotate(-90deg);
}

.product-dropdown.priced-product .product-video-inline {
  margin: 0 14px 14px;
}

@media (max-width: 760px) {
  .price-card-section .tier-body.two-cols {
    grid-template-columns: 1fr;
  }

  .price-card-section .priced-product,
  .best-showcase .best-product {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .price-card-section .clean-price,
  .best-showcase .clean-price {
    grid-column: 1 / -1;
    width: fit-content;
    min-width: 118px;
    justify-self: start;
  }

  .product-dropdown.priced-product .product-summary {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .product-dropdown.priced-product .product-summary .clean-price {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .price-card-section .priced-product,
  .best-showcase .best-product {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .price-card-section .product-tags,
  .best-showcase .product-tags {
    justify-content: flex-start;
  }

  .price-card-section .clean-price,
  .best-showcase .clean-price {
    grid-column: auto;
  }

  .product-dropdown.priced-product .product-summary {
    grid-template-columns: 1fr auto;
  }

  .product-dropdown.priced-product .product-summary .clean-price {
    grid-column: 1 / -1;
  }
}


/* Fix: productnamen blijven netjes leesbaar, niet letter voor letter onder elkaar */
.product-main {
  min-width: 0;
}

.product-name {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  white-space: normal;
}

.priced-product .product-main,
.best-showcase .product-main {
  min-width: 140px;
}

.priced-product .product-name,
.best-showcase .product-name {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  line-height: 1.08;
}

.product-hint {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

/* Meer ruimte voor naam + tags + prijs, zodat Cream cookiez netjes staat */
.price-card-section .priced-product,
.best-showcase .best-product {
  grid-template-columns: minmax(190px, 1fr) auto auto;
}

.product-dropdown.priced-product .product-summary {
  grid-template-columns: minmax(190px, 1fr) auto auto auto;
}

@media (max-width: 760px) {
  .price-card-section .priced-product,
  .best-showcase .best-product {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .product-dropdown.priced-product .product-summary {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
}

@media (max-width: 480px) {
  .priced-product .product-main,
  .best-showcase .product-main {
    min-width: 0;
  }

  .product-hint {
    font-size: 11px;
  }
}


/* Fix: prijzen blijven binnen de product-box */
.price-card-section .tier-body.two-cols,
.best-showcase .best-grid {
  gap: 12px;
}

.price-card-section .priced-product,
.best-showcase .best-product {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  padding: 14px 12px;
}

.price-card-section .product-main,
.best-showcase .product-main {
  min-width: 0;
}

.price-card-section .product-name,
.best-showcase .product-name {
  min-width: 0;
  max-width: 100%;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
}

.price-card-section .tag,
.best-showcase .tag {
  padding: 7px 10px;
  font-size: 13px;
}

.price-card-section .clean-price,
.best-showcase .clean-price {
  min-width: 92px;
  max-width: 102px;
  padding: 9px 10px;
  border-radius: 16px;
  justify-self: end;
}

.price-card-section .clean-price > div,
.best-showcase .clean-price > div {
  gap: 8px;
}

.price-card-section .clean-price > span,
.price-card-section .clean-price > b,
.price-card-section .clean-price div span,
.price-card-section .clean-price div b,
.best-showcase .clean-price > span,
.best-showcase .clean-price > b,
.best-showcase .clean-price div span,
.best-showcase .clean-price div b {
  font-size: 13px;
}

/* Als een kaart te smal wordt, gaat prijs netjes onder de naam i.p.v. buiten de box */
@media (max-width: 900px) {
  .price-card-section .tier-body.two-cols,
  .best-showcase .best-grid {
    grid-template-columns: 1fr;
  }

  .price-card-section .priced-product,
  .best-showcase .best-product {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
}

@media (max-width: 560px) {
  .price-card-section .priced-product,
  .best-showcase .best-product {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .price-card-section .clean-price,
  .best-showcase .clean-price {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: none;
  }
}

/* Gruis dropdown blijft ook strak binnen de box */
.product-dropdown.priced-product .product-summary {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 8px;
  padding: 14px 12px;
}

.product-dropdown.priced-product .product-summary .clean-price {
  min-width: 92px;
  max-width: 102px;
}

@media (max-width: 560px) {
  .product-dropdown.priced-product .product-summary {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .product-dropdown.priced-product .product-summary .product-tags {
    grid-column: 2;
  }

  .product-dropdown.priced-product .product-summary .clean-price {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: none;
  }
}


/* Kwaliteitsteksten bij elke categorie */
.price-card-section .tier-title,
.best-showcase .tier-title {
  gap: 8px;
}

.quality-note {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .1px;
}

.color-mix .quality-note {
  background: linear-gradient(90deg, rgba(255, 23, 23, .34), rgba(255, 255, 255, .08));
}

.color-fresh .quality-note {
  background: linear-gradient(90deg, rgba(0, 229, 255, .28), rgba(255, 255, 255, .08));
}

.color-sweet .quality-note {
  background: linear-gradient(90deg, rgba(255, 138, 0, .30), rgba(255, 255, 255, .08));
}

.color-premium .quality-note {
  background: linear-gradient(90deg, rgba(157, 78, 221, .36), rgba(255, 255, 255, .08));
}

.best-showcase .quality-badge-best {
  color: #140800;
  background: linear-gradient(90deg, #ffe348, #ff8a00);
  box-shadow: 0 8px 22px rgba(255, 138, 0, .22);
}

@media (max-width: 480px) {
  .quality-note,
  .best-showcase .quality-badge-best {
    font-size: 12px;
    padding: 7px 10px;
  }
}


/* Leukere kleurtjes voor kwaliteitsteksten */
.quality-note,
.quality-badge-best {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .15px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .32);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, .22),
    inset 0 0 0 1px rgba(255, 255, 255, .24);
}

.color-mix .quality-note {
  color: #fff;
  background: linear-gradient(135deg, #ff1744, #ff6d00, #ffe348);
}

.color-fresh .quality-note {
  color: #001014;
  background: linear-gradient(135deg, #00e5ff, #7dff68, #ffe348);
  text-shadow: none;
}

.color-sweet .quality-note {
  color: #fff;
  background: linear-gradient(135deg, #ff8a00, #ff2bd6, #9d4edd);
}

.color-premium .quality-note {
  color: #fff;
  background: linear-gradient(135deg, #9d4edd, #ff2bd6, #00e5ff);
}

.best-showcase .quality-badge-best,
.price-note.quality-badge-best {
  color: #170700;
  background: linear-gradient(135deg, #ffe348, #ff8a00, #ff2bd6);
  text-shadow: none;
  box-shadow:
    0 10px 26px rgba(255, 138, 0, .28),
    inset 0 0 0 1px rgba(255, 255, 255, .32);
}

@media (max-width: 480px) {
  .quality-note,
  .quality-badge-best {
    padding: 8px 11px;
    font-size: 12px;
  }
}


/* Rode WhatsApp-knop onderaan */
.app-shell {
  padding-bottom: 150px;
}

.bottom-bar.whatsapp-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  width: 100%;
  transform: none;
  display: flex;
  justify-content: center;
  padding: 0 14px 18px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .18), transparent);
  box-shadow: none;
}

.whatsapp-cta {
  width: min(94vw, 620px);
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  color: #fff;
  background: linear-gradient(180deg, #ff1717, #d90000);
  border: 1px solid rgba(255, 90, 90, .9);
  border-radius: 0;
  box-shadow:
    0 0 26px rgba(255, 0, 0, .55),
    0 16px 34px rgba(0, 0, 0, .55),
    inset 0 0 0 1px rgba(255, 255, 255, .08);
  text-align: center;
  text-decoration: none;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -.2px;
}

.whatsapp-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.whatsapp-cta:active {
  transform: translateY(1px);
}

@media (max-width: 480px) {
  .app-shell {
    padding-bottom: 135px;
  }

  .bottom-bar.whatsapp-bottom {
    padding: 0 10px 14px;
  }

  .whatsapp-cta {
    min-height: 58px;
    padding: 15px 16px;
    font-size: 17px;
  }
}


/* Fix: WIET-header klapt nu echt de hele WIET-categorie dicht */
.wiet-toggle-area {
  cursor: pointer;
  user-select: none;
}

.wiet-toggle-area:focus-visible {
  outline: 3px solid rgba(255, 227, 72, .9);
  outline-offset: 4px;
}

.menu-card.wiet-is-closed .tier {
  display: none !important;
}

.menu-card.wiet-is-closed .menu-title-row {
  margin-bottom: 0;
}

.menu-card.wiet-is-closed .chev {
  transform: rotate(-90deg);
}


/* Gruis dropdown krijgt dezelfde nette opbouw */
.product-dropdown.priced-product .product-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  grid-template-areas:
    "name tag price arrow"
    "hint tag price arrow";
  align-items: center;
  gap: 8px 12px;
  min-height: 116px;
}

.product-dropdown.priced-product .product-summary .product-main {
  grid-area: name;
}

.product-dropdown.priced-product .product-summary .product-tags {
  grid-area: tag;
}

.product-dropdown.priced-product .product-summary .clean-price {
  grid-area: price;
}

.product-dropdown.priced-product .product-summary .product-hint {
  grid-area: hint;
  justify-self: start;
  position: static;
  transform: none;
}

.product-dropdown.priced-product .product-summary::after {
  grid-area: arrow;
}

@media (max-width: 900px) {
  .product-row.priced-product,
  .best-showcase .best-product {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "name tag"
      "hint price";
  }

  .product-dropdown.priced-product .product-summary {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "name tag arrow"
      "hint price arrow";
  }
}

@media (max-width: 560px) {
  .product-row.priced-product,
  .best-showcase .best-product {
    grid-template-columns: 1fr;
    grid-template-areas:
      "name"
      "hint"
      "tag"
      "price";
    text-align: center;
  }

  .product-row.priced-product .product-main,
  .best-showcase .best-product .product-main {
    align-items: center;
    text-align: center;
  }

  .product-row.priced-product .product-hint,
  .best-showcase .best-product .product-hint,
  .product-row.priced-product .product-tags,
  .best-showcase .best-product .product-tags,
  .product-row.priced-product .clean-price,
  .best-showcase .best-product .clean-price {
    justify-self: center;
  }

  .product-dropdown.priced-product .product-summary {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name arrow"
      "hint arrow"
      "tag arrow"
      "price arrow";
  }

  .product-dropdown.priced-product .product-summary .product-main {
    align-items: center;
    text-align: center;
  }

  .product-dropdown.priced-product .product-summary .product-hint,
  .product-dropdown.priced-product .product-summary .product-tags,
  .product-dropdown.priced-product .product-summary .clean-price {
    justify-self: center;
  }
}


/* Algemene video-uitleg bovenaan, zodat productkaarten schoon blijven */
.video-info-card {
  width: min(100%, 680px);
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 43, 214, .36);
  background:
    linear-gradient(135deg, rgba(255, 23, 23, .18), rgba(255, 43, 214, .14), rgba(0, 229, 255, .10)),
    rgba(255, 255, 255, .07);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, .30),
    inset 0 0 0 1px rgba(255, 255, 255, .05);
  backdrop-filter: blur(14px);
  text-align: left;
}

.video-info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--red), var(--pink), var(--cyan));
  box-shadow: 0 10px 24px rgba(255, 43, 214, .24);
  font-size: 24px;
}

.video-info-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.video-info-copy .small-label {
  margin: 0;
}

.video-info-copy strong {
  color: #fff;
  font-size: clamp(17px, 2.7vw, 24px);
  line-height: 1.08;
}

.video-info-copy span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
}

/* Productnamen krijgen weer alle ruimte */
.product-row.priced-product,
.best-showcase .best-product {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.product-dropdown.priced-product .product-summary {
  grid-template-columns: minmax(0, 1fr) auto auto auto;
}

.product-main {
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 560px) {
  .video-info-card {
    grid-template-columns: auto 1fr;
    padding: 13px;
    gap: 11px;
  }

  .video-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 21px;
  }

  .video-info-copy strong {
    font-size: 16px;
  }

  .video-info-copy span:last-child {
    font-size: 12px;
  }
}


/* Fix: rare lege ruimte onder Gruis weg */
.price-card-section details.product-dropdown.priced-product {
  padding: 0 !important;
  min-height: 0 !important;
  gap: 0 !important;
}

.product-dropdown.priced-product .product-summary {
  min-height: 92px !important;
  padding: 18px 16px !important;
  grid-template-columns: minmax(0, 1fr) auto auto auto !important;
  grid-template-areas: "name tag price arrow" !important;
  align-items: center !important;
  gap: 12px !important;
}

.product-dropdown.priced-product .product-summary .product-main {
  grid-area: name;
}

.product-dropdown.priced-product .product-summary .product-tags {
  grid-area: tag;
}

.product-dropdown.priced-product .product-summary .clean-price {
  grid-area: price;
}

.product-dropdown.priced-product .product-summary::after {
  grid-area: arrow;
}

/* Alleen ruimte voor video wanneer Gruis echt open staat */
.product-dropdown.priced-product:not([open]) .product-video-inline {
  display: none;
}

.product-dropdown.priced-product[open] .product-video-inline {
  display: block;
  margin: 0 14px 14px;
}

@media (max-width: 560px) {
  .product-dropdown.priced-product .product-summary {
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "name arrow"
      "tag arrow"
      "price arrow" !important;
    text-align: center;
  }

  .product-dropdown.priced-product .product-summary .product-main,
  .product-dropdown.priced-product .product-summary .product-tags,
  .product-dropdown.priced-product .product-summary .clean-price {
    justify-self: center;
  }
}


/* Fix: alle uitklapknoppen veranderen nu hetzelfde */
.tier-arrow,
.product-summary::after,
.chev {
  transition: transform .18s ease;
}

.tier-arrow {
  transform: rotate(0deg);
}

.tier.is-closed .tier-arrow {
  transform: rotate(-90deg);
}

.menu-card .chev {
  display: inline-block;
  transform: rotate(0deg);
}

.menu-card.wiet-is-closed .chev {
  transform: rotate(-90deg);
}

.product-summary::after {
  content: "▼" !important;
  transform: rotate(0deg);
}

.product-dropdown:not([open]) .product-summary::after {
  transform: rotate(-90deg);
}

/* Oude losse pijlteksten worden hiermee genegeerd */
.tier.is-closed .tier-arrow,
.tier:not(.is-closed) .tier-arrow {
  color: #080808;
}


/* Fix: Video Gruis blijft netjes binnen het vak */
details.product-dropdown {
  max-width: 100%;
  overflow: hidden;
}

.product-dropdown.priced-product[open] .product-video-inline,
.product-video-inline {
  width: calc(100% - 28px) !important;
  max-width: calc(100% - 28px) !important;
  margin: 0 auto 14px !important;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 16px;
}

.product-video-inline video {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background: #000;
}

.video-title-row {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 560px) {
  .product-dropdown.priced-product[open] .product-video-inline,
  .product-video-inline {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    margin: 0 auto 10px !important;
    border-radius: 14px;
  }

  .product-video-inline video {
    max-height: 330px;
  }
}


/* Fix: categorie-menu schuift niet meer links/rechts op telefoon */
.quick-nav {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  overflow: visible !important;
  overflow-x: hidden !important;
  max-width: 100%;
}

.quick-nav a {
  min-width: 0 !important;
  width: 100%;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .quick-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 22px;
  }

  .quick-nav a {
    padding: 10px 8px;
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quick-nav a {
    font-size: 12px;
    padding: 10px 7px;
  }
}


/* Fix: Gruis staat op mobiel op dezelfde plek als de rest */
.product-dropdown.priced-product .product-summary .product-main {
  justify-self: start;
  align-items: flex-start;
  text-align: left;
}

.product-dropdown.priced-product .product-summary .product-tags {
  justify-self: end;
}

.product-dropdown.priced-product .product-summary .clean-price {
  justify-self: start;
}

@media (max-width: 560px) {
  .product-dropdown.priced-product .product-summary {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    grid-template-areas:
      "name tag arrow"
      "price price arrow" !important;
    align-items: center !important;
    text-align: left !important;
  }

  .product-dropdown.priced-product .product-summary .product-main {
    grid-area: name;
    justify-self: start;
    align-items: flex-start;
    text-align: left;
  }

  .product-dropdown.priced-product .product-summary .product-tags {
    grid-area: tag;
    justify-self: end;
  }

  .product-dropdown.priced-product .product-summary .clean-price {
    grid-area: price;
    justify-self: start;
    margin-top: 2px;
  }

  .product-dropdown.priced-product .product-summary::after {
    grid-area: arrow;
  }
}


/* Fix: Gruis prijs en MIX staan op mobiel op dezelfde plek als de rest */
@media (max-width: 560px) {
  .product-dropdown.priced-product .product-summary {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    grid-template-areas:
      "name tag arrow"
      "price price arrow" !important;
    align-items: center !important;
    text-align: left !important;
    row-gap: 10px !important;
    column-gap: 12px !important;
  }

  .product-dropdown.priced-product .product-summary .product-main {
    grid-area: name;
    justify-self: start !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .product-dropdown.priced-product .product-summary .product-tags {
    grid-area: tag;
    justify-self: end !important;
    align-self: center !important;
  }

  .product-dropdown.priced-product .product-summary .clean-price {
    grid-area: price;
    grid-column: 1 / span 2;
    justify-self: center !important;
    align-self: start !important;
    margin-top: 0 !important;
  }

  .product-dropdown.priced-product .product-summary::after {
    grid-area: arrow;
    justify-self: center;
    align-self: center;
  }
}


/* Video bij elke soort: elke productkaart is nu een eigen dropdown */
details.product-dropdown.product-row {
  display: block !important;
  padding: 0 !important;
  max-width: 100%;
  overflow: hidden;
}

details.product-dropdown .product-summary {
  min-height: 92px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto auto !important;
  grid-template-areas: "name tag price arrow" !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 18px 16px !important;
  cursor: pointer;
  list-style: none;
  text-align: left;
}

details.product-dropdown .product-summary::-webkit-details-marker {
  display: none;
}

details.product-dropdown .product-summary .product-main {
  grid-area: name;
  justify-self: start;
  min-width: 0;
  align-items: flex-start;
  text-align: left;
}

details.product-dropdown .product-summary .product-tags {
  grid-area: tag;
  justify-self: end;
}

details.product-dropdown .product-summary .clean-price,
details.product-dropdown .product-summary .price-pill {
  grid-area: price;
  justify-self: end;
}

details.product-dropdown .product-summary::after {
  content: "▼" !important;
  grid-area: arrow;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #101010;
  background: #ffffff;
  font-size: 16px;
  font-weight: 950;
  transition: transform .18s ease;
}

details.product-dropdown:not([open]) .product-summary::after {
  transform: rotate(-90deg);
}

details.product-dropdown:not([open]) .product-video-inline {
  display: none !important;
}

details.product-dropdown[open] .product-video-inline {
  display: block !important;
  width: calc(100% - 28px) !important;
  max-width: calc(100% - 28px) !important;
  margin: 0 auto 14px !important;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 16px;
}

details.product-dropdown .product-video-inline video {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  background: #000;
}

details.product-dropdown .video-title-row {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 560px) {
  details.product-dropdown .product-summary {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    grid-template-areas:
      "name tag arrow"
      "price price arrow" !important;
    row-gap: 10px !important;
    column-gap: 12px !important;
    text-align: left !important;
  }

  details.product-dropdown .product-summary .product-main {
    justify-self: start !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  details.product-dropdown .product-summary .product-tags {
    justify-self: end !important;
  }

  details.product-dropdown .product-summary .clean-price,
  details.product-dropdown .product-summary .price-pill {
    grid-column: 1 / span 2;
    justify-self: center !important;
    margin-top: 0 !important;
  }

  details.product-dropdown[open] .product-video-inline {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    margin: 0 auto 10px !important;
    border-radius: 14px;
  }

  details.product-dropdown .product-video-inline video {
    max-height: 330px;
  }
}


/* Layout fix: tekst, tags, prijzen en video netjes; maar 1 open video trekt andere vakken niet mee */
.price-card-section .tier-body.two-cols,
.best-showcase .best-grid {
  align-items: start !important;
}

details.product-dropdown.product-row,
details.product-dropdown.best-product,
details.product-dropdown.priced-product {
  align-self: start !important;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

details.product-dropdown .product-summary {
  min-height: 112px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto 38px !important;
  grid-template-areas:
    "name price arrow"
    "tags price arrow" !important;
  align-items: center !important;
  gap: 8px 12px !important;
  padding: 18px 16px !important;
  text-align: left !important;
}

details.product-dropdown .product-summary .product-main {
  grid-area: name !important;
  min-width: 0 !important;
  justify-self: start !important;
  align-items: flex-start !important;
  text-align: left !important;
}

details.product-dropdown .product-summary .product-name {
  display: block;
  max-width: 100%;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  line-height: 1.05 !important;
}

details.product-dropdown .product-summary .product-tags {
  grid-area: tags !important;
  justify-self: start !important;
  justify-content: flex-start !important;
  max-width: 100%;
  min-width: 0;
}

details.product-dropdown .product-summary .product-tags .tag {
  white-space: nowrap;
}

details.product-dropdown .product-summary .clean-price,
details.product-dropdown .product-summary .price-pill {
  grid-area: price !important;
  justify-self: end !important;
  align-self: center !important;
  min-width: 96px !important;
  max-width: 108px !important;
}

details.product-dropdown .product-summary::after {
  grid-area: arrow !important;
  justify-self: end !important;
  align-self: center !important;
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px;
}

details.product-dropdown[open] .product-video-inline {
  width: calc(100% - 28px) !important;
  max-width: calc(100% - 28px) !important;
  margin: 0 auto 14px !important;
  box-sizing: border-box;
  overflow: hidden;
}

details.product-dropdown .product-video-inline video {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain;
}

/* Desktop: iets kleinere tekst in smalle 2-koloms kaarten */
@media (min-width: 761px) {
  .two-cols details.product-dropdown .product-summary .product-name,
  .best-grid details.product-dropdown .product-summary .product-name {
    font-size: clamp(21px, 2.35vw, 27px) !important;
  }

  .two-cols details.product-dropdown .product-summary,
  .best-grid details.product-dropdown .product-summary {
    grid-template-columns: minmax(0, 1fr) auto 36px !important;
    gap: 8px 10px !important;
  }
}

/* Tablet/smal scherm: 1 kolom zodat niets door elkaar loopt */
@media (max-width: 900px) {
  .price-card-section .tier-body.two-cols,
  .best-showcase .best-grid {
    grid-template-columns: 1fr !important;
  }

  details.product-dropdown .product-summary {
    grid-template-columns: minmax(0, 1fr) auto 38px !important;
    grid-template-areas:
      "name price arrow"
      "tags price arrow" !important;
  }
}

/* Mobiel: naam links, tags links eronder, prijs rechts; geen overlap */
@media (max-width: 560px) {
  details.product-dropdown .product-summary {
    min-height: 116px !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "name arrow"
      "tags arrow"
      "price arrow" !important;
    row-gap: 8px !important;
    column-gap: 12px !important;
    padding: 16px 14px !important;
  }

  details.product-dropdown .product-summary .product-main,
  details.product-dropdown .product-summary .product-tags,
  details.product-dropdown .product-summary .clean-price,
  details.product-dropdown .product-summary .price-pill {
    justify-self: start !important;
  }

  details.product-dropdown .product-summary .clean-price,
  details.product-dropdown .product-summary .price-pill {
    max-width: 112px !important;
  }

  details.product-dropdown .product-summary::after {
    justify-self: end !important;
  }

  details.product-dropdown[open] .product-video-inline {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    margin: 0 auto 10px !important;
  }
}


/* LAATSTE FIX: geen overlap meer tussen naam, prijs, tag en knop */
.price-card-section .tier-body.two-cols,
.best-showcase .best-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  align-items: start !important;
}

/* Als er een video open staat, wordt die categorie 1 kolom zodat niets uitrekt of leeg wordt */
.tier.has-open-video .tier-body.two-cols,
.best-showcase.has-open-video .best-grid {
  grid-template-columns: 1fr !important;
}

details.product-dropdown.product-row,
details.product-dropdown.priced-product,
details.product-dropdown.best-product {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
}

details.product-dropdown .product-summary {
  min-height: 128px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto 38px !important;
  grid-template-areas:
    "name name arrow"
    "tags price arrow" !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 18px 16px !important;
  list-style: none !important;
  cursor: pointer !important;
  overflow: hidden !important;
  text-align: left !important;
}

details.product-dropdown .product-summary::-webkit-details-marker {
  display: none !important;
}

details.product-dropdown .product-summary .product-main {
  grid-area: name !important;
  min-width: 0 !important;
  max-width: 100% !important;
  justify-self: start !important;
  align-items: flex-start !important;
  text-align: left !important;
}

details.product-dropdown .product-summary .product-name {
  display: block !important;
  max-width: 100% !important;
  color: #fff !important;
  font-size: clamp(22px, 2.5vw, 29px) !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

details.product-dropdown .product-summary .product-tags {
  grid-area: tags !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: flex !important;
  justify-content: flex-start !important;
  justify-self: start !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
}

details.product-dropdown .product-summary .tag {
  white-space: nowrap !important;
  font-size: 12px !important;
  padding: 7px 10px !important;
}

details.product-dropdown .product-summary .clean-price,
details.product-dropdown .product-summary .price-pill {
  grid-area: price !important;
  width: 104px !important;
  min-width: 104px !important;
  max-width: 104px !important;
  justify-self: end !important;
  align-self: center !important;
  padding: 9px 10px !important;
  border-radius: 16px !important;
  z-index: 1 !important;
}

details.product-dropdown .product-summary .clean-price div,
details.product-dropdown .product-summary .price-pill div {
  gap: 8px !important;
}

details.product-dropdown .product-summary .clean-price span,
details.product-dropdown .product-summary .clean-price b,
details.product-dropdown .product-summary .price-pill span,
details.product-dropdown .product-summary .price-pill b {
  font-size: 12px !important;
  line-height: 1.05 !important;
}

details.product-dropdown .product-summary::after {
  content: "▼" !important;
  grid-area: arrow !important;
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  justify-self: end !important;
  align-self: center !important;
  border-radius: 999px !important;
  color: #101010 !important;
  background: #fff !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  transition: transform .18s ease !important;
  z-index: 2 !important;
}

details.product-dropdown:not([open]) .product-summary::after {
  transform: rotate(-90deg) !important;
}

details.product-dropdown:not([open]) .product-video-inline {
  display: none !important;
}

details.product-dropdown[open] .product-video-inline {
  display: block !important;
  width: calc(100% - 28px) !important;
  max-width: calc(100% - 28px) !important;
  margin: 0 auto 14px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  border-radius: 16px !important;
}

details.product-dropdown .product-video-inline video {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 420px !important;
  object-fit: contain !important;
  background: #000 !important;
}

details.product-dropdown .video-title-row {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Onder deze breedte is 1 kolom gewoon beter; dan blijft alles echt leesbaar */
@media (max-width: 980px) {
  .price-card-section .tier-body.two-cols,
  .best-showcase .best-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  details.product-dropdown .product-summary {
    min-height: 118px !important;
    grid-template-columns: minmax(0, 1fr) 92px 34px !important;
    grid-template-areas:
      "name name arrow"
      "tags price arrow" !important;
    gap: 9px !important;
    padding: 15px 14px !important;
  }

  details.product-dropdown .product-summary .product-name {
    font-size: clamp(21px, 6vw, 27px) !important;
  }

  details.product-dropdown .product-summary .clean-price,
  details.product-dropdown .product-summary .price-pill {
    width: 92px !important;
    min-width: 92px !important;
    max-width: 92px !important;
    padding: 8px 9px !important;
  }

  details.product-dropdown .product-summary .clean-price span,
  details.product-dropdown .product-summary .clean-price b,
  details.product-dropdown .product-summary .price-pill span,
  details.product-dropdown .product-summary .price-pill b {
    font-size: 11px !important;
  }

  details.product-dropdown .product-summary .tag {
    font-size: 11px !important;
    padding: 6px 9px !important;
  }

  details.product-dropdown[open] .product-video-inline {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    margin: 0 auto 10px !important;
    border-radius: 14px !important;
  }

  details.product-dropdown .product-video-inline video {
    max-height: 330px !important;
  }
}

@media (max-width: 390px) {
  details.product-dropdown .product-summary {
    grid-template-columns: minmax(0, 1fr) 34px !important;
    grid-template-areas:
      "name arrow"
      "tags arrow"
      "price arrow" !important;
  }

  details.product-dropdown .product-summary .clean-price,
  details.product-dropdown .product-summary .price-pill {
    justify-self: start !important;
  }
}


/* Alle soorten onder elkaar */
.price-card-section .tier-body.two-cols,
.best-showcase .best-grid,
.tier.has-open-video .tier-body.two-cols,
.best-showcase.has-open-video .best-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  align-items: start !important;
}


/* FINAL: alles onder elkaar, tekst zoals Best, en inklappen werkt */
.price-card-section .tier-body.two-cols,
.best-showcase .best-grid,
.tier.has-open-video .tier-body.two-cols,
.best-showcase.has-open-video .best-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  align-items: start !important;
}

/* Dit moet na alle andere CSS staan, anders blijft de inhoud zichtbaar */
.tier.is-closed > .tier-body {
  display: none !important;
}

.menu-card.wiet-is-closed .tier {
  display: none !important;
}

details.product-dropdown.product-row,
details.product-dropdown.priced-product,
details.product-dropdown.best-product {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
  overflow: hidden !important;
}

details.product-dropdown .product-summary {
  min-height: 126px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 112px 38px !important;
  grid-template-areas:
    "name price arrow"
    "tags price arrow" !important;
  align-items: center !important;
  column-gap: 12px !important;
  row-gap: 8px !important;
  padding: 18px 16px !important;
  list-style: none !important;
  cursor: pointer !important;
  text-align: left !important;
  overflow: hidden !important;
}

details.product-dropdown .product-summary::-webkit-details-marker {
  display: none !important;
}

details.product-dropdown .product-summary .product-main {
  grid-area: name !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-self: start !important;
  text-align: left !important;
}

details.product-dropdown .product-summary .product-name {
  display: block !important;
  max-width: 100% !important;
  color: #fff !important;
  font-size: clamp(24px, 3vw, 31px) !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

details.product-dropdown .product-summary .product-tags {
  grid-area: tags !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  justify-self: start !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
}

details.product-dropdown .product-summary .tag {
  white-space: nowrap !important;
  font-size: 12px !important;
  padding: 7px 10px !important;
}

details.product-dropdown .product-summary .clean-price,
details.product-dropdown .product-summary .price-pill {
  grid-area: price !important;
  width: 104px !important;
  min-width: 104px !important;
  max-width: 104px !important;
  justify-self: end !important;
  align-self: center !important;
  padding: 9px 10px !important;
  border-radius: 16px !important;
  z-index: 1 !important;
}

details.product-dropdown .product-summary .clean-price div,
details.product-dropdown .product-summary .price-pill div {
  gap: 8px !important;
}

details.product-dropdown .product-summary .clean-price span,
details.product-dropdown .product-summary .clean-price b,
details.product-dropdown .product-summary .price-pill span,
details.product-dropdown .product-summary .price-pill b {
  font-size: 12px !important;
  line-height: 1.05 !important;
}

details.product-dropdown .product-summary::after {
  content: "▼" !important;
  grid-area: arrow !important;
  width: 34px !important;
  height: 34px !important;
  display: grid !important;
  place-items: center !important;
  justify-self: end !important;
  align-self: center !important;
  border-radius: 999px !important;
  color: #101010 !important;
  background: #fff !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  transition: transform .18s ease !important;
  z-index: 2 !important;
}

details.product-dropdown:not([open]) .product-summary::after {
  transform: rotate(-90deg) !important;
}

details.product-dropdown:not([open]) .product-video-inline {
  display: none !important;
}

details.product-dropdown[open] .product-video-inline {
  display: block !important;
  width: calc(100% - 28px) !important;
  max-width: calc(100% - 28px) !important;
  margin: 0 auto 14px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  border-radius: 16px !important;
}

details.product-dropdown .product-video-inline video {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 420px !important;
  object-fit: contain !important;
  background: #000 !important;
}

details.product-dropdown .video-title-row {
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 560px) {
  details.product-dropdown .product-summary {
    min-height: 118px !important;
    grid-template-columns: minmax(0, 1fr) 92px 34px !important;
    grid-template-areas:
      "name price arrow"
      "tags price arrow" !important;
    column-gap: 9px !important;
    row-gap: 8px !important;
    padding: 15px 14px !important;
  }

  details.product-dropdown .product-summary .product-name {
    font-size: clamp(21px, 6vw, 27px) !important;
  }

  details.product-dropdown .product-summary .clean-price,
  details.product-dropdown .product-summary .price-pill {
    width: 92px !important;
    min-width: 92px !important;
    max-width: 92px !important;
    padding: 8px 9px !important;
  }

  details.product-dropdown .product-summary .clean-price span,
  details.product-dropdown .product-summary .clean-price b,
  details.product-dropdown .product-summary .price-pill span,
  details.product-dropdown .product-summary .price-pill b {
    font-size: 11px !important;
  }

  details.product-dropdown .product-summary .tag {
    font-size: 11px !important;
    padding: 6px 9px !important;
  }

  details.product-dropdown[open] .product-video-inline {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    margin: 0 auto 10px !important;
    border-radius: 14px !important;
  }

  details.product-dropdown .product-video-inline video {
    max-height: 330px !important;
  }
}

@media (max-width: 390px) {
  details.product-dropdown .product-summary {
    grid-template-columns: minmax(0, 1fr) 34px !important;
    grid-template-areas:
      "name arrow"
      "tags arrow"
      "price arrow" !important;
  }

  details.product-dropdown .product-summary .clean-price,
  details.product-dropdown .product-summary .price-pill {
    justify-self: start !important;
  }
}


/* Alles zoals bij Best: naam links, label links eronder, prijs rechts, knop rechts */
details.product-dropdown .product-summary,
details.product-dropdown.product-row .product-summary,
details.product-dropdown.priced-product .product-summary,
details.product-dropdown.best-product .product-summary {
  min-height: 126px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 112px 38px !important;
  grid-template-areas:
    "name price arrow"
    "tags price arrow" !important;
  align-items: center !important;
  column-gap: 12px !important;
  row-gap: 8px !important;
  padding: 18px 16px !important;
  text-align: left !important;
}

details.product-dropdown .product-summary .product-main {
  grid-area: name !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-self: start !important;
  justify-content: center !important;
  text-align: left !important;
}

details.product-dropdown .product-summary .product-name {
  display: block !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  line-height: 1.08 !important;
}

details.product-dropdown .product-summary .product-tags {
  grid-area: tags !important;
  min-width: 0 !important;
  max-width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  justify-self: start !important;
  align-self: start !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
}

details.product-dropdown .product-summary .product-tags .tag {
  white-space: nowrap !important;
}

details.product-dropdown .product-summary .clean-price,
details.product-dropdown .product-summary .price-pill {
  grid-area: price !important;
  width: 104px !important;
  min-width: 104px !important;
  max-width: 104px !important;
  justify-self: end !important;
  align-self: center !important;
  margin: 0 !important;
}

details.product-dropdown .product-summary::after {
  grid-area: arrow !important;
  justify-self: end !important;
  align-self: center !important;
}

/* Ook de gewone kaarten zonder open video krijgen exact dezelfde indeling */
.price-card-section .tier-body.two-cols,
.best-showcase .best-grid,
.tier.has-open-video .tier-body.two-cols,
.best-showcase.has-open-video .best-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  align-items: start !important;
}

/* Mobiel: dezelfde Best-indeling behouden */
@media (max-width: 560px) {
  details.product-dropdown .product-summary,
  details.product-dropdown.product-row .product-summary,
  details.product-dropdown.priced-product .product-summary,
  details.product-dropdown.best-product .product-summary {
    min-height: 118px !important;
    grid-template-columns: minmax(0, 1fr) 92px 34px !important;
    grid-template-areas:
      "name price arrow"
      "tags price arrow" !important;
    column-gap: 9px !important;
    row-gap: 8px !important;
    padding: 15px 14px !important;
  }

  details.product-dropdown .product-summary .clean-price,
  details.product-dropdown .product-summary .price-pill {
    width: 92px !important;
    min-width: 92px !important;
    max-width: 92px !important;
  }
}


/* TELEFOON FIX: labels links zoals Best + inklappen blijft werken */
details.product-dropdown.product-row .product-summary,
details.product-dropdown.priced-product .product-summary,
details.product-dropdown.best-product .product-summary {
  grid-template-columns: minmax(0, 1fr) 104px 38px !important;
  grid-template-areas:
    "name price arrow"
    "tags price arrow" !important;
}

details.product-dropdown.product-row .product-summary .product-main,
details.product-dropdown.priced-product .product-summary .product-main,
details.product-dropdown.best-product .product-summary .product-main {
  grid-area: name !important;
  justify-self: start !important;
  align-self: end !important;
  align-items: flex-start !important;
  text-align: left !important;
}

details.product-dropdown.product-row .product-summary .product-tags,
details.product-dropdown.priced-product .product-summary .product-tags,
details.product-dropdown.best-product .product-summary .product-tags {
  grid-area: tags !important;
  justify-self: start !important;
  align-self: start !important;
  justify-content: flex-start !important;
  align-items: center !important;
  text-align: left !important;
  margin: 0 !important;
}

details.product-dropdown.product-row .product-summary .clean-price,
details.product-dropdown.priced-product .product-summary .clean-price,
details.product-dropdown.best-product .product-summary .clean-price,
details.product-dropdown.product-row .product-summary .price-pill,
details.product-dropdown.priced-product .product-summary .price-pill,
details.product-dropdown.best-product .product-summary .price-pill {
  grid-area: price !important;
  justify-self: end !important;
  align-self: center !important;
}

details.product-dropdown.product-row .product-summary::after,
details.product-dropdown.priced-product .product-summary::after,
details.product-dropdown.best-product .product-summary::after {
  grid-area: arrow !important;
  justify-self: end !important;
  align-self: center !important;
}

@media (max-width: 560px) {
  details.product-dropdown.product-row .product-summary,
  details.product-dropdown.priced-product .product-summary,
  details.product-dropdown.best-product .product-summary {
    grid-template-columns: minmax(0, 1fr) 92px 34px !important;
    grid-template-areas:
      "name price arrow"
      "tags price arrow" !important;
    min-height: 118px !important;
  }

  details.product-dropdown.product-row .product-summary .product-tags,
  details.product-dropdown.priced-product .product-summary .product-tags,
  details.product-dropdown.best-product .product-summary .product-tags {
    justify-self: start !important;
    align-self: start !important;
  }
}

/* Deze moet helemaal onderaan staan, anders overschrijven latere grid-regels het inklappen */
.tier.is-closed > .tier-body {
  display: none !important;
}

.menu-card.wiet-is-closed .tier {
  display: none !important;
}

.tier.is-closed .tier-arrow {
  transform: rotate(-90deg) !important;
}


/* Reclame header */
.hero {
  padding: 22px 12px 12px;
}

.hero-ad {
  width: min(100%, 860px);
  margin: 0 auto 18px;
  padding: clamp(22px, 4vw, 38px) clamp(16px, 4vw, 34px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 227, 72, .25), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(255, 43, 214, .26), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(0, 229, 255, .18), transparent 34%),
    linear-gradient(135deg, rgba(255, 23, 23, .12), rgba(10, 10, 22, .92) 48%, rgba(157, 78, 221, .15));
  box-shadow:
    0 24px 80px rgba(0, 0, 0, .48),
    inset 0 0 0 1px rgba(255, 255, 255, .04);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero-ad::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  transform: translateX(-100%);
  animation: heroShine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroShine {
  0%, 55% { transform: translateX(-100%); }
  85%, 100% { transform: translateX(100%); }
}

.hero-badge {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .4px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
}

.hero-ad h1 {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .18em;
  font-size: clamp(46px, 10vw, 92px);
  line-height: .88;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.hero-ad h1 span:first-child {
  background: linear-gradient(90deg, #ffe348, #ff8a00, #ff5ba8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-ad h1 span:last-child {
  background: linear-gradient(90deg, #ff5ba8, #ff2bd6, #9d4edd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  width: min(100%, 690px);
  margin: 18px auto 0;
  color: #f4f0ff;
  font-size: clamp(15px, 2.6vw, 19px);
  line-height: 1.55;
  font-weight: 850;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px auto 0;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #080808;
  background: linear-gradient(135deg, #ffe348, #ff8a00, #ff2bd6);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(255, 43, 214, .20);
}

.hero-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
}

.hero-cta.primary {
  color: #fff;
  background: linear-gradient(135deg, #ff1717, #ff2bd6);
  box-shadow: 0 14px 34px rgba(255, 23, 23, .26);
}

.hero-cta.secondary {
  color: #0a0a0f;
  background: linear-gradient(135deg, #00e5ff, #7dff68, #ffe348);
}

@media (max-width: 560px) {
  .hero {
    padding-top: 14px;
  }

  .hero-ad {
    border-radius: 24px;
    padding: 24px 14px;
  }

  .hero-ad h1 {
    letter-spacing: -2px;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-highlights span {
    width: 100%;
  }

  .hero-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }
}


/* Menu blijft niet meer hangen tijdens scrollen */
.quick-nav {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
  transform: none !important;
}


/* Openingstijden badge rechts verwijderd: tekst vult nu netjes uit */
.opening-top {
  grid-template-columns: auto 1fr !important;
}

.open-badge {
  display: none !important;
}


/* Nieuwe naam in hero */
.hero-ad h1 .brand-full {
  background: linear-gradient(90deg, #ffe348, #ff8a00, #ff5ba8, #ff2bd6, #9d4edd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* Mooie layout voor WIET • HASJ badge */
.hero-badge.strain-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 8px !important;
  border-radius: 999px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05)),
    rgba(0, 0, 0, .30) !important;
  border: 1px solid rgba(255, 255, 255, .24) !important;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, .34),
    inset 0 0 0 1px rgba(255, 255, 255, .05) !important;
}

.strain-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 15px;
  border-radius: 999px;
  color: #080808;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.strain-wiet {
  background: linear-gradient(135deg, #7dff68, #24e6a5, #00e5ff);
  box-shadow: 0 10px 24px rgba(36, 230, 165, .22);
}

.strain-hasj {
  background: linear-gradient(135deg, #ffe348, #ff8a00, #ff5ba8);
  box-shadow: 0 10px 24px rgba(255, 138, 0, .22);
}

.strain-separator {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

@media (max-width: 520px) {
  .hero-badge.strain-badge {
    width: fit-content;
    max-width: 100%;
    gap: 6px !important;
    padding: 7px !important;
  }

  .strain-chip {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 12px;
    letter-spacing: .5px;
  }
}


/* Mooie layout voor de hoofdtekst in de header */
.hero-subtitle.promo-layout {
  width: min(100%, 760px);
  margin: 22px auto 0;
  padding: 18px 22px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .04)),
    rgba(8, 8, 18, .32);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, .24),
    inset 0 0 0 1px rgba(255, 255, 255, .03);
  text-align: center;
  line-height: 1.45;
}

.hero-subtitle.promo-layout .promo-lead {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(20px, 3vw, 31px);
  font-weight: 950;
  letter-spacing: -.4px;
  line-height: 1.15;
}

.hero-subtitle.promo-layout .promo-highlight {
  background: linear-gradient(90deg, #ffe348, #ff9800, #ff4fc3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle.promo-layout .promo-accent {
  color: #ffffff;
}

.hero-subtitle.promo-layout .promo-sub {
  display: block;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(14px, 2.1vw, 18px);
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .hero-subtitle.promo-layout {
    margin-top: 18px;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .hero-subtitle.promo-layout .promo-lead {
    margin-bottom: 7px;
    font-size: clamp(18px, 6.5vw, 26px);
  }

  .hero-subtitle.promo-layout .promo-sub {
    font-size: 14px;
  }
}


/* Verwijder hero tekstblok */
.hero-subtitle,
.hero-subtitle.promo-layout {
  display: none !important;
}

/* Mooie opvallende bestelknop */
.bottom-bar.whatsapp-bottom {
  position: fixed !important;
  left: 50% !important;
  bottom: 18px !important;
  transform: translateX(-50%) !important;
  width: min(92vw, 640px) !important;
  z-index: 60 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: block !important;
}

.whatsapp-cta {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  min-height: 68px !important;
  padding: 18px 24px !important;
  border-radius: 22px !important;
  text-decoration: none !important;
  color: #fff !important;
  font-size: clamp(20px, 3vw, 32px) !important;
  font-weight: 950 !important;
  letter-spacing: -.4px !important;
  text-align: center !important;
  background:
    linear-gradient(135deg, #ff1717 0%, #ff3131 18%, #ff4f8a 52%, #ff2bd6 100%) !important;
  border: 2px solid rgba(255,255,255,.18) !important;
  box-shadow:
    0 18px 44px rgba(255, 23, 23, .34),
    0 8px 20px rgba(255, 43, 214, .22),
    inset 0 1px 0 rgba(255,255,255,.28) !important;
  overflow: hidden !important;
  isolation: isolate !important;
  animation: ctaPulse 2.2s ease-in-out infinite !important;
}

.whatsapp-cta::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  background: linear-gradient(100deg,
    transparent 0%,
    rgba(255,255,255,.14) 35%,
    rgba(255,255,255,.34) 50%,
    rgba(255,255,255,.12) 65%,
    transparent 100%) !important;
  transform: translateX(-130%) skewX(-22deg) !important;
  animation: ctaShine 3.2s ease-in-out infinite !important;
  z-index: -1 !important;
}

.whatsapp-cta::after {
  content: "" !important;
  position: absolute !important;
  inset: -6px !important;
  border-radius: 28px !important;
  border: 2px solid rgba(255, 52, 92, .34) !important;
  opacity: .85 !important;
  animation: ctaRing 2.2s ease-out infinite !important;
  pointer-events: none !important;
}

.whatsapp-cta:hover {
  transform: translateY(-2px) scale(1.01) !important;
}

.whatsapp-cta .cta-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.16) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24) !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

@keyframes ctaShine {
  0%, 58% { transform: translateX(-130%) skewX(-22deg); opacity: 0; }
  62% { opacity: 1; }
  78%, 100% { transform: translateX(130%) skewX(-22deg); opacity: 1; }
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 18px 44px rgba(255, 23, 23, .34),
      0 8px 20px rgba(255, 43, 214, .22),
      inset 0 1px 0 rgba(255,255,255,.28);
  }
  50% {
    box-shadow:
      0 22px 56px rgba(255, 23, 23, .45),
      0 10px 24px rgba(255, 43, 214, .30),
      0 0 0 6px rgba(255, 41, 110, .08),
      inset 0 1px 0 rgba(255,255,255,.28);
  }
}

@keyframes ctaRing {
  0% { transform: scale(.96); opacity: .75; }
  70%, 100% { transform: scale(1.03); opacity: 0; }
}

@media (max-width: 560px) {
  .bottom-bar.whatsapp-bottom {
    width: min(94vw, 520px) !important;
    bottom: 12px !important;
  }

  .whatsapp-cta {
    min-height: 60px !important;
    padding: 14px 18px !important;
    font-size: 16px !important;
    border-radius: 18px !important;
  }

  .whatsapp-cta .cta-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 16px !important;
  }
}




/* HASJ categorie */
.hasj-card {
  margin-top: 24px;
}

.hasj-card .menu-title-row {
  border-color: #ff1717;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 138, 0, .20), transparent 38%),
    linear-gradient(135deg, rgba(255, 23, 23, .18), rgba(0, 0, 0, .18));
}

.hasj-tier {
  border-color: rgba(255, 23, 23, .82);
  background:
    linear-gradient(135deg, rgba(255, 23, 23, .12), rgba(0, 0, 0, .84)),
    rgba(0, 0, 0, .72);
}

.hasj-tier .tier-head {
  min-height: 72px;
}

.hasj-tier .tier-title {
  align-items: flex-start;
}

.hasj-tier .tier-title strong {
  color: #fff;
}

.hasj-tier .hash-note {
  color: #fff;
  background: linear-gradient(135deg, #ff1717, #ff8a00, #ff2bd6);
  text-shadow: none;
}

.hash-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 14px 14px;
}

.hash-product {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 23, 23, .88);
  background: rgba(0, 0, 0, .72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.hash-product-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.hash-name {
  color: #ff2828;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
}

.hash-by {
  color: #ff4a4a;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
}

.hash-tag,
.hash-price {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff1717, #d90000);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(255, 23, 23, .18);
}

.hash-cheap .hash-product,
.hash-good .hash-product,
.hash-better .hash-product,
.hash-best .hash-product,
.hash-plasma .hash-product {
  border-color: #ff1717;
}

.hash-best .hash-price {
  background: linear-gradient(135deg, #ff1717, #ff5a00, #ff2bd6);
}

.hash-plasma .hash-price {
  background: linear-gradient(135deg, #ffe348, #ff8a00, #ff1717);
  color: #170700;
}

.menu-card.category-is-closed > .tier {
  display: none !important;
}

.menu-card.category-is-closed .menu-title-row {
  margin-bottom: 0;
}

.menu-card.category-is-closed .chev {
  transform: rotate(-90deg);
}

@media (max-width: 560px) {
  .hasj-card {
    margin-top: 18px;
  }

  .hasj-tier .tier-head {
    min-height: 66px;
  }

  .hash-list {
    padding: 0 10px 12px;
  }

  .hash-product {
    padding: 11px 10px;
    gap: 8px;
  }

  .hash-name {
    font-size: 13px;
  }

  .hash-price {
    padding: 6px 8px;
    font-size: 11px;
  }
}


/* HASJ gebruikt nu dezelfde layout als WIET */
.hasj-card {
  margin-top: 24px;
}

.hasj-card .menu-title-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 22px !important;
  border: 2px solid var(--red) !important;
  border-radius: var(--radius) !important;
  background: linear-gradient(135deg, rgba(255, 23, 23, .18), rgba(255, 43, 214, .05)) !important;
}

.hasj-card .tier-body.two-cols {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  padding: 0 14px 14px !important;
}

.hasj-card .best-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  padding: 0 14px 14px !important;
}

.hasj-card .product-dropdown .product-summary {
  min-height: 126px !important;
}

.hasj-card .plasma-showcase {
  border-color: rgba(255, 227, 72, .75) !important;
}

.hasj-card .product-hint {
  display: block !important;
  margin-top: 6px !important;
  color: rgba(255,255,255,.72) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

@media (max-width: 760px) {
  .hasj-card .tier-body.two-cols,
  .hasj-card .best-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .hasj-card .menu-title-row {
    align-items: stretch !important;
    flex-direction: column !important;
    padding: 18px !important;
  }

  .hasj-card .product-dropdown .product-summary {
    min-height: 112px !important;
  }
}


/* HASJ fix: producten onder elkaar + inklappen werkt weer */
.hasj-card .tier-body.two-cols,
.hasj-card .best-grid,
.hasj-card .tier-body.best-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  padding: 0 14px 14px !important;
}

.hasj-card details.product-dropdown,
.hasj-card .product-row,
.hasj-card .best-product {
  width: 100% !important;
  max-width: 100% !important;
}

.hasj-card .tier.is-closed > .tier-body,
.hasj-card .tier.is-closed > .tier-body.two-cols,
.hasj-card .tier.is-closed > .best-grid,
.hasj-card .tier.is-closed > .tier-body.best-grid,
.tier.is-closed > .tier-body {
  display: none !important;
}

.hasj-card.category-is-closed > .tier,
.hasj-card.wiet-is-closed > .tier,
.menu-card.category-is-closed > .tier,
.menu-card.wiet-is-closed > .tier {
  display: none !important;
}

.hasj-card .tier.is-closed .tier-arrow,
.tier.is-closed .tier-arrow {
  transform: rotate(-90deg) !important;
}


/* Plasma static: 5gr en prijs naast elkaar */
.hasj-card .plasma-showcase .clean-price {
  min-width: 104px !important;
  max-width: 120px !important;
  display: grid !important;
  grid-template-columns: auto auto !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  white-space: nowrap !important;
}

.hasj-card .plasma-showcase .clean-price > span,
.hasj-card .plasma-showcase .clean-price > b {
  display: inline-block !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

@media (max-width: 560px) {
  .hasj-card .plasma-showcase .clean-price {
    min-width: 96px !important;
    max-width: 112px !important;
    gap: 8px !important;
    padding: 9px 10px !important;
  }
}


/* Alle prijzen: gram en euro naast elkaar */
.clean-price.price-inline,
.price-pill.clean-price.price-inline,
.hasj-card .clean-price.price-inline,
.hasj-card .plasma-showcase .clean-price.price-inline {
  min-width: 112px !important;
  max-width: 132px !important;
  display: grid !important;
  grid-template-columns: auto auto !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  white-space: nowrap !important;
}

.clean-price.price-inline > span,
.clean-price.price-inline > b {
  display: inline-block !important;
  font-size: 13px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.clean-price > div,
.price-pill.clean-price > div,
.hasj-card .clean-price > div {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: auto auto !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  white-space: nowrap !important;
}

.clean-price > div span,
.clean-price > div b {
  display: inline-block !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

@media (max-width: 560px) {
  .clean-price.price-inline,
  .price-pill.clean-price.price-inline,
  .hasj-card .clean-price.price-inline,
  .hasj-card .plasma-showcase .clean-price.price-inline {
    min-width: 104px !important;
    max-width: 124px !important;
    gap: 8px !important;
    padding: 9px 10px !important;
  }

  .clean-price.price-inline > span,
  .clean-price.price-inline > b,
  .clean-price > div span,
  .clean-price > div b {
    font-size: 12px !important;
  }
}


/* Mooier categorie-menu bovenaan */
.quick-nav {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
  width: min(100%, 980px) !important;
  margin: 24px auto !important;
  padding: 14px !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 12px !important;
  overflow: visible !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 23, 23, .14), transparent 34%),
    radial-gradient(circle at 88% 100%, rgba(0, 229, 255, .11), transparent 36%),
    rgba(0, 0, 0, .58) !important;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, .36),
    inset 0 0 0 1px rgba(255, 255, 255, .035) !important;
  backdrop-filter: blur(14px) !important;
}

.quick-nav a {
  min-width: 0 !important;
  width: 100% !important;
  min-height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 10px !important;
  border-radius: 999px !important;
  color: #fff !important;
  text-align: center !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  letter-spacing: .1px !important;
  background: linear-gradient(135deg, #ff1717, #ff2bd6) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  box-shadow:
    0 10px 22px rgba(255, 23, 23, .16),
    inset 0 1px 0 rgba(255, 255, 255, .22) !important;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease !important;
}

.quick-nav a:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.08) !important;
  box-shadow:
    0 14px 30px rgba(255, 23, 23, .24),
    inset 0 1px 0 rgba(255, 255, 255, .28) !important;
}

.quick-nav a[href="#hasj-menu"] {
  color: #090909 !important;
  background: linear-gradient(135deg, #ffe348, #ff8a00, #ff2bd6) !important;
  box-shadow:
    0 10px 24px rgba(255, 138, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .30) !important;
}

@media (max-width: 900px) {
  .quick-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: min(100%, 720px) !important;
  }
}

@media (max-width: 560px) {
  .quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
    padding: 11px !important;
    border-radius: 22px !important;
    margin: 18px auto !important;
  }

  .quick-nav a {
    min-height: 44px !important;
    padding: 10px 8px !important;
    font-size: 13px !important;
  }

  .quick-nav a[href="#hasj-menu"] {
    grid-column: 1 / -1 !important;
  }
}


/* Logisch en overzichtelijk hoofdmenu */
.quick-nav {
  position: static !important;
  width: min(100%, 760px) !important;
  margin: 24px auto !important;
  padding: 14px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  overflow: visible !important;
  border-radius: 28px !important;
  border: 1px solid rgba(255, 255, 255, .13) !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 23, 23, .16), transparent 36%),
    radial-gradient(circle at 92% 100%, rgba(0, 229, 255, .13), transparent 36%),
    rgba(0, 0, 0, .58) !important;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, .36),
    inset 0 0 0 1px rgba(255, 255, 255, .04) !important;
  backdrop-filter: blur(14px) !important;
}

.quick-nav a {
  min-width: 0 !important;
  width: 100% !important;
  min-height: 58px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 15px 18px !important;
  border-radius: 999px !important;
  text-align: center !important;
  text-decoration: none !important;
  font-size: clamp(15px, 2.5vw, 19px) !important;
  font-weight: 950 !important;
  letter-spacing: .1px !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .24) !important;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease !important;
}

.quick-nav a:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.08) !important;
}

.quick-nav .nav-wiet {
  color: #fff !important;
  background: linear-gradient(135deg, #ff1717, #ff2bd6) !important;
}

.quick-nav .nav-hasj {
  color: #101010 !important;
  background: linear-gradient(135deg, #ffe348, #ff8a00, #ff5ba8) !important;
}

@media (max-width: 560px) {
  .quick-nav {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 12px !important;
    border-radius: 22px !important;
    margin: 18px auto !important;
  }

  .quick-nav a {
    min-height: 52px !important;
    padding: 13px 14px !important;
    font-size: 16px !important;
  }
}


/* Extra reclame-chip voor bezorggebied */
.hero-highlights .service-area-chip {
  color: #070707 !important;
  background: linear-gradient(135deg, #00e5ff, #7dff68, #ffe348) !important;
  box-shadow:
    0 12px 28px rgba(0, 229, 255, .18),
    0 8px 22px rgba(125, 255, 104, .16),
    inset 0 1px 0 rgba(255, 255, 255, .32) !important;
}

