:root {
  color-scheme: dark;
  --bg: #0c0b14;
  --bg-soft: #151323;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #fff8ef;
  --muted: #c8bdad;
  --pink: #ff5aa8;
  --cyan: #74f1dd;
  --amber: #ffd166;
  --green: #80ed99;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 90, 168, 0.22), transparent 24rem),
    radial-gradient(circle at 82% 14%, rgba(116, 241, 221, 0.18), transparent 22rem),
    radial-gradient(circle at 50% 105%, rgba(255, 209, 102, 0.14), transparent 26rem),
    linear-gradient(145deg, #0c0b14 0%, #161323 54%, #0b1016 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header,
.hero,
.section,
.page-hero,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 16px;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 11, 20, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 15rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  color: #15101f;
  background: linear-gradient(135deg, var(--amber), #fff1a6);
  font-weight: 950;
  box-shadow: 0 0 28px rgba(255, 209, 102, 0.42);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.08;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  min-height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.8rem;
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.11);
}

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 4rem);
  padding: clamp(4rem, 8vw, 6rem) 0 3rem;
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.15rem;
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.75rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-copy > p:not(.eyebrow),
.page-hero p {
  max-width: 44rem;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions,
.filter-bar,
.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 2rem;
}

.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1rem;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #160f20;
  background: linear-gradient(135deg, var(--pink), var(--amber));
  box-shadow: 0 16px 42px rgba(255, 90, 168, 0.24);
}

.ghost {
  color: var(--text);
  border-color: var(--line);
  background: var(--panel);
}

.small {
  min-height: 2.55rem;
  padding: 0.58rem 0.78rem;
  color: #091915;
  background: var(--cyan);
}

.hero-card,
.feature,
.product,
.deal,
.story-card,
.hours-card,
.newsletter,
.contact-card,
.contact-form,
.value-card,
.timeline-item,
.generator {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055));
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 2.1rem);
  background:
    linear-gradient(145deg, rgba(12, 11, 20, 0.22), rgba(12, 11, 20, 0.92)),
    url("https://images.unsplash.com/photo-1601924582970-9238bcb495d9?auto=format&fit=crop&w=1000&q=80") center/cover;
}

.product-hero {
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
}

.hero-card::before {
  content: "OPEN";
  position: absolute;
  top: 1.3rem;
  right: -2.6rem;
  rotate: 12deg;
  width: 12rem;
  padding: 0.45rem;
  text-align: center;
  color: #140c1e;
  background: var(--cyan);
  font-weight: 950;
  box-shadow: 0 0 32px rgba(116, 241, 221, 0.5);
}

.open-badge,
.tag,
.deal-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  padding: 0.42rem 0.65rem;
  color: var(--cyan);
  background: rgba(116, 241, 221, 0.13);
  font-size: 0.82rem;
  font-weight: 900;
}

.pulse {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(128, 237, 153, 0.65);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 12px rgba(128, 237, 153, 0);
  }
}

.hero-card h2 {
  margin-top: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.hero-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 3rem;
}

.hero-product-tile {
  position: relative;
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.7rem;
  color: #17100e;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-weight: 950;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-product-tile.is-low-stock {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 90, 168, 0.14);
}

.hero-product-tile.is-out-of-stock {
  color: rgba(23, 16, 14, 0.72);
  cursor: not-allowed;
}

.hero-product-tile.is-out-of-stock::before {
  content: "Uitverkocht";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(12, 11, 20, 0.68);
  font-weight: 950;
}

.hero-product-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 209, 102, 0.85);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.hero-product-tile::after {
  content: "+";
  position: absolute;
  right: 0.55rem;
  top: 0.55rem;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #17100e;
  background: var(--amber);
  box-shadow: 0 8px 18px rgba(255, 209, 102, 0.35);
}

.hero-product-tile.is-out-of-stock::after {
  display: none;
}

.hero-product-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: var(--radius);
  padding: 0.25rem;
}

.hero-product-tile.is-out-of-stock img {
  filter: grayscale(1);
  opacity: 0.42;
}

.hero-product-name,
.hero-stock-note {
  line-height: 1.05;
}

.hero-stock-note {
  color: var(--pink);
  font-size: 0.78rem;
}

strong,
.price {
  color: var(--amber);
}

.price span {
  display: block;
  color: var(--muted);
  text-decoration: line-through;
}

.price strong,
.hero-card strong {
  display: block;
  margin: 0.7rem 0 1.2rem;
  font-size: 2rem;
}

.section,
.page-hero {
  padding: clamp(3.4rem, 7vw, 5rem) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.features,
.products-grid,
.deal-grid,
.values,
.contact-grid,
.timeline {
  display: grid;
  gap: 1rem;
}

.features,
.values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature,
.product,
.deal,
.story-card,
.hours-card,
.newsletter,
.contact-card,
.contact-form,
.value-card,
.timeline-item,
.generator {
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.feature-photo,
.product-photo,
.deal-photo {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  object-fit: contain;
}

.feature-photo {
  height: 11rem;
  margin-bottom: 1rem;
  padding: 0.85rem;
}

.product-photo {
  height: 12.5rem;
  margin: -0.3rem 0 1rem;
  padding: 1rem;
}

.deal-photo {
  height: 11rem;
  margin-bottom: 1rem;
  padding: 0.9rem;
}

.product-meta {
  width: fit-content;
  margin-bottom: 0.7rem;
  border-radius: var(--radius);
  padding: 0.32rem 0.55rem;
  color: var(--cyan);
  background: rgba(116, 241, 221, 0.13);
  font-size: 0.78rem;
  font-weight: 900;
}

.text-link {
  color: var(--cyan);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  gap: 1rem;
}

.about-hero h1 {
  max-width: 14ch;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.founder-story {
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.founder-story p {
  max-width: 68ch;
}

.founder-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 30rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.7rem);
  background:
    linear-gradient(145deg, rgba(116, 241, 221, 0.18), rgba(255, 90, 168, 0.13)),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.founder-badge {
  display: grid;
  gap: 0.4rem;
  max-width: 18rem;
}

.founder-badge span {
  color: var(--amber);
  font-size: clamp(4.5rem, 12vw, 7rem);
  font-weight: 950;
  line-height: 0.85;
}

.founder-badge strong {
  color: var(--text);
  font-size: 1.2rem;
}

.founder-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.founder-shelf img {
  width: 100%;
  height: 9rem;
  border-radius: var(--radius);
  padding: 0.75rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}

.hours-list li,
dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.status-message,
.generated-code {
  min-height: 1.8rem;
  color: var(--amber);
  font-weight: 900;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  outline: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(116, 241, 221, 0.12);
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 800;
}

.filter-btn.active,
.filter-btn:hover {
  color: #17100e;
  background: var(--amber);
}

.products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product {
  min-height: 27rem;
  display: flex;
  flex-direction: column;
}

.product strong {
  margin: auto 0 1rem;
  font-size: 1.35rem;
}

.product.is-hidden {
  display: none;
}

.deal-grid {
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
}

.deal {
  position: relative;
  min-height: 27rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.deal.big {
  min-height: 27rem;
  background:
    linear-gradient(145deg, rgba(255, 90, 168, 0.22), rgba(255,255,255,0.055)),
    rgba(255, 255, 255, 0.08);
}

.deal .price {
  margin-top: auto;
}

.generator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.generated-code {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.18);
}

.timeline-item {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1.4rem;
}

.timeline-item > span {
  color: var(--amber);
  font-size: 1.5rem;
  font-weight: 950;
}

.contact-grid {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  font-weight: 800;
}

.mini-map {
  min-height: 14rem;
  display: grid;
  place-items: center;
  margin-top: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255,90,168,0.28), transparent 34%);
  background-size: 34px 34px, 34px 34px, auto;
}

.mini-map span {
  color: var(--amber);
  font-size: 3.5rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.site-footer a {
  color: var(--text);
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 20rem;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: #17100e;
  background: var(--amber);
  box-shadow: var(--shadow);
  font-weight: 900;
  opacity: 0;
  transform: translateY(140%);
  transition: 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 11, 20, 0.96);
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .section-intro,
  .split,
  .founder-section,
  .newsletter,
  .deal-grid,
  .generator,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .features,
  .products-grid,
  .values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .page-hero,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.7rem);
  }

  .features,
  .products-grid,
  .values {
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .site-footer {
    flex-direction: column;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.nav {
  justify-content: flex-end;
}

.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  border: 1px solid rgba(255, 209, 102, 0.42);
  border-radius: var(--radius);
  padding: 0.62rem 0.78rem;
  color: #17100e;
  background: var(--amber);
  cursor: pointer;
  font-weight: 950;
  box-shadow: 0 12px 32px rgba(255, 209, 102, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cart-toggle strong {
  min-width: 1.65rem;
  min-height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--text);
  background: #17100e;
  font-size: 0.8rem;
}

.cart-toggle.cart-pulse {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 0 5px rgba(128, 237, 153, 0.16), 0 18px 42px rgba(255, 209, 102, 0.32);
}

.cart-signal {
  position: absolute;
  right: -0.4rem;
  top: -0.85rem;
  min-width: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  color: #07130f;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(128, 237, 153, 0.32);
  font-size: 0.82rem;
  font-weight: 950;
  pointer-events: none;
  opacity: 0;
  transform: translateY(0.45rem) scale(0.82);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-signal.show {
  opacity: 1;
  transform: translateY(-0.15rem) scale(1);
}

.full-width {
  width: 100%;
}

.shop-shell {
  display: grid;
  grid-template-columns: minmax(14rem, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  padding-top: 0;
}

.catalog-hero {
  padding: clamp(2.2rem, 4.5vw, 3.4rem) 0 2rem;
}

.catalog-hero h1 {
  max-width: 17ch;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
}

.catalog-hero p {
  max-width: 52rem;
}

.shop-panel,
.shop-toolbar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));
  box-shadow: var(--shadow);
}

.shop-panel {
  position: sticky;
  top: 7rem;
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
}

.shop-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.shop-stats {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0;
}

.shop-stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0.7rem;
}

.shop-stats span,
.catalog-summary,
.product-line span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.shop-main {
  min-width: 0;
}

.shop-toolbar {
  position: sticky;
  top: 7rem;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem;
  backdrop-filter: blur(18px);
}

.catalog-summary {
  margin: 0;
  white-space: nowrap;
}

.catalog-summary span {
  color: var(--amber);
  font-weight: 950;
}

.product-catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.shop-product {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06)),
    rgba(255,255,255,0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.shop-product.is-low-stock,
.deal.is-low-stock {
  border-color: rgba(255, 90, 168, 0.62);
  box-shadow: 0 0 0 3px rgba(255, 90, 168, 0.1), var(--shadow);
}

.shop-product.is-out-of-stock,
.deal.is-out-of-stock {
  border-color: rgba(255, 255, 255, 0.22);
}

.shop-product.is-out-of-stock::after,
.deal.is-out-of-stock::after {
  content: "Uitverkocht";
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(12, 11, 20, 0.68);
  font-size: 1.4rem;
  font-weight: 950;
  pointer-events: none;
}

.shop-product:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 209, 102, 0.45);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.07)),
    rgba(255,255,255,0.08);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 13.8rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 209, 102, 0.18), transparent 9rem),
    rgba(255,255,255,0.08);
}

.shop-product .product-photo {
  height: 11.8rem;
  margin: 0;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
}

.shop-product.is-out-of-stock .product-photo,
.deal.is-out-of-stock .deal-photo {
  filter: grayscale(1);
  opacity: 0.5;
}

.stock-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  border-radius: var(--radius);
  padding: 0.3rem 0.52rem;
  color: #17100e;
  background: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
}

.stock-note {
  min-height: 1.3rem;
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 950;
}

.stock-note[hidden] {
  display: none;
}

.stock-note.is-low {
  color: var(--pink);
}

.stock-note.is-out {
  color: var(--muted);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.product-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.shop-product h2 {
  margin-bottom: 0.45rem;
  font-size: 1.22rem;
  line-height: 1.15;
}

.shop-product p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
}

.shop-product .product-price {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
  white-space: nowrap;
}

.product-bottom .button {
  min-width: 7.3rem;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.55);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(27rem, calc(100vw - 20px));
  height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 0.8rem;
  border-left: 1px solid var(--line);
  padding: 1rem;
  background:
    radial-gradient(circle at 90% 0%, rgba(116, 241, 221, 0.16), transparent 14rem),
    linear-gradient(180deg, #141220, #0d0c15);
  box-shadow: -22px 0 70px rgba(0, 0, 0, 0.48);
  transform: translateX(110%);
  transition: transform 0.26s ease;
}

body.cart-open {
  overflow: hidden;
}

body.cart-open .cart-backdrop {
  visibility: visible;
  opacity: 1;
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0.9rem;
}

.cart-head h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.cart-close,
.cart-controls button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
}

.cart-close {
  min-height: 2.55rem;
  padding: 0.55rem 0.7rem;
}

.cart-items {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  overflow: auto;
  padding-right: 0.2rem;
}

.cart-empty {
  display: grid;
  place-items: center;
  min-height: 8rem;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: var(--radius);
  margin: 0;
  padding: 1rem;
  text-align: center;
}

.cart-warning {
  border: 1px solid rgba(255, 90, 168, 0.42);
  border-radius: var(--radius);
  margin: 0;
  padding: 0.75rem;
  color: var(--text);
  background: rgba(255, 90, 168, 0.14);
  font-size: 0.94rem;
  font-weight: 900;
}

.cart-warning[hidden] {
  display: none;
}

.cart-empty[hidden] {
  display: none;
}

.cart-item {
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr);
  gap: 0.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.75rem;
  background: rgba(255,255,255,0.07);
}

.cart-item.has-stock-problem {
  border-color: rgba(255, 90, 168, 0.6);
  background: rgba(255, 90, 168, 0.12);
}

.cart-item img {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: var(--radius);
  padding: 0.35rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
}

.cart-item-info {
  min-width: 0;
}

.cart-item-info strong,
.cart-item-info span,
.cart-item-info em {
  display: block;
}

.cart-item-info strong {
  color: var(--text);
  line-height: 1.15;
}

.cart-item-info span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item-info em {
  margin-top: 0.25rem;
  color: var(--pink);
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 950;
}

.cart-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.cart-controls button {
  min-width: 2.1rem;
  min-height: 2.1rem;
}

.cart-controls span {
  min-width: 1.8rem;
  color: var(--amber);
  text-align: center;
  font-weight: 950;
}

.cart-controls .cart-remove {
  margin-left: auto;
  padding-inline: 0.65rem;
}

.cart-footer {
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.9rem;
}

.checkout-form {
  display: grid;
  gap: 0.55rem;
}

.checkout-form label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
}

.checkout-form input,
.checkout-form textarea {
  padding: 0.72rem 0.8rem;
  font-size: 0.95rem;
}

.checkout-form textarea {
  min-height: 5.2rem;
}

.cart-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
}

.cart-total-line span {
  color: var(--muted);
}

.cart-total-line strong {
  font-size: 1.5rem;
}

.order-hero h1 {
  max-width: 13ch;
}

.order-confirmation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 0;
}

.order-card,
.payment-card,
.delivery-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.7rem);
  background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.055));
  box-shadow: var(--shadow);
}

.order-card {
  background:
    linear-gradient(145deg, rgba(128, 237, 153, 0.16), rgba(255,255,255,0.055)),
    rgba(255,255,255,0.08);
}

.order-card h2,
.payment-card h2,
.delivery-card h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.order-lines {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0;
  padding: 0;
}

.order-lines li,
.payment-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0.65rem;
}

.payment-card {
  display: grid;
  gap: 0.8rem;
}

.payment-card.is-expired {
  background:
    linear-gradient(145deg, rgba(255, 92, 92, 0.17), rgba(255,255,255,0.055)),
    rgba(255,255,255,0.08);
}

.reservation-box {
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  background: rgba(255, 209, 102, 0.12);
}

.reservation-box span,
.reservation-box small,
.expired-message {
  color: var(--muted);
}

.reservation-box strong {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--yellow);
}

.payment-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.payment-list dt,
.payment-note {
  color: var(--muted);
}

.payment-list dd {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  text-align: right;
}

.payment-message {
  border: 1px solid rgba(128, 237, 153, 0.34);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: #07130f;
  background: var(--green);
  font-size: 1.2rem;
  font-weight: 950;
}

.delivery-card {
  grid-column: 1 / -1;
}

.stock-badge.is-low {
  background: var(--pink);
}

.stock-badge.is-out {
  color: var(--text);
  background: rgba(255,255,255,0.16);
}

@media (max-width: 1040px) {
  .shop-shell {
    grid-template-columns: 1fr;
  }

  .shop-panel,
  .shop-toolbar {
    position: static;
  }

  .shop-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-stats div {
    display: grid;
    gap: 0.15rem;
  }

  .product-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-confirmation {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 0.65rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
  }

  .cart-toggle span {
    display: none;
  }

  .cart-toggle .cart-signal {
    display: grid;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-summary {
    white-space: normal;
  }

  .shop-stats,
  .product-catalog {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 12.2rem;
  }

  .cart-drawer {
    width: min(100vw, 27rem);
  }

  .cart-item {
    grid-template-columns: 4.2rem minmax(0, 1fr);
  }

  .cart-item img {
    width: 4.2rem;
    height: 4.2rem;
  }
}
