:root {
  --cream: #fffced;
  --paper: #fffef8;
  --choc: #5c331c;
  --choc-deep: #3a1f12;
  --choc-soft: #6a4030;
  --line: rgba(58, 31, 18, 0.14);
  --pink: #e8b4c8;
  --sky: #9fd0f0;
  --shadow: 0 28px 60px -32px rgba(58, 31, 18, 0.45);
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --header: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--cream);
  color: var(--choc);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.locked {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

::selection {
  background: var(--choc);
  color: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(3.4rem, 6.6vw, 6.5rem);
}

h1 span,
h1 em {
  display: block;
}

h1 em,
h2 em,
.footer-slogan em {
  font-style: italic;
  font-weight: 500;
}

h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.5rem, 4.6vw, 4.15rem);
}

h3 {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 120;
  background: var(--cream);
  color: var(--choc);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}

.skip:focus {
  top: 0.8rem;
}

.wrap {
  width: min(1120px, calc(100% - 3rem));
  max-width: 100%;
  margin-inline: auto;
  min-width: 0;
}

.band {
  padding: 5.2rem 0;
}

.kicker {
  margin: 0 0 0.85rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--choc-soft);
}

.lead,
.section-lead {
  max-width: min(42ch, 100%);
  color: var(--choc-soft);
  font-weight: 350;
  font-size: 1.08rem;
  line-height: 1.6;
}

.announce {
  background: var(--choc-deep);
  color: var(--cream);
  text-align: center;
  padding: 0.58rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: grid;
  gap: 0.35rem;
}

.announce p {
  text-wrap: balance;
  margin: 0;
}

.announce .closed-banner,
.announce .actie-banner {
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  opacity: 0.92;
}

.announce .actie-banner {
  color: #f6d9a8;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 252, 237, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.nav-wrap.scrolled {
  border-bottom-color: var(--line);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 1.15rem;
}

@media (min-width: 861px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.cart-icon {
  display: block;
  flex-shrink: 0;
}

.legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.track-wrap {
  max-width: 36rem;
}

.track-form {
  display: grid;
  gap: 1.1rem;
  margin: 1.7rem 0 1.5rem;
}

.track-result {
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
}

.track-result h2 {
  margin-bottom: 0.5rem;
}

.track-result .fine {
  margin-top: 0.7rem;
  color: var(--choc-soft);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 1.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
}

.nav-links a:hover,
.nav-links a.is-active {
  box-shadow: inset 0 -1px 0 currentColor;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: var(--choc);
  color: var(--cream);
  padding: 0.72rem 1.05rem 0.72rem 1.15rem;
  font-weight: 550;
}

.cart-btn:hover {
  background: var(--choc-deep);
}

.count {
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--choc);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 650;
}

.count.pop {
  animation: pop 0.35s ease;
}

@keyframes pop {
  50% {
    transform: scale(1.18);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.92rem 1.35rem;
  font-weight: 550;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

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

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn-fill {
  background: var(--choc);
  color: var(--cream);
}

.btn-fill:hover {
  background: var(--choc-deep);
}

.btn-line {
  background: transparent;
  color: var(--choc);
  box-shadow: inset 0 0 0 1.5px rgba(92, 51, 28, 0.55);
}

.btn-line:hover {
  background: rgba(92, 51, 28, 0.06);
}

.btn-light {
  background: var(--cream);
  color: var(--choc-deep);
}

.btn-light:hover {
  background: #fff;
}

.btn-sm {
  padding: 0.68rem 0.95rem;
  font-size: 0.95rem;
}

.hero {
  min-height: calc(100svh - 120px);
  display: grid;
  align-items: center;
  padding: 1.8rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(1.8rem, 4.5vw, 4.5rem);
  align-items: center;
}

.hero-grid > *,
.special-panel > *,
.pick-grid > *,
.gift-panel > *,
.section-head > * {
  min-width: 0;
}

.hero-copy > * {
  animation: rise 0.9s ease both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.32s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.85rem;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.3rem;
  list-style: none;
  margin: 1.9rem 0 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
}

.facts strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 560;
  letter-spacing: -0.03em;
}

.facts span {
  color: var(--choc-soft);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(232, 180, 200, 0.55), transparent 58%),
    radial-gradient(circle at 70% 60%, rgba(159, 208, 240, 0.45), transparent 60%);
  filter: blur(6px);
  z-index: 0;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 30px rgba(58, 31, 18, 0.12));
  animation: rise 1.1s ease 0.15s both;
}

.marquee {
  position: relative;
  overflow: hidden;
  contain: paint;
  height: 3.6rem;
  border-block: 1px solid var(--line);
  max-width: 100%;
  user-select: none;
}

.marquee-track {
  position: absolute;
  left: 0;
  top: 0.85rem;
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  white-space: nowrap;
}

.marquee-item i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--choc);
  display: block;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

main {
  max-width: 100%;
  overflow-x: clip;
}

.special-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.4rem;
  align-items: center;
  background: var(--choc-deep);
  color: var(--cream);
  border-radius: 36px;
  padding: clamp(1.9rem, 4.5vw, 4.4rem);
  position: relative;
  overflow: hidden;
}

.special-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -40px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(232, 180, 200, 0.22), transparent 68%);
  pointer-events: none;
}

.special-panel .kicker,
.special-panel .spot-copy,
.special-panel .fine {
  color: rgba(255, 252, 237, 0.76);
}

.special-panel h2 {
  font-size: clamp(3rem, 5.4vw, 4.8rem);
}

.oven {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
}

.oven i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(232, 180, 200, 0.7);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(232, 180, 200, 0);
  }
}

.spot-copy {
  max-width: 38ch;
  font-size: 1.12rem;
  line-height: 1.55;
  margin-bottom: 0.7rem;
}

.fine {
  font-size: 0.86rem;
  margin-bottom: 1.4rem;
}

.buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.price {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.spot-art,
.pick-art,
.gift-art {
  display: grid;
  place-items: center;
}

.spot-art svg,
.pick-art svg {
  width: min(340px, 100%);
  height: auto;
}

.pick-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.8rem, 4.5vw, 4.5rem);
  align-items: center;
}

.pick-art {
  background:
    radial-gradient(circle at 50% 45%, rgba(232, 180, 200, 0.35), transparent 62%),
    #f6efd8;
  border-radius: 40px;
  min-height: 380px;
  padding: 2rem;
}

.pick-grid h2 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.8rem 2.4rem;
  align-items: end;
  margin-bottom: 2.25rem;
}

.section-lead {
  margin-top: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.05rem 1.05rem 1.3rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card.is-off {
  opacity: 0.72;
}

/* Nieuw / Limited: elegant thin rim on cream cards */
.card.card-nieuw {
  border-color: rgba(92, 51, 28, 0.38);
  box-shadow: 0 0 0 1px rgba(92, 51, 28, 0.14);
}

.card.card-limited {
  border-color: color-mix(in srgb, var(--pink) 55%, var(--choc) 45%);
  box-shadow: 0 0 0 1px rgba(232, 180, 200, 0.42);
}

.card.card-nieuw.card-limited {
  border-color: rgba(92, 51, 28, 0.4);
  box-shadow:
    0 0 0 1px rgba(92, 51, 28, 0.12),
    0 0 0 2px rgba(232, 180, 200, 0.35);
}

.card.card-nieuw:hover,
.card.card-limited:hover {
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(92, 51, 28, 0.16);
}

.card.card-limited:hover {
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(232, 180, 200, 0.5);
}

.card.card-nieuw.card-limited:hover {
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(92, 51, 28, 0.14),
    0 0 0 2px rgba(232, 180, 200, 0.4);
}

.special-panel.card-nieuw {
  box-shadow: inset 0 0 0 1px rgba(255, 252, 237, 0.28);
}

.special-panel.card-limited {
  box-shadow: inset 0 0 0 1px rgba(232, 180, 200, 0.45);
}

.special-panel.card-nieuw.card-limited {
  box-shadow:
    inset 0 0 0 1px rgba(255, 252, 237, 0.22),
    inset 0 0 0 2px rgba(232, 180, 200, 0.35);
}

.card-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f1de;
  border-radius: 18px;
  min-height: 190px;
  margin-bottom: 1.15rem;
}

.card-art svg {
  width: 148px;
  height: auto;
}

.badges {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: var(--choc);
  color: var(--cream);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-rec {
  background: transparent;
  color: var(--choc);
  box-shadow: inset 0 0 0 1px rgba(92, 51, 28, 0.4);
}

.badge-off {
  background: rgba(92, 51, 28, 0.12);
  color: var(--choc-soft);
}

.card-tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  min-height: 1.2em;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--choc-soft);
  margin-bottom: 0.3rem;
}

.card-tag:empty {
  min-height: 0;
  margin-bottom: 0;
}

.card-tag-base {
  color: inherit;
}

.soft-pick-nieuw {
  color: var(--choc);
  font-weight: 600;
}

.soft-pick-limited {
  color: var(--choc);
  font-weight: 600;
}

.card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.card-desc {
  color: var(--choc-soft);
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.allergens {
  color: var(--choc-soft);
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.card .buy-row {
  margin-top: auto;
}

.card .price {
  font-size: 1.55rem;
}

.gift-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.4rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(1.8rem, 4.5vw, 3.8rem);
  background:
    radial-gradient(520px 240px at 92% 50%, rgba(232, 180, 200, 0.35), transparent 70%),
    var(--paper);
}

.gift-art svg {
  width: min(260px, 100%);
}

.step-list {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.55rem;
}

.step-list li {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.step-list span {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--choc-soft);
}

.step-list h3 {
  margin-bottom: 0.45rem;
}

.step-list p {
  color: var(--choc-soft);
  max-width: 28ch;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.address {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.hours-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.4rem 1.4rem 1.2rem;
}

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

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.hours li:last-child {
  border-bottom: 0;
}

.visit-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.visit-links a {
  text-decoration: none;
  font-weight: 550;
}

.visit-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  background: var(--choc-deep);
  color: var(--cream);
  padding: 5.2rem 0 2rem;
}

.site-footer .kicker,
.legal {
  color: rgba(255, 252, 237, 0.74);
}

.footer-slogan {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.4rem;
  align-items: end;
  padding-top: 1.85rem;
  border-top: 1px solid rgba(255, 252, 237, 0.16);
}

.footer-logo img {
  height: 110px;
  width: auto;
}

.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-self: end;
}

.footer-contact a {
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  font-size: 0.88rem;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  border: 0;
  padding: 0;
  background: rgba(58, 31, 18, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: min(440px, 100%);
  background: var(--cream);
  color: var(--choc);
  display: flex;
  flex-direction: column;
  transform: translateX(104%);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: -24px 0 60px rgba(58, 31, 18, 0.16);
}

.drawer.is-open {
  transform: none;
}

.drawer-head,
.drawer-foot {
  padding: 1.15rem 1.3rem;
  flex-shrink: 0;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.drawer-head h2 {
  font-size: 2.2rem;
}

.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 0 1.3rem 1.2rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 1.5rem;
  line-height: 1;
}

.site-footer .icon-btn,
.special-panel .icon-btn {
  color: var(--cream);
}

.drawer .icon-btn:hover,
.dialog-head .icon-btn:hover {
  background: rgba(92, 51, 28, 0.06);
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem 1.2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 560;
  letter-spacing: -0.02em;
}

.line-note,
.line-unit {
  color: var(--choc-soft);
  font-size: 0.88rem;
}

.cart-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

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

.stepper button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--choc);
}

.stepper button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.stepper b {
  min-width: 1.2rem;
  text-align: center;
  font-weight: 600;
}

.text-btn {
  border: 0;
  background: none;
  padding: 0;
  color: var(--choc-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.88rem;
}

.cart-empty {
  text-align: center;
  padding: 2.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.suggest {
  margin-top: 1.1rem;
  padding: 0.9rem;
  border-radius: 18px;
  background: #f6efd8;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.suggest p {
  font-size: 0.92rem;
}

.suggest strong {
  font-family: var(--serif);
  font-weight: 560;
}

.cart-totals {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.15rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.05rem;
}

.total-row--sub {
  font-size: 0.95rem;
  color: var(--choc-soft);
}

.total-row strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 560;
}

.fee-note {
  color: var(--choc-soft);
  font-size: 0.88rem;
  margin: 0;
}

.ship-date-cart {
  margin: 0;
  font-size: 0.88rem;
  color: var(--choc-soft);
  line-height: 1.4;
}

.ship-date-block {
  margin: 0.15rem 0 0.85rem;
  padding: 0.7rem 0.85rem;
  background: rgba(58, 31, 18, 0.05);
  border-radius: 10px;
}

.ship-date-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--choc-soft);
  margin-bottom: 0.2rem;
}

.ship-date-note {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 560;
  color: var(--choc);
  line-height: 1.45;
}

.soft-pick-actie {
  background: #c45c26;
  color: #fffced;
}

.payment-trust {
  margin: 0.35rem 0 0.75rem;
  display: grid;
  gap: 0.45rem;
}

.payment-trust-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--choc);
}

.payment-trust-text strong {
  font-weight: 600;
}

.payment-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.pay-badge {
  display: inline-flex;
  line-height: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(58, 31, 18, 0.08);
}

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

.field,
.method {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  border: 0;
  padding: 0;
}

.field span,
.method legend {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #5c331c 50%),
    linear-gradient(135deg, #5c331c 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--choc);
  outline-offset: 1px;
}

.back-btn {
  margin-bottom: 1rem;
}

.choice-row {
  display: flex;
  gap: 0.55rem;
}

.choice-row label {
  flex: 1;
  position: relative;
}

.choice-row input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.choice-row span {
  display: block;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  padding: 0.8rem 0.5rem;
  letter-spacing: 0;
  text-transform: none;
  font-size: 1rem;
  font-weight: 550;
}

.choice-row label:has(input:checked) span,
.choice-row label:has(input:focus-visible) span {
  background: var(--choc);
  color: var(--cream);
  border-color: var(--choc);
}

.order-number {
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  margin-bottom: 0.6rem;
}

#done-text {
  color: var(--choc-soft);
  margin-bottom: 1rem;
}

.done-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.done-summary {
  border-top: 1px solid var(--line);
  padding-top: 0.6rem;
}

.done-summary li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  list-style: none;
}

.done-summary ul {
  margin: 0;
  padding: 0;
}

dialog {
  border: 0;
  padding: 0;
  background: transparent;
  width: min(560px, calc(100% - 1.5rem));
  color: var(--choc);
}

dialog::backdrop {
  background: rgba(58, 31, 18, 0.48);
  backdrop-filter: blur(5px);
}

.box-form {
  background: var(--cream);
  border-radius: 28px;
  padding: 1.15rem 1.15rem 1.2rem;
  max-height: min(86vh, 760px);
  overflow: auto;
  box-shadow: var(--shadow);
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.dialog-head h2 {
  font-size: 2.3rem;
}

.box-status {
  color: var(--choc-soft);
  margin-bottom: 0.4rem;
}

.pick-row {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.pick-row svg {
  width: 46px;
  height: 46px;
}

.pick-row strong {
  display: block;
  font-weight: 550;
}

.pick-row small {
  color: var(--choc-soft);
}

.surprise {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1rem 0;
  padding: 0.9rem;
  border-radius: 16px;
  background: #f6efd8;
  cursor: pointer;
}

.surprise small {
  display: block;
  color: var(--choc-soft);
}

.box-confirm {
  width: 100%;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.3rem;
  z-index: 100;
  transform: translateX(-50%) translateY(10px);
  background: var(--choc-deep);
  color: var(--cream);
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: calc(100% - 2rem);
}

.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cart-bar {
  display: none;
}

.noscript {
  padding: 1rem;
  text-align: center;
}

:focus-visible {
  outline: 2px solid var(--choc);
  outline-offset: 3px;
}

.reveal {
  animation: rise 0.8s ease both;
}

@media (max-width: 980px) {
  .hero-grid,
  .special-panel,
  .pick-grid,
  .gift-panel,
  .visit-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .grid,
  .step-list {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  }

  .hero-visual {
    order: -1;
  }

  .hero {
    min-height: 0;
    padding-top: 1rem;
  }

  .hero-logo {
    width: min(340px, 78vw);
  }

  .pick-art {
    min-height: 260px;
  }

  .footer-grid,
  .footer-contact {
    text-align: left;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .nav.wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0.7rem;
    gap: 0.4rem;
    box-sizing: border-box;
  }

  .nav-logo {
    flex: 0 0 auto;
    max-width: 46px;
  }

  .nav-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .cart-btn .cart-icon {
    width: 18px;
    height: 18px;
  }

  .nav-actions {
    position: static;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    gap: 0.3rem;
    max-width: calc(100% - 52px);
    z-index: 2;
  }

  .nav-toggle,
  .cart-btn {
    flex: 0 0 auto;
    padding: 0.38rem 0.58rem;
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
  }

  .cart-btn {
    gap: 0.3rem;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
    flex-direction: column;
    gap: 0.2rem;
    margin: 0;
    padding: 0.4rem 1.25rem 1rem;
    background: rgba(255, 252, 237, 0.97);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.7rem 0;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .announce {
    letter-spacing: 0.04em;
    font-size: 0.64rem;
    line-height: 1.45;
  }

  h1 {
    font-size: clamp(2.15rem, 9vw, 3.3rem);
  }

  .hero-logo {
    width: min(280px, 92%);
  }

  .special-panel .buy-row,
  .pick-grid .buy-row,
  .gift-panel .buy-row {
    flex-direction: column;
    align-items: stretch;
  }

  .special-panel .buy-row .btn,
  .pick-grid .buy-row .btn,
  .gift-panel .buy-row .btn {
    width: 100%;
  }

  .grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .band {
    padding: 4.2rem 0;
  }

  .cart-bar:not([hidden]) {
    display: flex;
    position: fixed;
    z-index: 35;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    justify-content: space-between;
    align-items: center;
    background: var(--choc);
    color: var(--cream);
    border-radius: 999px;
    padding: 0.95rem 1.15rem;
    box-shadow: var(--shadow);
  }

  body.has-cart {
    padding-bottom: 5.2rem;
  }

  body.has-cart .toast {
    bottom: 5.3rem;
  }

  body.locked .cart-bar {
    display: none;
  }
}

.slider-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.2rem;
  margin-bottom: 1.3rem;
}

.slider-nav {
  display: flex;
  gap: 0.55rem;
}

.slider {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 36px;
}

.slider-track {
  display: flex;
  width: 100%;
  min-width: 0;
  transition: transform 0.55s ease;
}

.slider .special-panel {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border-radius: 0;
  box-sizing: border-box;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(92, 51, 28, 0.28);
  cursor: pointer;
}

.slider-dot.is-on {
  width: 22px;
  background: var(--choc);
}

.rec-row,
.box-grid {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.35rem;
}

.soft-pick {
  color: var(--choc-soft);
  font-weight: 500;
}

.soft-pick-nieuw {
  color: var(--choc);
  font-weight: 600;
}

.soft-pick-limited {
  color: var(--choc);
  font-weight: 600;
}

.special-panel .soft-pick {
  color: rgba(255, 252, 237, 0.82);
}

.special-panel .soft-pick-nieuw {
  color: rgba(255, 252, 237, 0.95);
}

.special-panel .soft-pick-limited {
  color: rgba(255, 252, 237, 0.95);
}

.special-panel .fine {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
}

.price-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.price-old {
  color: var(--choc-soft);
  font-size: 0.85rem;
}

.special-panel .price-old {
  color: rgba(255, 252, 237, 0.62);
}

.price-ask {
  font-family: var(--serif);
  font-style: italic;
}

.cookie-photo {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

.card-art .cookie-photo {
  position: absolute;
  inset: 0;
  max-height: none;
}

.spot-art .cookie-photo {
  width: min(100%, 340px);
  height: 340px;
  margin-inline: auto;
  border-radius: 28px;
}

/* ——— Cookie consent ——— */
.cookie-consent {
  position: fixed;
  z-index: 80;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: min(520px, calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem 1.2rem;
  background:
    linear-gradient(145deg, rgba(255, 252, 237, 0.98), rgba(255, 248, 230, 0.96)),
    var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 50px -28px rgba(58, 31, 18, 0.55);
  color: var(--choc);
  animation: consent-in 0.35s ease both;
}

.cookie-consent-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  grid-row: span 2;
}

.cookie-consent-copy {
  grid-column: 2;
}

.cookie-consent-copy .kicker {
  margin: 0 0 0.25rem;
}

.cookie-consent-copy p:last-child {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--choc-soft);
}

.cookie-consent-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.cookie-consent.is-out {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

@keyframes consent-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .cookie-consent {
    grid-template-columns: auto 1fr;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .cookie-consent-actions {
    grid-column: 1 / -1;
  }

  .cookie-consent-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
