/* =========================================================
   Sweet N' Desserts — stylesheet
   1. Tokens      5. Hero
   2. Reset       6. Sections & cards
   3. Utilities   7. Footer
   4. Header      8. Responsive & motion
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Sampled from the reference site and the Sweet N' Desserts badge */
  --pink:        #E40D6A;  /* hero + section fills, buttons, prices (4.6:1 w/ white) */
  --pink-deep:   #B80B56;  /* hover, and pink text on pale-pink backgrounds */
  --pink-soft:   #FBD6E6;  /* pale sections, blobs, circles behind product shots */
  --pink-ring:   #E3699E;  /* the badge's scalloped ring — borders and accents */
  --olive:       #444034;  /* the badge's dark centre: headings, body, footer fill */
  --olive-soft:  #635D4D;  /* secondary text */
  --white:       #FFFFFF;
  --off:         #FFF9FB;  /* barely-there pink white for alternating bands */
  --butter:      #FFC94D;  /* stars and focus rings only */

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  --step--1: clamp(0.83rem, 0.8rem + 0.2vw, 0.94rem);
  --step-0:  clamp(1rem, 0.96rem + 0.25vw, 1.13rem);
  --step-1:  clamp(1.25rem, 1.16rem + 0.45vw, 1.5rem);
  --step-2:  clamp(1.56rem, 1.4rem + 0.8vw, 2rem);
  --step-3:  clamp(1.95rem, 1.66rem + 1.4vw, 2.75rem);
  --step-4:  clamp(2.44rem, 1.94rem + 2.5vw, 3.75rem);

  --s-1: 4px;  --s-2: 8px;  --s-3: 16px; --s-4: 24px;
  --s-5: 32px; --s-6: 48px; --s-7: 64px; --s-8: 96px; --s-9: 128px;

  --r-sm: 10px; --r-md: 20px; --r-lg: 32px; --r-pill: 999px;
  --shadow-card:  0 8px 24px rgba(43, 24, 16, 0.08);
  --shadow-hover: 0 16px 40px rgba(43, 24, 16, 0.14);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 88px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--olive-soft);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--olive);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-3);
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p  { margin: 0 0 var(--s-3); max-width: 65ch; }
a  { color: var(--pink-deep); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--butter); outline-offset: 2px; border-radius: 4px; }

/* ---------- 3. Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--s-8); position: relative; overflow: hidden; }
.section--tint { background: var(--pink-soft); }
.section--dark { background: var(--olive); }
.section--pink { background: var(--pink); }
.section--pink h1, .section--pink h2, .section--pink h3 { color: var(--white); }
.section--pink p, .section--pink li { color: var(--white); }
.section--pink .link-more { color: var(--white); }
.section--soft { background: var(--pink-soft); }
.section__head { text-align: center; max-width: 56ch; margin: 0 auto var(--s-6); }
.section__head p { margin-inline: auto; }
.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;
}
.skip-link {
  position: absolute; left: var(--s-3); top: -100px; z-index: 999;
  background: var(--pink-deep); color: #fff; padding: 12px 20px; border-radius: var(--r-pill);
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: var(--s-3); }

/* Decorative motif */
.blob { position: absolute; pointer-events: none; z-index: 0; }
.blob svg { display: block; }
.section > .container { position: relative; z-index: 1; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-0);
  padding: 16px 32px; border-radius: var(--r-pill); border: 2px solid transparent;
  text-decoration: none; transition: transform .16s ease-out, background-color .16s, box-shadow .16s, color .16s;
}
.btn--primary { background: var(--pink-deep); color: #fff; }
.btn--primary:hover { background: var(--pink-deep); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn--secondary { background: transparent; border-color: var(--pink-deep); color: var(--pink-deep); }
.btn--secondary:hover { background: var(--pink-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn--block { width: 100%; }
.section--pink .btn--primary, .hero .btn--primary { background: var(--white); color: var(--pink-deep); }
.section--pink .btn--primary:hover, .hero .btn--primary:hover { background: var(--pink-soft); color: var(--pink-deep); }
.section--pink .btn--secondary, .hero .btn--secondary { border-color: var(--white); color: var(--white); }
.section--pink .btn--secondary:hover, .hero .btn--secondary:hover { background: var(--white); color: var(--pink-deep); }
.btn--hero { padding: 18px 34px; letter-spacing: .04em; }
.btn[aria-disabled="true"] { background: #E3DAD2; color: #8A7A70; border-color: transparent; pointer-events: none; }
.link-more {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  color: var(--pink-deep); text-decoration: none; font-size: var(--step-1);
}
.link-more:hover { text-decoration: underline; }

/* Badges & pills */
.badge {
  position: absolute; top: var(--s-3); left: var(--s-3); z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step--1);
  padding: 5px 14px; border-radius: var(--r-pill);
}
.badge--popular { background: var(--butter); color: var(--olive); }
.badge--soldout { background: var(--olive); color: var(--off); }
.status-pill {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-display); font-weight: 700; font-size: var(--step--1);
  padding: 7px 16px; border-radius: var(--r-pill); background: var(--white); box-shadow: var(--shadow-card);
}
.status-pill .dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.status-pill.is-open  { color: var(--olive); }
.status-pill.is-closed { color: var(--olive-soft); }

/* ---------- 4. Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(255, 255, 255, .94); backdrop-filter: blur(12px);
  transition: box-shadow .2s;
}
.site-header.is-stuck { box-shadow: var(--shadow-card); }
.site-header .container { height: 100%; display: flex; align-items: center; gap: var(--s-5); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.logo__mark { width: 52px; height: 52px; flex: none; border-radius: 50%; }
.logo__text { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1.05; color: var(--olive); }
.logo__text small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .68rem; letter-spacing: .12em; color: var(--pink-deep); }
.nav ul { display: flex; gap: var(--s-5); }
.nav a {
  position: relative; text-decoration: none; color: var(--olive);
  font-weight: 600; padding-block: 6px; transition: color .18s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform .18s ease-out;
}
.nav a:hover { color: var(--pink-deep); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--pink-deep); }
.header-phone { flex: none; padding: 11px 20px; font-size: var(--step--1); }
.burger {
  display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 11px;
}
.burger span { display: block; height: 2.5px; background: var(--olive); border-radius: 2px; margin: 4.5px 0; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 200; background: var(--white);
  transform: translateY(-100%); transition: transform .24s ease-out;
  display: flex; flex-direction: column; padding: var(--s-4) var(--gutter) var(--s-7);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav__top { display: flex; justify-content: flex-end; }
.mobile-nav__close { width: 46px; height: 46px; border: 0; background: transparent; font-size: 30px; line-height: 1; color: var(--olive); }
.mobile-nav ul { display: flex; flex-direction: column; gap: var(--s-4); margin-top: var(--s-6); }
.mobile-nav a { font-family: var(--font-display); font-weight: 700; font-size: var(--step-2); color: var(--olive); text-decoration: none; }
.mobile-nav .btn { margin-top: auto; }

/* ---------- 5. Hero ---------- */
.hero { padding-block: var(--s-8) var(--s-9); position: relative; overflow: hidden; background: var(--pink); }
.hero h1, .hero .hero__eyebrow, .hero .hero__sub { color: var(--white); }
.hero__grid { display: grid; grid-template-columns: 55fr 45fr; gap: var(--s-7); align-items: center; }
.hero__eyebrow { font-size: var(--step-1); font-weight: 600; color: var(--olive-soft); margin-bottom: var(--s-2); }
.hero h1 { margin-bottom: var(--s-4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-4); }
.hero__sub { font-style: italic; max-width: 48ch; margin-bottom: var(--s-4); }

.collage { position: relative; aspect-ratio: 1 / 1; }
.collage__blob {
  position: absolute; inset: 6% 4%; border-radius: 50%;
  background: var(--pink-soft); opacity: 1; transform-origin: center;
}
.collage img { position: absolute; border-radius: var(--r-lg); box-shadow: var(--shadow-card); }
.collage__a { width: 72%; left: 0; top: 8%; z-index: 3; }
.collage__b { width: 46%; right: 0; top: 0; z-index: 2; }
.collage__c { width: 52%; right: 4%; bottom: 0; z-index: 4; }

/* ---------- 6. Sections & cards ---------- */
.headline-alt { display: block; }
.headline-alt em { font-style: normal; color: var(--olive); }
.section--pink .headline-alt em { color: #000; }

/* Product grid */
.grid-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.card {
  position: relative; display: grid; grid-template-rows: auto 1fr auto;
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .2s ease-out, box-shadow .2s ease-out;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card.is-soldout:hover { transform: none; box-shadow: var(--shadow-card); }
.card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--pink-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease-out; }
.card:hover .card__media img { transform: scale(1.04); }
.card.is-soldout .card__media img { opacity: .5; }
.card.is-soldout:hover .card__media img { transform: none; }
.card__body { padding: var(--s-4) var(--s-4) var(--s-2); }
.card__title { margin-bottom: 6px; }
.card__title a { color: inherit; text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; }
.card__desc {
  font-size: var(--step--1); color: var(--olive-soft); margin: 0 0 var(--s-3);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card__price { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); color: var(--pink-deep); }
.card__price del { font-family: var(--font-body); font-weight: 400; font-size: var(--step--1); color: var(--olive-soft); margin-left: 8px; }
.card__foot { padding: 0 var(--s-4) var(--s-4); }
.card__foot .btn { position: relative; z-index: 2; }
.photo-note[hidden] { display: none; }
.photo-note {
  position: absolute; right: var(--s-2); bottom: var(--s-2); z-index: 2;
  background: rgba(43,24,16,.72); color: #fff; font-size: 11px; letter-spacing: .04em;
  padding: 3px 8px; border-radius: var(--r-sm);
}

/* Video band */
.video-band { text-align: center; }
.video-band .video-wrap { position: relative; max-width: 360px; margin: 0 auto var(--s-4); }
.video-placeholder {
  aspect-ratio: 9 / 16; border-radius: var(--r-lg); background: #1B0F0A;
  display: grid; place-content: center; text-align: center; gap: var(--s-2);
  padding: var(--s-5); border: 2px dashed rgba(255,247,239,.35);
}
.video-band h2, .video-band p { color: var(--off); }
.video-band .video-placeholder p { color: rgba(255,247,239,.72); font-size: var(--step--1); margin: 0; }
.video-band a { color: var(--butter); }

/* Promo */
.promo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); align-items: center; }
.promo__kicker { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); color: var(--olive); margin-bottom: var(--s-2); }
.promo__price { font-family: var(--font-display); font-weight: 700; font-size: var(--step-2); color: var(--pink-deep); margin-bottom: var(--s-4); }
.promo__price del { font-family: var(--font-body); font-weight: 400; font-size: var(--step-0); color: var(--olive-soft); margin-left: 10px; }
.promo__photos { position: relative; display: flex; justify-content: center; align-items: center; }
.promo__photos img {
  width: 42%; border: 8px solid var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-card); background: var(--white);
}
.promo__photos img:nth-child(1) { transform: rotate(-6deg); margin-right: -6%; }
.promo__photos img:nth-child(2) { z-index: 2; width: 46%; }
.promo__photos img:nth-child(3) { transform: rotate(5deg); margin-left: -6%; }

/* Category tabs */
.tabs {
  display: flex; gap: var(--s-2); overflow-x: auto; padding-bottom: var(--s-2);
  margin-bottom: var(--s-5); scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none; border: 2px solid transparent; background: var(--white); color: var(--olive);
  font-family: var(--font-display); font-weight: 700; font-size: var(--step--1);
  padding: 10px 20px; border-radius: var(--r-pill); box-shadow: var(--shadow-card);
  transition: background-color .18s, color .18s;
}
.tab:hover { color: var(--pink-deep); }
.tab[aria-selected="true"] { background: var(--pink-deep); color: #fff; }

/* Category tiles */
.grid-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.tile {
  position: relative; display: block; aspect-ratio: 1 / 1; border-radius: var(--r-lg);
  overflow: hidden; text-decoration: none; box-shadow: var(--shadow-card);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease-out; }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,24,16,.82) 0%, rgba(43,24,16,.28) 42%, transparent 68%);
  transition: opacity .2s;
}
.tile:hover img { transform: scale(1.05); }
.tile:hover::after { opacity: .82; }
.tile span {
  position: absolute; left: var(--s-4); bottom: var(--s-4); z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-2); color: #fff;
}

/* Testimonials */
.reviews { position: relative; }
.reviews__viewport { overflow: hidden; }
.reviews__track { display: flex; gap: var(--s-4); transition: transform .4s ease-out; }
.review {
  flex: 0 0 calc((100% - var(--s-4) * 2) / 3);
  background: var(--white); border-radius: var(--r-md); padding: var(--s-5); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.review__stars { color: var(--butter); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: var(--s-3); }
.review__body { font-size: var(--step--1); margin-bottom: var(--s-3); }
.review__body.is-clamped { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review__more {
  align-self: flex-start; border: 0; background: none; padding: 0 0 var(--s-3);
  color: var(--pink-deep); font-weight: 700; font-size: var(--step--1); text-decoration: underline;
}
.review__foot { display: flex; align-items: center; gap: var(--s-3); margin-top: auto; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-content: center;
  background: var(--pink-soft); font-family: var(--font-display); font-weight: 700; color: var(--olive);
}
.review__who { font-weight: 700; color: var(--olive); font-size: var(--step--1); line-height: 1.3; }
.review__when { font-size: var(--step--1); color: var(--olive-soft); }
.review__source { margin-left: auto; font-size: 11px; color: var(--olive-soft); }
.reviews__controls { display: flex; align-items: center; justify-content: center; gap: var(--s-3); margin-top: var(--s-5); }
.reviews__btn {
  width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--white);
  box-shadow: var(--shadow-card); color: var(--olive); font-size: 1.2rem; line-height: 1;
}
.reviews__btn:hover { color: var(--pink-deep); }
.reviews__dots { display: flex; gap: var(--s-2); }
.reviews__dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: #E3D5C8; }
.reviews__dots button[aria-current="true"] { background: var(--pink); }
.reviews__empty {
  background: var(--white); border-radius: var(--r-md); padding: var(--s-6);
  text-align: center; border: 2px dashed #E3D5C8;
}

/* Location */
.location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); align-items: start; }
.map-embed {
  aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; background: var(--pink-soft);
  display: grid; place-content: center; text-align: center; gap: var(--s-3); padding: var(--s-5);
  border: 2px dashed #E3D5C8;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.contact-list { display: grid; gap: var(--s-2); margin-bottom: var(--s-5); }
.contact-list a { color: var(--pink-deep); }
.hours { width: 100%; border-collapse: collapse; margin-bottom: var(--s-5); max-width: 380px; }
.hours th, .hours td { text-align: left; padding: 9px 12px; font-size: var(--step--1); font-weight: 400; }
.hours th { font-weight: 600; color: var(--olive); }
.hours tr { border-bottom: 1px solid rgba(92,66,55,.12); }
.hours tr.is-today { background: var(--pink-soft); border-radius: var(--r-sm); }
.hours tr.is-today th { color: var(--pink-deep); }
.service-pills { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-5); }
.service-pills li {
  border: 2px solid var(--olive); color: var(--olive);
  font-weight: 600; font-size: var(--step--1); padding: 6px 16px; border-radius: var(--r-pill);
}
.smiley { display: inline-flex; align-items: center; gap: var(--s-3); text-decoration: none; color: var(--pink-deep); font-weight: 700; }
.smiley img { width: 56px; }

/* Newsletter */
.newsletter { text-align: center; }
.newsletter form { display: flex; gap: var(--s-2); max-width: 480px; margin: 0 auto var(--s-3); }
.newsletter input {
  flex: 1; font: inherit; padding: 15px 22px; border-radius: var(--r-pill);
  border: 1px solid rgba(92,66,55,.2); background: var(--white); color: var(--olive);
}
.newsletter input::placeholder { color: #A08D82; }
.form-error { color: var(--pink-deep); font-size: var(--step--1); min-height: 1.5em; margin: 0 0 var(--s-2); }
.form-success { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); color: var(--olive); }
.newsletter .fineprint { font-size: var(--step--1); }

/* ---------- 7. Footer ---------- */
.site-footer { background: var(--olive); color: var(--off); padding: var(--s-8) 0 var(--s-6); }
.site-footer h3 { color: var(--off); font-size: var(--step-1); margin-bottom: var(--s-3); }
.site-footer a { color: var(--off); text-decoration: none; }
.site-footer a:hover { color: var(--butter); text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: var(--s-7); }
.footer__brand p { color: rgba(255,247,239,.78); font-size: var(--step--1); }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: var(--s-3); }
.footer__logo .logo__mark { width: 72px; height: 72px; }
.footer__logo .logo__text { color: var(--white); }
.socials { display: flex; gap: var(--s-3); margin-top: var(--s-4); }
.socials a { display: grid; place-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,247,239,.1); }
.socials a:hover { background: var(--butter); color: var(--olive); }
.socials svg { width: 20px; height: 20px; fill: currentColor; }
.footer__nav li + li { margin-top: var(--s-2); }
.footer__contact { font-size: var(--step--1); color: rgba(255,247,239,.85); }
.footer__contact .hours { max-width: 320px; margin-block: var(--s-3); }
.footer__contact .hours tr { border-bottom-color: rgba(255,247,239,.14); }
.footer__contact .hours th { color: var(--off); }
.footer__contact .hours tr.is-today { background: rgba(255,247,239,.08); }
.footer__contact .hours tr.is-today th { color: var(--butter); }
.footer__bottom {
  margin-top: var(--s-7); padding-top: var(--s-4); text-align: center;
  border-top: 1px solid rgba(255,247,239,.15); font-size: var(--step--1); color: rgba(255,247,239,.7);
}

/* To top */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--pink-deep); color: #fff;
  box-shadow: var(--shadow-hover); font-size: 1.2rem; line-height: 1;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s, transform .2s, visibility .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--pink-deep); }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 150;
  width: min(680px, calc(100% - 40px)); background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-hover); padding: var(--s-4); display: none;
  align-items: center; gap: var(--s-4); flex-wrap: wrap;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { flex: 1 1 260px; font-size: var(--step--1); margin: 0; }
.cookie-banner .btn { padding: 11px 22px; font-size: var(--step--1); }

/* Menu page extras */
.menu-toolbar { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; margin-bottom: var(--s-4); }
.menu-search {
  flex: 1 1 260px; font: inherit; padding: 13px 20px; border-radius: var(--r-pill);
  border: 1px solid rgba(92,66,55,.2); background: var(--white); color: var(--olive);
}
.switch { display: inline-flex; align-items: center; gap: var(--s-2); font-size: var(--step--1); font-weight: 600; color: var(--olive); }
.menu-group + .menu-group { margin-top: var(--s-7); }
.menu-group h2 { margin-bottom: var(--s-4); }
.no-results { text-align: center; padding: var(--s-7) 0; }

/* Gallery */
.gallery { columns: 3; column-gap: var(--s-4); }
.gallery button {
  display: block; width: 100%; margin: 0 0 var(--s-4); padding: 0; border: 0; background: none;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); break-inside: avoid;
}
.gallery img { width: 100%; transition: transform .2s; }
.gallery button:hover img { transform: scale(1.04); }
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(43,24,16,.92);
  display: none; place-content: center; padding: var(--gutter);
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(680px, 90vw); max-height: 80vh; border-radius: var(--r-lg); }
.lightbox__close {
  position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%;
  border: 0; background: var(--off); color: var(--olive); font-size: 26px; line-height: 1;
}

/* About page */
.prose-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); align-items: center; }
.stat-row { display: flex; flex-wrap: wrap; gap: var(--s-6); margin-top: var(--s-5); }
.stat b { display: block; font-family: var(--font-display); font-size: var(--step-3); color: var(--pink-deep); line-height: 1; }
.stat span { font-size: var(--step--1); }

/* 404 */
.page-404 { text-align: center; padding-block: var(--s-9); }
.page-404 img { width: 220px; margin: 0 auto var(--s-5); }

/* ---------- 8. Responsive ---------- */
@media (max-width: 1023px) {
  .grid-products, .grid-categories { grid-template-columns: repeat(2, 1fr); }
  .review { flex-basis: calc((100% - var(--s-4)) / 2); }
  .gallery { columns: 2; }
}
@media (max-width: 900px) {
  .nav, .header-phone { display: none; }
  .burger { display: block; }
  .hero__grid, .promo__grid, .location__grid, .prose-split { grid-template-columns: 1fr; }
  .hero__grid { gap: var(--s-6); }
  .collage { max-width: 440px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__contact { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  :root { --header-h: 64px; }
  .section { padding-block: var(--s-6); }
  .hero { padding-block: var(--s-6) var(--s-7); }
  .grid-products { grid-template-columns: 1fr; }
  .review { flex-basis: 100%; }
  .hero__actions .btn { width: 100%; }
  .newsletter form { flex-direction: column; }
  .newsletter input, .newsletter .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .gallery { columns: 1; }
  .promo__photos img { width: 46%; }
}
@media (max-width: 479px) {
  .logo__mark { width: 38px; height: 38px; }
  .logo__text { font-size: 1.1rem; }
}

/* Hero load sequence — the page's single orchestrated motion moment */
@media (prefers-reduced-motion: no-preference) {
  .collage__blob { animation: blob-in .5s ease-out both; }
  .collage img { animation: rise-in .5s ease-out both; }
  .collage__a { animation-delay: .08s; }
  .collage__b { animation-delay: .16s; }
  .collage__c { animation-delay: .24s; }
  @keyframes blob-in { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
  @keyframes rise-in { from { transform: translateY(16px); opacity: 0; } to { transform: none; opacity: 1; } }
  .collage__b { --r: 0deg; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
}

@media print {
  .site-header, .to-top, .cookie-banner, .video-band, .reviews__controls { display: none; }
}


/* Small pink text never sits on pale pink — it drops below 4.5:1 there */
.section--soft a, .section--soft .card__price, .section--soft .promo__price { color: var(--pink-deep); }
.section--soft .promo__kicker { color: var(--pink-deep); }
.status-pill.is-open { color: var(--olive); }
.status-pill.is-closed { color: var(--olive-soft); }
.service-pills li { border-color: var(--pink-ring); color: var(--pink-deep); }
.tile::after { background: linear-gradient(to top, rgba(68,64,52,.86) 0%, rgba(68,64,52,.3) 44%, transparent 70%); }
.review__stars { color: var(--pink); }
.reviews__dots button[aria-current="true"] { background: var(--pink); }
.nav a::after { background: var(--pink); }

/* =========================================================
   ALL-PINK MODE
   Every band is pink; white is reserved for surfaces that carry
   small text (cards, reviews, inputs), where pink text would fail
   contrast. Deep pink separates the video band and footer.
   ========================================================= */
body { background: var(--pink); }

.section,
.section--tint,
.section--soft,
.hero,
.newsletter { background: var(--pink); }

.section--dark { background: var(--pink-deep); }

/* Default text on a pink field */
.section h1, .section h2, .section h3,
.hero h1, .hero h2,
.section p, .section li,
.section__head p { color: var(--white); }

/* Header rides the same pink */
.site-header { background: rgba(228, 13, 106, .95); }
.site-header.is-stuck { box-shadow: 0 6px 20px rgba(120, 8, 55, .28); }
.nav a { color: var(--white); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--white); }
.nav a::after { background: var(--white); }
.logo__text { color: var(--white); }
.logo__text small { color: var(--pink-soft); }
.header-phone { background: var(--white); color: var(--pink-deep); }
.header-phone:hover { background: var(--pink-soft); color: var(--pink-deep); }
.burger span { background: var(--white); }
.mobile-nav { background: var(--pink); }
.mobile-nav a { color: var(--white); }
.mobile-nav__close { color: var(--white); }

/* Buttons on pink: white fill, pink label */
.btn--primary { background: var(--white); color: var(--pink-deep); }
.btn--primary:hover { background: var(--pink-soft); color: var(--pink-deep); }
.btn--secondary { border-color: var(--white); color: var(--white); }
.btn--secondary:hover { background: var(--white); color: var(--pink-deep); }
.link-more { color: var(--white); }

/* White surfaces keep their own, darker type */
.card, .review, .reviews__empty { background: var(--white); }
.card h3, .card .card__title, .card .card__title a { color: var(--olive); }
.card .card__desc { color: var(--olive-soft); }
.card .card__price { color: var(--pink-deep); }
.card .btn--primary { background: var(--pink-deep); color: var(--white); }
.card .btn--primary:hover { background: var(--pink); color: var(--white); }
.card .btn[aria-disabled="true"] { background: #EADFE4; color: #7A6C72; }
.review, .review p { color: var(--olive-soft); }
.review__who { color: var(--olive); }
.review__stars { color: #E8A33C; }
.reviews__empty p { color: var(--olive-soft); }
.reviews__btn { background: var(--white); color: var(--pink-deep); }
.reviews__dots button { background: rgba(255,255,255,.45); }
.reviews__dots button[aria-current="true"] { background: var(--white); }

/* Category tabs */
.tab { background: var(--white); color: var(--pink-deep); }
.tab:hover { color: var(--olive); }
.tab[aria-selected="true"] { background: var(--pink-deep); color: var(--white); }

/* Location block */
.map-embed { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.45); }
.map-embed p, .map-embed strong { color: var(--white); }
.contact-list a, .section .smiley { color: var(--white); }
.hours { color: var(--white); }
.hours th { color: var(--white); }
.hours tr { border-bottom-color: rgba(255,255,255,.22); }
.hours tr.is-today { background: rgba(255,255,255,.16); }
.hours tr.is-today th { color: var(--white); }
.service-pills li { border-color: var(--white); color: var(--white); }
.status-pill { background: var(--white); }
.status-pill.is-open, .status-pill.is-closed { color: var(--pink-deep); }

/* Forms */
.newsletter input { background: var(--white); border-color: transparent; color: var(--olive); }
.newsletter .btn--primary { background: var(--white); color: var(--pink-deep); }
.form-error:not(:empty) {
  display: inline-block; background: var(--white); color: var(--pink-deep);
  font-weight: 600; padding: 6px 14px; border-radius: var(--r-pill);
}
.form-success { color: var(--white); }
.newsletter .fineprint a { color: var(--white); }
.menu-search { background: var(--white); border-color: transparent; color: var(--olive); }
.switch { color: var(--white); }
.menu-group h2 { color: var(--white); }
.no-results { color: var(--white); }

/* Promo + kickers */
.promo__kicker { color: var(--pink-soft); }
.promo__price { color: var(--white); }
.promo__price del { color: var(--white); opacity: .85; }
.headline-alt em { color: #000; }

/* Video band + footer on the deeper pink */
.video-band h2, .video-band p { color: var(--white); }
.video-band a { color: var(--pink-soft); }
.site-footer { background: var(--pink-deep); }
.site-footer .hours tr { border-bottom-color: rgba(255,255,255,.22); }
.footer__brand p { color: rgba(255,255,255,.88); }
.footer__contact { color: rgba(255,255,255,.92); }
.socials a { background: rgba(255,255,255,.16); }
.socials a:hover { background: var(--white); color: var(--pink-deep); }
.footer__bottom { color: rgba(255,255,255,.85); border-top-color: rgba(255,255,255,.25); }

.to-top { background: var(--white); color: var(--pink-deep); }
.to-top:hover { background: var(--pink-soft); }
.gallery button { box-shadow: 0 8px 24px rgba(120,8,55,.22); }

/* =========================================================
   IMAGE FRAMING
   Source photos vary wildly — some are cut-outs on white, some
   are landscape shots. Force a consistent frame and crop.
   ========================================================= */
.collage img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  padding: 0;
  border: 6px solid var(--white);
}
.promo__photos img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.gallery img { aspect-ratio: 1 / 1; object-fit: cover; }

/* Cut-outs shot on a white background get contained, not cropped,
   so the product is never sliced. Tag them with data-fit="contain". */
.collage img[data-fit="contain"],
.promo__photos img[data-fit="contain"],
.card__media img[data-fit="contain"] {
  object-fit: contain;
  background: var(--white);
  padding: 8%;
}

/* =========================================================
   SPARKLE
   Four-point stars, the only decorative flourish. Kept to the
   hero, the section headings and the Miklo band.
   ========================================================= */
.sparkle { position: absolute; pointer-events: none; z-index: 0; }
.sparkle svg { display: block; }
@media (prefers-reduced-motion: no-preference) {
  .sparkle { animation: twinkle 3.2s ease-in-out infinite; }
  .sparkle:nth-of-type(2) { animation-delay: .8s; }
  .sparkle:nth-of-type(3) { animation-delay: 1.6s; }
  .sparkle:nth-of-type(4) { animation-delay: 2.2s; }
  @keyframes twinkle {
    0%, 100% { opacity: .35; transform: scale(.85); }
    50%      { opacity: 1;   transform: scale(1); }
  }
}
.section__head { position: relative; }
.head-mark { display: block; margin: 0 auto var(--s-3); width: 54px; height: 54px; border-radius: 50%; }

/* =========================================================
   HERO BACKGROUND VIDEO
   Drop the shop's own export at video/hero.mp4. If the file is
   absent the pink field simply shows through — no broken state.
   ========================================================= */
.hero__bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  /* Deep pink, not the brand pink: white hero text must stay above 4.5:1
     even over a fully white video frame. This holds 5.03:1 worst case. */
  background: rgba(184, 11, 86, .82);
}
.hero > .container { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero__bg video { display: none; } }

/* =========================================================
   MIKLO — the welcome mascot
   ========================================================= */
.miklo { background: var(--pink-deep); position: relative; overflow: hidden; }
.miklo__grid {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s-6);
  align-items: center; position: relative; z-index: 1;
}
.miklo__fig {
  width: 190px; height: 190px; flex: none; border-radius: 50%;
  background: var(--white); padding: var(--s-3);
  object-fit: contain; display: block;
}
.miklo h2 { margin-bottom: var(--s-2); }
.miklo p { color: var(--white); }
.miklo__speech {
  display: inline-block; background: var(--white); color: var(--pink-deep);
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-1);
  padding: var(--s-3) var(--s-4); border-radius: var(--r-lg);
  position: relative; margin-bottom: var(--s-3);
}
.miklo__speech::after {
  content: ""; position: absolute; left: -10px; top: 50%; margin-top: -9px;
  border: 9px solid transparent; border-right-color: var(--white); border-left: 0;
}
@media (max-width: 767px) {
  .miklo__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .miklo__fig { width: 150px; height: 150px; }
  .miklo__speech::after { display: none; }
}

/* =========================================================
   FIXES + RICHER TREATMENT
   ========================================================= */

/* BUG: `.miklo p` (0,1,1) beat `.miklo__speech` (0,1,0), so the bubble
   text rendered white on a white bubble. Raise specificity. */
.miklo p.miklo__speech { color: var(--pink-deep); }

/* --- Product shots: no white cards --------------------------------
   The source photos are cut-outs on white. Sitting them on a pale
   pink disc and multiplying makes that white background vanish while
   leaving the product's own colours essentially untouched (the disc
   is 98/84/90% grey, so the cast is very slight). */
.collage img,
.promo__photos img {
  border: 0;
  background: var(--pink-soft);
  border-radius: 50%;
  padding: 6%;
  mix-blend-mode: multiply;
  box-shadow: none;
}
.collage img[data-fit="contain"],
.promo__photos img[data-fit="contain"] {
  object-fit: contain;
  background: var(--pink-soft);
  padding: 6%;
}

/* Bigger, and overlapping more confidently */
.collage { aspect-ratio: 1 / 1; }
.collage__blob { inset: 2%; opacity: .38; }
.collage__a { width: 82%; left: -4%; top: 10%; }
.collage__b { width: 56%; right: -4%; top: -4%; }
.collage__c { width: 62%; right: 2%; bottom: -4%; }
.promo__photos img { width: 50%; }
.promo__photos img:nth-child(2) { width: 55%; }

/* --- Chocolate drip ---------------------------------------------- */
.drip {
  position: absolute; left: 0; right: 0; top: 0; height: 58px;
  background-image: url("../img/drip.svg");
  background-repeat: repeat-x;
  background-size: 240px 58px;
  z-index: 3; pointer-events: none;
}
.drip--bottom { top: auto; bottom: 0; transform: scaleY(-1); }
.hero, .miklo, .section--dark { padding-top: calc(var(--s-8) + 34px); }

/* --- Miklo, richer ------------------------------------------------ */
.miklo__fig {
  width: 260px; height: 260px; padding: 0;
  border: 7px solid var(--white);
  box-shadow: 0 14px 40px rgba(90, 6, 42, .45);
  background: var(--white);
}
.miklo__grid { gap: var(--s-7); }
.miklo__speech { font-size: var(--step-2); line-height: 1.25; max-width: 22ch; }
.miklo__portrait { position: relative; }
.miklo__portrait .sparkle { z-index: 4; }
@media (max-width: 767px) { .miklo__fig { width: 190px; height: 190px; } }

/* --- More sparkle, and a shimmer on the headings ------------------ */
.head-mark { width: 64px; height: 64px; box-shadow: 0 6px 18px rgba(90,6,42,.35); }
.section__head h2 { position: relative; display: inline-block; }

/* =========================================================
   COLLAGE, TIGHTENED
   The oversized pale discs and the extra blob behind them read as
   overlapping smudges. One snug disc per product, nothing behind.
   ========================================================= */
.collage__blob { display: none; }
.collage img,
.promo__photos img {
  background: var(--pink-soft);
  border-radius: 50%;
  padding: 3%;
  mix-blend-mode: multiply;
  border: 0;
  box-shadow: none;
}
.collage__a { width: 62%; left: 0; top: 16%; }
.collage__b { width: 46%; right: 2%; top: 0; }
.collage__c { width: 50%; right: 8%; bottom: 2%; }
.promo__photos img { width: 44%; }
.promo__photos img:nth-child(2) { width: 48%; }

/* =========================================================
   SCATTERED DESSERTS + SPRINKLES
   Transparent SVG stickers, drifting slowly. Purely decorative:
   aria-hidden, never overlapping text, first to go on small screens.
   ========================================================= */
.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .92;
  filter: drop-shadow(0 6px 14px rgba(90, 6, 42, .28));
}
.section, .hero, .miklo { position: relative; }
.section > .container,
.miklo > .container { position: relative; z-index: 2; }

@media (prefers-reduced-motion: no-preference) {
  .deco { animation: drift 7s ease-in-out infinite; }
  .deco:nth-of-type(even) { animation-duration: 9s; animation-delay: -3s; }
  @keyframes drift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-12px) rotate(-4deg); }
  }
}

/* Decoration is the first thing to go when space is tight */
@media (max-width: 1100px) { .deco { opacity: .7; transform: scale(.8); } }
@media (max-width: 767px)  { .deco { display: none; } }

/* =========================================================
   CANDY BUTTONS
   Each action keeps the same frame everywhere it appears:
     1 chocolate+strawberry -> Bestil online
     2 lollipop             -> Bestil via Wolt
     3 cookie+chocolate     -> Bestil (product cards)
     4 pink dessert         -> Tilmeld (newsletter)
     5 deluxe chocolate     -> Bestil nu (promo)
   The frame is a background image; the label stays real text inside
   the white plate, so it is still selectable and screen-reader safe.
   Measured plate area is x 22–80%, y 28–82%, hence the padding.
   ========================================================= */
.btn--candy {
  background-color: transparent !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
  color: var(--pink-deep) !important;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  line-height: 1.05;
  display: grid;
  place-items: center;
  padding: 0 25%;
  width: 300px;
  max-width: 100%;
  aspect-ratio: 2.49 / 1;
  transition: transform .16s ease-out, filter .16s ease-out;
  /* The plate averages ~5:1 against the label, but a few frames have
     sprinkles and chocolate specks drifting onto it. A white halo keeps
     the text readable wherever it lands. */
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 16px rgba(255,255,255,.9);
}
.btn--candy:hover { transform: translateY(-3px) scale(1.03); filter: brightness(1.04); }
.btn--candy:active { transform: translateY(0) scale(.99); }
.btn--candy:focus-visible { outline: 3px solid var(--butter); outline-offset: 4px; }

.candy--1 { background-image: url("../img/btn-1.png"); aspect-ratio: 2.49 / 1; }
.candy--2 { background-image: url("../img/btn-2.png"); aspect-ratio: 2.55 / 1; }
.candy--3 { background-image: url("../img/btn-3.png"); aspect-ratio: 2.59 / 1; }
.candy--4 { background-image: url("../img/btn-4.png"); aspect-ratio: 2.22 / 1; }
.candy--5 { background-image: url("../img/btn-5.png"); aspect-ratio: 2.17 / 1; }

.hero__actions .btn--candy { width: 296px; font-size: 1.05rem; letter-spacing: 0; }
.card__foot .btn--candy { width: 100%; font-size: 1.05rem; padding: 0 26%; }
.newsletter .btn--candy { width: 240px; font-size: 1rem; }
.promo .btn--candy, .section--pink .btn--candy { width: 280px; font-size: 1.05rem; }

/* Sold-out keeps the plain pill so it stays clearly different */
.card .btn[aria-disabled="true"] {
  background: #EADFE4 !important; color: #7A6C72 !important;
  border-radius: var(--r-pill); aspect-ratio: auto; padding: 14px;
  width: 100%; background-image: none !important; font-family: var(--font-body);
}

@media (max-width: 767px) {
  .hero__actions .btn--candy { width: 100%; max-width: 320px; }
}

/* =========================================================
   HERO, REBUILT ON A TRUE CUT-OUT
   The supplied pancake photo has real transparency, so it needs no
   disc and no blend mode. The previous multiply trick could never
   work here: `.hero > .container` creates a stacking context, which
   isolates blending from the section background behind it.
   ========================================================= */
.collage img.collage__hero {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  mix-blend-mode: normal;
  object-fit: contain;
  aspect-ratio: auto;
  filter: drop-shadow(0 18px 34px rgba(90, 6, 42, .45));
}
.collage { display: grid; place-items: center; aspect-ratio: auto; }

/* Promo photos go back to deliberate white product cards — those
   images still carry white backgrounds we cannot edit. */
.promo__photos img {
  background: var(--white);
  border: 7px solid var(--white);
  border-radius: var(--r-md);
  mix-blend-mode: normal;
  padding: 4px;
  width: 42%;
}
.promo__photos img:nth-child(2) { width: 46%; }

/* =========================================================
   CANDY BUTTON LABELS — one line, centred on the plate
   The plate sits at y 28–82%, so its centre is at 55% of the
   button height, not 50%. Asymmetric padding nudges the label
   down onto it instead of floating above.
   ========================================================= */
.btn--candy {
  white-space: nowrap;
  line-height: 1;
  padding: 9% 24% 0;
  font-size: .95rem;
}
.candy--4, .candy--5 { padding: 3% 24% 0; }

.hero__actions .btn--candy { width: 320px; font-size: 1rem; }
.card__foot .btn--candy { width: 100%; font-size: .95rem; padding-inline: 22%; }
.newsletter .btn--candy { width: 250px; font-size: .95rem; }
.section--pink .btn--candy { width: 300px; font-size: 1rem; }

@media (max-width: 1100px) { .btn--candy { font-size: .88rem; } }
@media (max-width: 767px) {
  .hero__actions .btn--candy { width: 100%; max-width: 300px; font-size: .95rem; }
}

/* =========================================================
   MAP — fill the frame once loaded
   `place-content: center` shrink-wraps children, which left the
   iframe as a small box inside a large dashed placeholder.
   ========================================================= */
.map-embed.is-loaded {
  display: block;
  padding: 0;
  border: 0;
  background: var(--white);
  overflow: hidden;
}
.map-embed.is-loaded iframe { display: block; width: 100%; height: 100%; }

/* =========================================================
   PROMO — real cut-outs, so no white cards needed
   ========================================================= */
.promo__photos img {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  mix-blend-mode: normal;
  object-fit: contain;
  aspect-ratio: auto;
  filter: drop-shadow(0 14px 26px rgba(90, 6, 42, .42));
  width: 46%;
}
.promo__photos img:nth-child(2) { width: 50%; z-index: 2; }

/* =========================================================
   BUTTON LABELS — exact optical centring
   Padding tricks only approximate it. Absolute positioning puts
   the label on the plate's real centre, measured per frame.
   ========================================================= */
.btn--candy { position: relative; display: block; padding: 0 !important; }
.btn--candy .btn__label {
  position: absolute; left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  white-space: nowrap; line-height: 1; width: max-content; max-width: 52%;
}
.candy--4 .btn__label, .candy--5 .btn__label { top: 51%; }

/* =========================================================
   CART
   ========================================================= */
.cart-toggle {
  position: relative; flex: none; display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--pink-deep); border: 0;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step--1);
  padding: 11px 18px; border-radius: var(--r-pill);
}
.cart-toggle:hover { background: var(--pink-soft); }
.cart-toggle .count {
  min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px;
  background: var(--pink-deep); color: #fff; font-size: 12px;
  display: grid; place-items: center;
}
.cart-toggle .count[data-empty="true"] { background: #C9B9AE; }

.cart-backdrop {
  position: fixed; inset: 0; z-index: 400; background: rgba(60, 4, 28, .58);
  opacity: 0; visibility: hidden; transition: opacity .22s, visibility .22s;
}
.cart-backdrop.is-open { opacity: 1; visibility: visible; }

.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 401;
  width: min(480px, 100%);
  background: #F9EBD5;
  border-left: 12px solid var(--pink);
  box-shadow: -18px 0 50px rgba(60, 4, 28, .4);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .26s ease-out;
  overflow: hidden;
}
.cart-panel.is-open { transform: none; }
@media (prefers-reduced-motion: reduce) { .cart-panel { transition: none; } }

.cart-head { position: relative; padding: var(--s-4) var(--s-4) var(--s-2); text-align: center; }
.cart-head img { width: 100%; max-width: 320px; margin: 0 auto; display: block; }
.cart-close {
  position: absolute; top: 10px; right: 10px; width: 52px; height: 52px;
  border: 0; background: url("../img/ui-close.png") center/contain no-repeat;
  font-size: 0; cursor: pointer; transition: transform .15s;
}
.cart-close:hover { transform: scale(1.08) rotate(6deg); }

.cart-body { flex: 1; overflow-y: auto; padding: var(--s-2) var(--s-4) var(--s-4); }
.cart-empty { text-align: center; color: var(--olive-soft); padding: var(--s-7) var(--s-3); }
.cart-empty strong { display: block; font-family: var(--font-display); font-size: var(--step-1); color: var(--olive); margin-bottom: 6px; }

.cart-line {
  position: relative; background: url("../img/ui-panel.png") center/100% 100% no-repeat;
  aspect-ratio: 3.52 / 1; margin-bottom: 10px; display: grid;
  grid-template-columns: 1fr auto; align-items: center;
  padding: 0 7%; gap: 8px;
}
.cart-line__name {
  font-family: var(--font-display); font-weight: 700; color: #5A2418;
  font-size: .92rem; line-height: 1.15; overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.cart-line__price { font-size: .78rem; color: var(--pink-deep); font-weight: 700; font-family: var(--font-body); }
.cart-qty { display: flex; align-items: center; gap: 4px; }
.cart-qty button {
  width: 34px; height: 34px; border: 0; background-size: contain;
  background-repeat: no-repeat; background-position: center; font-size: 0;
  cursor: pointer; transition: transform .14s;
}
.cart-qty button:hover { transform: scale(1.12); }
.cart-qty .plus  { background-image: url("../img/ui-plus.png"); }
.cart-qty .minus { background-image: url("../img/ui-minus.png"); }
.cart-qty .n {
  min-width: 26px; text-align: center; font-family: var(--font-display);
  font-weight: 700; color: #5A2418; font-size: 1rem;
}

.cart-foot { padding: var(--s-3) var(--s-4) var(--s-4); border-top: 3px dashed #E8C9A8; }
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-display); font-weight: 700; color: #5A2418;
  font-size: var(--step-1); margin-bottom: var(--s-3);
}
.cart-total span:last-child { color: var(--pink-deep); }
.btn--checkout {
  position: relative; display: block; width: 100%;
  background: url("../img/ui-panel.png") center/100% 100% no-repeat;
  aspect-ratio: 3.52 / 1; border: 0; cursor: pointer; font-size: 0;
}
.btn--checkout .btn__label {
  position: absolute; left: 50%; top: 48%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 700; color: var(--pink-deep);
  font-size: 1.05rem; white-space: nowrap;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff;
}
.btn--checkout[disabled] { filter: grayscale(.6); opacity: .6; cursor: not-allowed; }
.btn--clear {
  display: block; width: 100%; max-width: 240px; margin: 10px auto 0;
  background: url("../img/ui-clear.png") center/contain no-repeat;
  aspect-ratio: 2.98 / 1; border: 0; font-size: 0; cursor: pointer;
  transition: transform .14s;
}
.btn--clear:hover { transform: scale(1.03); }

/* Checkout step */
.checkout-form { display: grid; gap: var(--s-3); }
.checkout-form label { font-weight: 600; color: #5A2418; font-size: var(--step--1); display: grid; gap: 5px; }
.checkout-form input, .checkout-form select, .checkout-form textarea {
  font: inherit; padding: 12px 14px; border-radius: 12px;
  border: 2px solid #E8C9A8; background: #FFFDF8; color: var(--olive);
}
.checkout-form textarea { min-height: 74px; resize: vertical; }
.checkout-error { color: #A8073F; font-weight: 700; font-size: var(--step--1); }
.receipt { background: #FFFDF8; border: 3px dashed #E8C9A8; border-radius: 14px; padding: var(--s-4); }
.receipt h3 { color: #5A2418; margin-bottom: var(--s-2); }
.receipt ul { margin-bottom: var(--s-3); }
.receipt li { display: flex; justify-content: space-between; gap: 12px; font-size: var(--step--1); padding: 4px 0; border-bottom: 1px solid #F0DFC8; }
.receipt .sum { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); color: #5A2418; }
.cart-note { font-size: var(--step--1); color: var(--olive-soft); margin-top: var(--s-3); }
.link-back { background: none; border: 0; color: var(--pink-deep); font-weight: 700; text-decoration: underline; cursor: pointer; padding: 0; }

.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); z-index: 500;
  background: var(--white); color: var(--pink-deep); font-family: var(--font-display);
  font-weight: 700; padding: 14px 26px; border-radius: var(--r-pill);
  box-shadow: 0 12px 30px rgba(60,4,28,.35); opacity: 0; visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

@media (max-width: 900px) { .cart-toggle { display: inline-flex; } }

/* Panel visibility is driven by a class, not the hidden attribute —
   the attribute's display:none was fighting the slide animation, and
   the render guard that read it left the panel opening empty. */
.cart-panel { visibility: hidden; }
.cart-panel.is-open { visibility: visible; }
.cart-head img { height: auto; }

/* Promo photos: the [data-fit] rule (0,2,1) was out-specifying the
   plain selector (0,1,1) and re-applying a pale disc behind the
   already-transparent cut-outs. */
.promo__photos img,
.promo__photos img[data-fit="contain"] {
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  mix-blend-mode: normal !important;
  object-fit: contain;
}

/* A <button> has a default background (buttonface), which showed as a
   white square behind every transparent candy PNG. Clear it everywhere
   a button is drawn purely from an image. */
.cart-qty button,
.cart-close,
.btn--clear,
.btn--checkout,
.btn--candy {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.cart-qty button { border-radius: 50%; }

/* Sweets strip */
.sweets-strip { text-align: center; }
.sweets-strip .container { max-width: 760px; }
.sweets-kicker {
  font-family: var(--font-display); font-weight: 700; letter-spacing: .06em;
  /* pale pink is only 3.48:1 here and this sits just under the
     large-text threshold, so it stays white */
  color: var(--white); font-size: var(--step-0); margin-bottom: var(--s-2); opacity: .92;
}
.sweets-strip h2 { margin-bottom: var(--s-3); }
.sweets-lead { margin-inline: auto; }

/* =========================================================
   PRODUCT CARDS — cream candy panels, not plain white
   Matches the cart and the button frames instead of sitting on
   the page as white rectangles.
   ========================================================= */
.card {
  background: #F9EBD5;
  border: 4px solid var(--pink);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(90, 6, 42, .28);
}
.card__media { background: #F2E2CB; border-radius: 17px 17px 0 0; }
.card .card__title, .card .card__title a { color: #5A2418; }
.card .card__desc { color: #6E5240; }
.card .card__price { color: var(--pink-deep); }

/* Long product names were overflowing: "Strawberry/Raspberry/Blueberry"
   has no spaces to break on, so it ran past the card edge. */
.card__title {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  min-height: 2.4em;
}
.card__desc { min-height: 2.6em; }

/* The candy frame is 2.59:1, so at full card width it grew taller than
   the space left for it and got clipped. Cap it and centre it. */
.card__foot { display: flex; justify-content: center; }
.card__foot .btn--candy {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 2.59 / 1;
  font-size: .9rem;
}
.card__foot .btn--candy .btn__label { max-width: 56%; }

/* Uniform media height so rows line up whatever the photo's shape */
.card__media { aspect-ratio: 1 / 1; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.grid-products { align-items: stretch; }
.card { height: 100%; }

/* =========================================================
   REEL CAROUSEL — Instagram + TikTok
   ========================================================= */
.reels { position: relative; max-width: 900px; margin: 0 auto; }
.reels__tabs { display: flex; justify-content: center; gap: var(--s-2); margin-bottom: var(--s-4); }
.reels__tabs button {
  background: var(--white); color: var(--pink-deep); border: 0;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step--1);
  padding: 10px 22px; border-radius: var(--r-pill); cursor: pointer;
}
.reels__tabs button[aria-selected="true"] { background: var(--pink-deep); color: #fff; }

.reels__stage { display: flex; align-items: center; gap: var(--s-3); justify-content: center; }
.reels__viewport { overflow: hidden; flex: 1; max-width: 360px; }
.reels__track { display: flex; transition: transform .35s ease-out; }
.reels__slide { flex: 0 0 100%; min-width: 100%; display: grid; place-items: start center; }
.reels__slide > * { width: 100%; max-width: 340px; }
.reels__slide[hidden] { display: none; }

.reels__btn {
  flex: none; width: 56px; height: 56px; border-radius: 50%; border: 0;
  background: var(--white); color: var(--pink-deep); font-size: 1.4rem; line-height: 1;
  box-shadow: 0 8px 20px rgba(90,6,42,.3); cursor: pointer; transition: transform .15s;
}
.reels__btn:hover { transform: scale(1.08); background: var(--pink-soft); }
.reels__btn[disabled] { opacity: .4; cursor: not-allowed; transform: none; }
.reels__dots { display: flex; justify-content: center; gap: 8px; margin-top: var(--s-4); }
.reels__dots button { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; }
.reels__dots button[aria-current="true"] { background: var(--white); }
.reels__fallback {
  background: var(--white); border-radius: var(--r-md); padding: var(--s-5);
  text-align: center; color: var(--olive-soft);
}
.reels__fallback a { color: var(--pink-deep); font-weight: 700; }
@media (max-width: 560px) {
  .reels__btn { width: 46px; height: 46px; font-size: 1.1rem; }
  .reels__stage { gap: 6px; }
}

/* =========================================================
   FINAL PASS
   ========================================================= */

/* No white halo behind button labels — the plates are light enough
   on their own now that the frames sit on cream cards. */
.btn--candy, .btn--checkout .btn__label { text-shadow: none; }

/* Centred call-to-action rows.
   The old markup used <p>, which inherits the global max-width:65ch,
   so "text-align:center" centred inside a narrower box and the button
   sat left of the real centre. */
.cta-row {
  display: flex;
  justify-content: center;
  margin-top: var(--s-6);
  width: 100%;
}
.cta-row .btn--candy { width: 340px; max-width: 100%; font-size: 1.05rem; }
@media (max-width: 480px) { .cta-row .btn--candy { width: 100%; } }

/* Newsletter: a wider field so the row reads as a form, not a
   floating pill, and the two controls share a sensible baseline. */
.newsletter form {
  max-width: 640px;
  align-items: center;
  gap: var(--s-3);
}
.newsletter input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 18px 26px;
  font-size: var(--step-0);
}
.newsletter .btn--candy { flex: 0 0 auto; width: 230px; }
.newsletter .fineprint { margin-top: var(--s-3); }
@media (max-width: 767px) {
  .newsletter form { max-width: 420px; }
  .newsletter .btn--candy { width: 100%; max-width: 260px; margin-inline: auto; }
}

/* =========================================================
   THE BADGE, FRONT AND CENTRE
   The identity is the badge — olive centre, pink scalloped ring —
   so it repeats through the page and lends its olive to the UI.
   ========================================================= */
.logo__mark { width: 64px; height: 64px; }
.logo__text { font-size: 1.25rem; }
.hero__badge {
  width: 112px; height: 112px; display: block; margin-bottom: var(--s-3);
  filter: drop-shadow(0 10px 24px rgba(90, 6, 42, .45));
}
.head-mark {
  width: 84px; height: 84px;
  filter: drop-shadow(0 8px 20px rgba(90, 6, 42, .38));
}
.footer__logo .logo__mark { width: 96px; height: 96px; }

/* Olive from the badge, used as the deep tone across the interface */
.card { border-color: var(--pink); box-shadow: 0 10px 26px rgba(68, 64, 52, .3); }
.card__title, .card__title a { color: var(--olive); }
.cart-panel { border-left-color: var(--pink); }
.cart-line__name { color: var(--olive); }
.cart-total, .receipt h3, .receipt .sum { color: var(--olive); }
.checkout-form label { color: var(--olive); }

/* Faint badge watermark behind two bands */
.has-watermark::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-position: right -60px bottom -60px;
  background-size: 320px 320px;
  opacity: .08;
}

/* Reviews styled like the rest of the candy interface */
.review {
  background: #F9EBD5;
  border: 4px solid var(--pink);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(68, 64, 52, .3);
}
.review, .review p { color: #6E5240; }
.review__who { color: var(--olive); }
.review__avatar { background: var(--pink-soft); color: var(--pink-deep); }
.review__stars { color: #E8A33C; }
.reviews__empty {
  background: #F9EBD5; border: 4px dashed var(--pink);
  border-radius: 22px; color: #6E5240;
}
.reviews__empty p { color: #6E5240; }
.reviews__btn {
  width: 60px; height: 60px; background: var(--white); color: var(--pink-deep);
  font-size: 1.4rem; box-shadow: 0 8px 20px rgba(68,64,52,.34);
}
.reviews__btn:hover { background: var(--pink-soft); transform: scale(1.07); }
.reviews__dots button { background: rgba(255,255,255,.5); }
.reviews__dots button[aria-current="true"] { background: var(--white); }

/* About page: photos, not placeholder shapes */
.prose-split .promo__photos img { filter: drop-shadow(0 14px 26px rgba(68,64,52,.4)); }

/* Review cards: a little more presence, and quote marks for polish */
.review { padding: var(--s-6) var(--s-5) var(--s-5); position: relative; }
.review::before {
  content: "\201C";
  position: absolute; top: 2px; left: 18px;
  font-family: var(--font-display); font-size: 4.5rem; line-height: 1;
  color: var(--pink); opacity: .35;
}
.review__body { font-size: var(--step-0); line-height: 1.6; }
.review__stars { font-size: 1.25rem; letter-spacing: 3px; }
.review__foot { padding-top: var(--s-3); border-top: 2px dashed #E8C9A8; }
.review__source { font-weight: 700; color: var(--pink-deep); }
.reviews__controls { margin-top: var(--s-6); }

/* =========================================================
   FIRMAFEST OG ARRANGEMENTER
   ========================================================= */
.booking__grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: var(--s-7); align-items: start;
}
.booking__points { display: grid; gap: var(--s-4); }
.booking__points li {
  background: rgba(255,255,255,.14);
  border-left: 5px solid var(--white);
  border-radius: 0 16px 16px 0;
  padding: var(--s-3) var(--s-4);
  color: var(--white);
  font-size: var(--step-0); line-height: 1.55;
}
.booking__points strong { font-family: var(--font-display); }

.booking__panel {
  background: #F9EBD5;
  border: 5px solid var(--pink-deep);
  border-radius: 24px;
  padding: var(--s-5);
  box-shadow: 0 14px 34px rgba(68, 64, 52, .34);
}
.booking__panel .checkout-form label { color: var(--olive); }
.booking__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.booking__panel .btn--checkout { margin-top: var(--s-2); }
.booking__panel .receipt { margin-bottom: var(--s-3); }
.booking-actions .cart-note { color: var(--olive-soft); }
.booking-actions .cart-note a { color: var(--pink-deep); font-weight: 700; }
.booking__panel [data-booking-result][hidden] { display: none; }

@media (max-width: 900px) {
  .booking__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .booking__row { grid-template-columns: 1fr; }
}

/* Payment step */
.pay-lead { text-align: center; color: var(--olive); font-weight: 600; margin-bottom: var(--s-4); }
.pay-options { display: grid; gap: var(--s-2); }
.pay-options .btn--checkout { margin-top: var(--s-2); }
.pay-options .cart-note { color: var(--olive-soft); margin: 0 0 var(--s-3); }
.pay-disabled {
  background: #FFF3E0; border: 3px dashed #E8C9A8; border-radius: 16px;
  padding: var(--s-4); text-align: center; color: #6E5240; margin-bottom: var(--s-3);
}
.pay-disabled strong { display: block; color: var(--olive); font-family: var(--font-display); margin-bottom: 4px; }
.pay-disabled p { margin: 0; font-size: var(--step--1); }

/* Pickup / delivery choice */
.mode-choice { border: 0; padding: 0; margin: 0 0 var(--s-3); }
.mode-choice legend { font-weight: 700; color: var(--olive); font-size: var(--step--1); padding: 0 0 6px; }
.mode-opt {
  display: flex; align-items: center; gap: 10px;
  background: #FFFDF8; border: 2px solid #E8C9A8; border-radius: 14px;
  padding: 12px 14px; margin-bottom: 8px; cursor: pointer;
}
.mode-opt:has(input:checked) { border-color: var(--pink-deep); background: #FFF4F8; }
.mode-opt input { accent-color: var(--pink-deep); width: 20px; height: 20px; flex: none; }
.mode-opt span { display: grid; }
.mode-opt strong { color: var(--olive); font-family: var(--font-display); }
.mode-opt small { color: var(--olive-soft); font-size: .82rem; }
.mode-note { font-size: var(--step--1); color: var(--olive-soft); margin: 4px 0 0; }
.addr-fields[hidden] { display: none; }

/* Payment summary */
.pay-summary { background: #FFFDF8; border: 3px dashed #E8C9A8; border-radius: 16px; padding: var(--s-4); margin-bottom: var(--s-3); }
.sum-row { display: flex; justify-content: space-between; font-size: var(--step--1); color: #6E5240; padding: 4px 0; }
.sum-row--total {
  border-top: 2px solid #E8C9A8; margin-top: 8px; padding-top: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); color: var(--olive);
}
.pay-cash { background: #F1F8EC; border: 3px solid #7FB069; border-radius: 16px; padding: var(--s-4); text-align: center; }
.pay-cash strong { display: block; font-family: var(--font-display); font-size: var(--step-1); color: #3F6330; margin-bottom: 4px; }
.pay-cash p { margin: 0; font-size: var(--step--1); color: #4F7A3C; }

/* Live delivery-fee hint under the postcode field */
.zip-hint { margin: 4px 0 0; font-size: .78rem; font-weight: 700; color: #B80B56; min-height: 1em; }
.zip-hint.is-free { color: #3F6330; }

/* =========================================================
   NO HORIZONTAL SCROLL IN THE CART
   Grid children default to min-width:auto, so a text input keeps its
   intrinsic width (~200px) and two of them side by side overflowed the
   460px panel. min-width:0 lets them shrink to the column.
   ========================================================= */
.booking__row { grid-template-columns: 1fr 1fr; }
.booking__row > *,
.checkout-form label,
.cart-line,
.pay-summary,
.mode-opt { min-width: 0; }

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.cart-body,
.cart-foot,
.cart-panel { overflow-x: hidden; }
.cart-body { overflow-y: auto; }

/* Long words in a narrow panel shouldn't push it wider either */
.cart-line__name, .receipt li, .mode-opt small { overflow-wrap: anywhere; }
.mode-opt span { min-width: 0; }

/* The address block is a grid too */
.addr-fields { display: block; }
.addr-fields > * { min-width: 0; }
.mode-note--free {
  background: #F1F8EC; border: 2px solid #7FB069; border-radius: 12px;
  padding: 8px 12px; color: #3F6330; font-weight: 700; margin-top: 8px;
}

/* =========================================================
   FORM ALIGNMENT
   Labels are grids; if one gains an extra child the sibling's input
   stretches to match. Pin everything to the top and to one height.
   ========================================================= */
.checkout-form label { align-content: start; }
.checkout-form input,
.checkout-form select { align-self: start; height: 48px; }
.checkout-form textarea { align-self: start; }
.booking__row { align-items: start; }
.zip-hint { margin: -4px 0 0; }

/* =========================================================
   CATEGORY TABS — every category reachable
   They were a single scrolling row with the scrollbar hidden, so on a
   desktop there was no way to reach the last ones. Wrap them instead.
   ========================================================= */
.tabs {
  flex-wrap: wrap;
  justify-content: center;
  overflow-x: visible;
  row-gap: var(--s-2);
}
@media (max-width: 700px) {
  /* On a phone, swiping is natural — keep one row but show it scrolls */
  .tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-right: 28px;
    mask-image: linear-gradient(to right, #000 88%, transparent 100%);
  }
  .tab { scroll-snap-align: start; }
}

/* Betalingsbesked før bestilling */
.pay-banner {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--pink-deep);
  font-weight: 700; font-size: var(--step--1);
  padding: 9px 18px; border-radius: var(--r-pill); margin-top: var(--s-3);
}
.pay-banner::before { content: "\1F4B5"; font-size: 1.05em; }
.pay-banner--inline { margin-top: 0; flex: 0 0 auto; }
.pay-upfront {
  text-align: center; font-size: var(--step--1); font-weight: 600;
  color: var(--olive-soft); margin: 0 0 var(--s-3);
}
.service-pills li[data-payment-note] { border-color: var(--white); color: var(--white); }

/* MobilePay-skærm */
.mp-box {
  background: #E8F1FB; border: 3px solid #5A78FF; border-radius: 18px;
  padding: var(--s-5); text-align: center; color: #24304F; margin-bottom: var(--s-3);
}
.mp-box p { margin: 0 0 8px; font-size: var(--step--1); }
.mp-box p:last-child { margin-bottom: 0; }
.mp-amount {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--step-3); color: #24304F; margin-bottom: var(--s-2) !important;
}
.mp-box strong { color: #1B2540; }

/* =========================================================
   AFHENTNING / LEVERING — læsbar opstilling
   ========================================================= */
.mode-choice legend {
  font-family: var(--font-display); font-weight: 700;
  color: var(--olive); font-size: var(--step-1); padding: 0 0 10px;
}
.mode-opt {
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border-radius: 16px;
}
.mode-opt input { margin-top: 3px; }
.mode-body { display: grid; gap: 3px; }
.mode-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--step-1); color: var(--olive); line-height: 1.15;
}
.mode-line { font-size: .85rem; color: #6E5240; line-height: 1.45; }
.mode-pay {
  font-size: .85rem; font-weight: 700; color: var(--pink-deep);
  margin-top: 5px; padding-top: 6px; border-top: 1px dashed #E8C9A8;
}
.mode-opt:has(input:checked) .mode-pay { color: var(--pink-deep); }
.mode-note { font-size: .82rem; color: var(--olive-soft); margin: 2px 0 0; }
