:root {
  --ink: #1b1915;
  --gold: #a9823b;
  --paper: #f5f1e9;
  --line: #d8d0c2;
  --muted: #6c6459;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, sans-serif;
}
.order-header {
  height: 76px;
  padding: 8px max(22px, 4vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #171612;
  color: #fff;
}
.order-header img {
  width: 104px;
  height: 58px;
  object-fit: contain;
}
.order-header span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #cfb77e;
}
main {
  max-width: 1440px;
  margin: auto;
  padding: 48px max(22px, 4vw) 80px;
}
.order-intro {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}
.eyebrow {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
}
.order-intro h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  font-weight: 400;
}
.order-intro h1 em {
  color: var(--gold);
  font-weight: 400;
}
.lead {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.pickup-note {
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: #fff;
}
.pickup-note strong,
.pickup-note span {
  display: block;
}
.pickup-note strong {
  font-family: Georgia, serif;
  font-size: 20px;
}
.pickup-note span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.category-tabs {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}
.category-tabs button {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: 700 14px Arial;
  white-space: nowrap;
  cursor: pointer;
}
.category-tabs button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 38px;
  align-items: start;
  padding-top: 32px;
}
.products-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
}
.products-heading h2,
.basket h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}
.products-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.product-card {
  min-height: 168px;
  display: grid;
  grid-template-columns: 132px 1fr;
  background: #fff;
  border: 1px solid #e3ddd3;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card.no-image {
  grid-template-columns: 74px 1fr;
}
.drink-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9b96f;
  color: #fff;
  font: italic 42px Georgia;
}
.product-copy {
  display: flex;
  flex-direction: column;
  padding: 18px;
}
.product-copy h3 {
  margin: 0;
  font: 21px Georgia;
}
.product-copy p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.product-copy > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.product-copy strong {
  font-size: 15px;
}
.product-copy button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.product-copy button span {
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
}
.basket {
  position: sticky;
  top: 20px;
  padding: 26px;
  background: #fff;
  border-top: 4px solid var(--gold);
  box-shadow: 0 12px 35px rgba(37, 31, 22, 0.09);
}
.basket h2 {
  display: flex;
  justify-content: space-between;
}
.basket h2 span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper);
  font: 700 14px Arial;
}
.basket-lines {
  min-height: 92px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.basket-empty {
  color: var(--muted);
  font-size: 14px;
}
.basket-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
}
.basket-line strong,
.basket-line span {
  display: block;
}
.basket-line strong {
  font-size: 14px;
}
.basket-line > div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}
.quantity {
  display: flex;
  align-items: center;
  gap: 9px;
}
.quantity button {
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}
.basket-total {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 18px;
}
.pickup-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pickup-fields label {
  font-size: 11px;
  font-weight: 800;
}
.pickup-fields input,
.pickup-fields select {
  width: 100%;
  height: 43px;
  margin-top: 6px;
  padding: 0 9px;
  border: 1px solid var(--line);
  background: #fff;
}
.continue-button {
  width: 100%;
  margin-top: 17px;
  padding: 14px;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}
.basket-footnote {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.other-products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 22px 24px;
  background: #e9e2d5;
}
.other-products strong {
  font: 19px Georgia;
}
.other-products p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.other-products a {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .order-intro {
    grid-template-columns: 1fr;
  }
  .order-layout {
    grid-template-columns: 1fr;
  }
  .basket {
    position: static;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  main {
    padding-top: 30px;
  }
  .order-header span {
    max-width: 160px;
    text-align: right;
  }
  .order-intro {
    gap: 24px;
  }
  .order-intro h1 {
    font-size: 44px;
  }
  .product-card {
    grid-template-columns: 105px 1fr;
  }
  .products-heading {
    display: block;
  }
  .products-heading > p {
    margin-top: 7px;
  }
  .other-products {
    display: block;
  }
  .other-products a {
    display: inline-block;
    margin-top: 14px;
  }
  .pickup-fields {
    grid-template-columns: 1fr;
  }
}

/* Integreret caféudgave */
.order-preview-page {
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
}
.order-preview-page .site-header {
  max-width: none;
}
.order-preview-page .brand-logo {
  width: 112px;
  height: 58px;
  object-fit: contain;
}
.order-preview-page .preview-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.order-preview-page .active-preview {
  border-color: var(--gold);
}
.order-preview-page main {
  width: 100%;
  max-width: none;
  padding: 0;
}
.order-preview-page .booking-choice,
.order-preview-page .order-intro,
.order-preview-page .category-tabs,
.order-preview-page .order-layout {
  width: min(1400px, 100%);
  margin-right: auto;
  margin-left: auto;
}
.order-preview-page .booking-choice {
  padding: clamp(68px, 8vw, 112px) 8%;
}
.order-preview-page .choice-heading h1,
.order-preview-page .order-intro h1 {
  font-family: var(--serif);
  letter-spacing: -0.045em;
}
.order-preview-page .choice-heading > p,
.order-preview-page .lead {
  font-size: 17px;
}
.order-preview-page .choice-cards {
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.order-preview-page .choice-card {
  min-height: 220px;
  padding: 34px 7%;
  border: 0;
  background: transparent;
}
.order-preview-page .choice-card + .choice-card {
  border-left: 1px solid var(--line);
}
.order-preview-page .choice-card-active {
  background: var(--dark);
  color: var(--white);
}
.order-preview-page .choice-card h2 {
  font-family: var(--serif);
  font-size: 32px;
}
.order-preview-page .choice-card p,
.order-preview-page .products-heading > p,
.order-preview-page .product-copy p {
  color: var(--muted);
  font-size: 15px;
}
.order-preview-page .choice-card-active p {
  color: #d2cbbd;
}
.order-preview-page .choice-card a {
  font-size: 14px;
  font-weight: 400;
  border-color: var(--gold);
}
.order-preview-page .order-intro {
  margin-top: 0;
  margin-bottom: 0;
  padding: clamp(70px, 8vw, 110px) 8% 50px;
}
.order-preview-page .pickup-note {
  padding: 24px 0;
  border-top: 1px solid var(--gold);
  border-right: 0;
  border-bottom: 1px solid var(--line);
  border-left: 0;
  background: transparent;
}
.order-preview-page .category-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  padding: 0 8% 28px;
}
.order-preview-page .category-caption {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--muted);
  font: 600 0.875rem/1.4 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.order-preview-page .category-tabs button {
  min-height: 64px;
  min-width: 0;
  padding: 18px 12px;
  margin: 0;
  border: 1px solid var(--muted);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: 600 1.125rem/1.35 var(--sans);
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.order-preview-page .category-tabs button:hover {
  border-color: var(--ink);
  background: var(--paper);
}
.order-preview-page .category-tabs button.active,
.order-preview-page .category-tabs button.active:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
  box-shadow: inset 0 -4px 0 var(--gold-light);
}
.order-preview-page .category-tabs button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.order-preview-page .order-layout {
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(50px, 8vw, 110px);
  padding: 42px 8% 110px;
}
.order-preview-page .products-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.order-preview-page .category-story {
  margin: 24px 0 12px;
  padding: clamp(24px, 3vw, 36px);
  border: 0;
  border-top: 2px solid var(--gold-light);
  background: var(--dark);
  color: var(--white);
}
.order-preview-page .category-story[hidden] {
  display: none;
}
.order-preview-page .category-story-kicker {
  max-width: none;
  margin: 0 0 12px;
  color: var(--gold-light);
  font: 600 0.875rem/1.6 var(--sans);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.order-preview-page .category-story h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.875rem, 3.2vw, 2.625rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.order-preview-page .category-story-copy {
  max-width: 44ch;
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.65;
}
.order-preview-page .products-heading h2,
.order-preview-page .basket h2 {
  font-family: var(--serif);
}
.order-preview-page .product-grid {
  display: block;
}
.order-preview-page .product-card,
.order-preview-page .product-card.no-image {
  display: block;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.order-preview-page .product-card img,
.order-preview-page .drink-mark {
  display: none;
}
.order-preview-page .product-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 24px;
  padding: 22px 0;
}
.order-preview-page .product-copy h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
}
.order-preview-page .product-copy p {
  grid-column: 1;
  margin: 0;
}
.order-preview-page .product-copy > div {
  grid-column: 2;
  grid-row: 1 / 3;
  gap: 22px;
}
.order-preview-page .product-copy button {
  padding: 6px 0;
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 400;
}
.order-preview-page .product-copy button span {
  background: transparent;
  color: var(--gold);
  font-size: 18px;
}
.order-preview-page .other-products {
  padding: 24px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.order-preview-page .other-products a {
  border-bottom: 1px solid var(--gold);
  font-size: 14px;
  font-weight: 400;
}
.order-preview-page .basket {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(45, 38, 28, 0.18);
  border-top: 1px solid rgba(45, 38, 28, 0.18);
  background: var(--paper);
  box-shadow: none;
}
.order-preview-page .pickup-fields input,
.order-preview-page .pickup-fields select {
  min-height: 52px;
  border: 1px solid rgba(45, 38, 28, 0.26);
  background: rgba(255, 255, 255, 0.58);
  font-size: 16px;
}
.order-preview-page .pickup-fields label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.order-preview-page .pickup-notice {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.order-preview-page .pickup-notice-title {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}
.order-preview-page #pickup-notice-description {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}
.order-preview-page .pickup-notice-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-height: 44px;
  margin-top: 8px;
  padding: 8px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
.order-preview-page .pickup-notice-check input {
  appearance: auto;
  width: 20px;
  height: 20px;
  min-height: 0;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--gold);
}
.order-preview-page .pickup-notice-check input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.order-preview-page .continue-button {
  min-height: 54px;
  background: var(--dark);
  font-size: 14px;
  font-weight: 400;
}
.order-preview-page .customer-fields {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}
.order-preview-page .customer-fields legend {
  padding: 0 0 13px;
  font-family: var(--serif);
  font-size: 23px;
}
.order-preview-page .customer-fields label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.order-preview-page .customer-fields label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.order-preview-page .customer-fields input,
.order-preview-page .customer-fields textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(45, 38, 28, 0.26);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.58);
}
.order-preview-page .customer-fields textarea { min-height: 82px; resize: vertical; }
.order-preview-page .continue-button:disabled { opacity: 0.45; cursor: not-allowed; }
.order-preview-page .booking-trap { position: absolute; left: -9999px; }
.order-preview-page .order-result { margin-top: 14px; color: var(--muted); font-size: 13px; }
.order-preview-page .order-result.success { color: #3f6848; }
.order-preview-page .order-result.error { color: #963d34; }
.order-preview-page .basket-footnote {
  font-size: 13px;
}
@media (max-width: 1150px) {
  .order-preview-page .preview-label {
    display: none;
  }
}
@media (max-width: 900px) {
  .order-preview-page .choice-card + .choice-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .order-preview-page .order-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 800px) {
  .order-preview-page .booking-choice,
  .order-preview-page .order-intro,
  .order-preview-page .category-tabs,
  .order-preview-page .order-layout {
    padding-right: 7%;
    padding-left: 7%;
  }
}
@media (max-width: 560px) {
  .order-preview-page .category-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .order-preview-page .category-tabs button {
    min-height: 58px;
    padding: 15px 10px;
    font-size: 1rem;
  }
  .order-preview-page .booking-choice {
    padding-top: 55px;
    padding-bottom: 60px;
  }
  .order-preview-page .choice-card {
    padding: 25px 18px;
  }
  .order-preview-page .order-intro {
    padding-top: 60px;
  }
  .order-preview-page .product-copy {
    grid-template-columns: 1fr;
  }
  .order-preview-page .product-copy > div {
    grid-column: 1;
    grid-row: auto;
  }
}

html {
  scroll-behavior: smooth;
}
.booking-choice {
  padding: 18px 0 58px;
  border-bottom: 1px solid var(--line);
}
.choice-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 60px;
  align-items: end;
}
.choice-heading .eyebrow {
  grid-column: 1 / -1;
}
.choice-heading h1 {
  margin: 0;
  font: 400 clamp(40px, 5vw, 68px) / 0.98 Georgia, serif;
}
.choice-heading h1 em {
  color: var(--gold);
  font-weight: 400;
}
.choice-heading > p {
  max-width: 500px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.choice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
}
.choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}
.choice-card-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.choice-number {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.choice-card h2 {
  margin: 0 0 10px;
  font: 400 29px Georgia, serif;
}
.choice-card p {
  max-width: 440px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.choice-card-active p {
  color: #d5d0c8;
}
.choice-card a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.choice-card small {
  position: absolute;
  top: 25px;
  right: 24px;
  color: #cfb77e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.booking-choice + .order-intro {
  margin-top: 58px;
}
@media (max-width: 900px) {
  .choice-heading,
  .choice-cards {
    grid-template-columns: 1fr;
  }
  .choice-heading {
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .booking-choice {
    padding-top: 4px;
  }
  .choice-heading h1 {
    font-size: 42px;
  }
  .choice-cards {
    gap: 10px;
    margin-top: 26px;
  }
  .choice-card {
    grid-template-columns: 34px 1fr;
    min-height: 0;
    padding: 22px 18px;
  }
  .choice-card small {
    position: static;
    grid-column: 2;
    margin-top: -6px;
  }
}
.order-test-notice { display:flex; justify-content:space-between; align-items:center; gap:24px; max-width:1312px; margin:0 auto 30px; padding:22px 26px; border:1px solid var(--line); border-left:3px solid var(--gold); background:var(--white); }
.order-test-notice p { margin:6px 0 0; font-size:.875rem; line-height:1.6; }
.order-test-notice a { color:var(--ink); font-weight:600; white-space:nowrap; text-underline-offset:5px; }
.order-preview-page .fill-test-details, .order-test-receipt button { padding:10px 0; background:transparent; border:0; border-bottom:1px solid var(--gold); color:var(--ink); font:600 .875rem/1.5 var(--sans); cursor:pointer; }
.order-preview-page .fill-test-details { margin:20px 0 0; }
.order-preview-page .coffee-choice { display:flex; align-items:center; gap:12px; margin-top:14px; font-size:.875rem; }
.order-preview-page .coffee-choice select { padding:9px 12px; background:var(--white); border:1px solid var(--line); font:inherit; color:var(--ink); }
.order-test-receipt { margin-top:20px; padding:20px; background:var(--white); border:1px solid var(--gold); }
.order-test-receipt p { font-size:1rem; line-height:1.65; }
.order-test-receipt a, .order-test-receipt button { display:block; margin-top:14px; color:var(--ink); }
.order-test-receipt[hidden] { display:none; }
@media(max-width:700px) { .order-test-notice { margin:0 24px 24px; padding:20px; flex-direction:column; align-items:flex-start; gap:16px; } }

/* A quiet part of the menu: the contact stays visible; extra detail is optional. */
.order-preview-page .products-heading { margin-bottom: 0; }
.order-preview-page .order-allergens {
  margin: 0;
  padding: 15px 0 17px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  scroll-margin-top: 110px;
}
.order-preview-page .order-allergens p { margin: 0; font-size: .875rem; line-height: 1.6; }
.order-preview-page .allergen-contact strong { margin-right: 10px; font-weight: 600; color: var(--ink); }
.order-preview-page .order-allergens a,
.order-preview-page .basket-allergens a { color: var(--ink); text-underline-offset: 4px; }
.order-preview-page a[href="tel:+4579306700"] { white-space: nowrap; }
.order-preview-page .allergen-details { margin-top: 5px; font-size: .875rem; line-height: 1.6; }
.order-preview-page .allergen-details summary {
  display: list-item;
  width: fit-content;
  padding: 3px 0;
  color: var(--ink);
  cursor: pointer;
}
.order-preview-page .allergen-details summary::marker { color: var(--gold); font-size: .75em; }
.order-preview-page .allergen-details summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.order-preview-page .allergen-details > div { max-width: 64ch; padding-top: 10px; }
.order-preview-page .allergen-details > div p { margin-bottom: 10px; }
.order-preview-page .basket-allergens {
  padding: 16px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
  font-size: .875rem;
  line-height: 1.6;
  color: var(--muted);
}
.order-preview-page .basket-allergens strong { display: inline; font-weight: 600; color: var(--ink); }
.order-preview-page .coffee-choice { grid-column: 1 / -1; flex-wrap: wrap; }
.order-preview-page .coffee-choice span { flex-basis: 100%; color: var(--muted); line-height: 1.5; }
@media (max-width: 560px) {
  .order-preview-page .order-allergens { scroll-margin-top: 20px; }
}
