:root {
  --forest-950: #10291e;
  --forest-900: #173b2a;
  --forest-800: #24523b;
  --forest-700: #32644a;
  --cream-50: #fffdf7;
  --cream-100: #fbf6e9;
  --cream-200: #f1e7cf;
  --cream-300: #e4d2ac;
  --gold-400: #d8b978;
  --gold-500: #bd9551;
  --brick-600: #983725;
  --ink: #1d241e;
  --muted: #5f695f;
  --line: rgba(23, 59, 42, 0.16);
  --shadow: 0 24px 70px rgba(38, 48, 36, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--forest-950);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(23, 59, 42, 0.1);
  background: color-mix(in srgb, var(--cream-50) 90%, transparent);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-decoration: none;
}

.wordmark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: var(--forest-950);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:not(.nav-order):hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-order {
  padding: 10px 18px;
  color: white;
  background: var(--forest-900);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(216, 185, 120, 0.26), transparent 27rem),
    linear-gradient(180deg, var(--cream-50), var(--cream-100));
}

.hero::before {
  position: absolute;
  right: -8vw;
  bottom: -29rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(23, 59, 42, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  min-height: min(760px, calc(100svh - 74px));
  grid-template-columns: minmax(0, 0.93fr) minmax(410px, 0.85fr);
  align-items: center;
  gap: clamp(30px, 7vw, 96px);
  padding-block: 70px 80px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brick-600);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.3vw, 6.1rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--forest-900);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: white;
  background: var(--forest-900);
}

.button-primary:hover {
  background: var(--forest-800);
}

.button-secondary {
  color: var(--forest-900);
  background: transparent;
}

.button-secondary:hover {
  color: white;
  background: var(--forest-900);
}

.quick-facts {
  display: flex;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  display: grid;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.quick-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.quick-facts strong {
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.quick-facts span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}

.hero-mark::before,
.hero-mark::after {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  content: "";
}

.hero-mark::before {
  inset: 4%;
  background: #e9d7b3;
  box-shadow: var(--shadow);
}

.hero-mark::after {
  inset: 10%;
  border: 1px solid rgba(23, 59, 42, 0.18);
}

.hero-mark img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.sun-disc {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: 7%;
  width: 25%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--brick-600);
  opacity: 0.88;
}

.batch-note {
  position: absolute;
  right: -2%;
  bottom: 7%;
  display: grid;
  margin: 0;
  padding: 10px 18px 12px;
  color: white;
  background: var(--forest-900);
  border: 3px solid var(--cream-50);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(16, 41, 30, 0.18);
  font-size: 0.76rem;
  text-align: center;
  transform: rotate(-4deg);
}

.batch-note span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.occasion-strip {
  color: white;
  background: var(--forest-900);
}

.occasion-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.occasion-list span {
  position: relative;
  padding: 18px 24px 18px 39px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  text-align: center;
}

.occasion-list span::before {
  position: absolute;
  top: 50%;
  margin-left: -18px;
  color: var(--gold-400);
  content: "✦";
  transform: translateY(-50%);
}

.section {
  padding-block: clamp(80px, 10vw, 132px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.05rem;
}

.flavours {
  background:
    linear-gradient(90deg, rgba(23, 59, 42, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(23, 59, 42, 0.035) 1px, transparent 1px),
    var(--cream-50);
  background-size: 36px 36px;
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.flavour-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, white 84%, transparent);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.flavour-card:hover {
  border-color: rgba(23, 59, 42, 0.3);
  box-shadow: 0 16px 34px rgba(35, 52, 37, 0.08);
  transform: translateY(-3px);
}

.flavour-card::after {
  position: absolute;
  right: -22px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(216, 185, 120, 0.16);
  border-radius: 50%;
  content: "";
}

.flavour-card h3 {
  max-width: 290px;
  margin: 30px 0 10px;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  line-height: 1.15;
}

.flavour-card p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
}

.flavour-number {
  color: var(--gold-500);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.price-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 10px;
  color: white;
  background: var(--brick-600);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.quality-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.quality-row span {
  padding: 8px 14px;
  color: var(--forest-800);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-100);
  font-size: 0.78rem;
  font-weight: 750;
}

.cooking {
  color: white;
  background: var(--forest-950);
}

.cooking h2,
.cooking h3 {
  color: white;
}

.cooking .eyebrow {
  color: var(--gold-400);
}

.cooking-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.method-card {
  padding: clamp(24px, 3vw, 38px);
  color: var(--ink);
  border-radius: var(--radius-lg);
  background: var(--cream-50);
}

.method-card-gold {
  background: var(--cream-200);
}

.method-title {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.method-title p {
  margin: 0;
  color: var(--brick-600);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-title h3 {
  margin: 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.method-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: white;
  background: var(--forest-900);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.method-time {
  padding: 8px 11px;
  color: var(--forest-900);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.steps {
  margin: 28px 0 0;
  padding: 0;
  counter-reset: cooking-step;
  list-style: none;
}

.steps li {
  position: relative;
  display: grid;
  min-height: 72px;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  counter-increment: cooking-step;
}

.steps li::before {
  position: relative;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: white;
  background: var(--forest-900);
  border-radius: 50%;
  content: counter(cooking-step);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.steps li:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 30px;
  bottom: 0;
  left: 14px;
  width: 1px;
  background: var(--cream-300);
  content: "";
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  color: var(--forest-950);
  font-size: 0.94rem;
}

.steps span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.48;
}

.tip {
  margin: 14px 0 0;
  padding: 14px 16px;
  color: var(--forest-800);
  border: 1px solid rgba(23, 59, 42, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.care-grid article {
  display: grid;
  min-height: 120px;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.care-grid article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--forest-950);
  background: var(--gold-400);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 800;
}

.care-grid h3 {
  margin: 2px 0 4px;
  font-size: 0.94rem;
}

.care-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.order-section {
  background: var(--cream-200);
}

.order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: clamp(42px, 8vw, 110px);
  padding: clamp(34px, 6vw, 76px);
  color: white;
  border-radius: 40px;
  background:
    radial-gradient(circle at 90% 0%, rgba(216, 185, 120, 0.26), transparent 18rem),
    var(--forest-900);
  box-shadow: var(--shadow);
}

.order-copy h2 {
  max-width: 650px;
  margin-bottom: 22px;
  color: white;
}

.order-copy > p:not(.eyebrow):not(.small-print) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.06rem;
}

.order-copy .eyebrow {
  color: var(--gold-400);
}

.online-products {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.online-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.online-product p,
.online-product h3,
.online-product span {
  margin: 0;
}

.online-product p {
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.online-product h3 {
  margin-top: 2px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.online-product div > span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

.online-product button {
  display: grid;
  min-width: 148px;
  min-height: 50px;
  place-items: center;
  padding: 8px 16px;
  color: var(--forest-950);
  border: 0;
  border-radius: 14px;
  background: var(--gold-400);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
  transition: background-color 160ms ease, transform 160ms ease;
}

.online-product button span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.online-product button:hover {
  background: var(--cream-200);
  transform: translateY(-2px);
}

.cart-summary,
.catalog-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(16, 41, 30, 0.5);
  font-size: 0.82rem;
}

.cart-summary a {
  flex: 0 0 auto;
  color: var(--gold-400);
  font-weight: 850;
  text-underline-offset: 4px;
}

.catalog-empty {
  display: grid;
  justify-content: start;
  margin-block: 28px 0;
}

.catalog-empty span {
  color: rgba(255, 255, 255, 0.65);
}

.delivery-note {
  display: grid;
  max-width: 650px;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin: 30px 0 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.delivery-note strong {
  color: var(--gold-400);
}

.delivery-note span {
  color: rgba(255, 255, 255, 0.76);
}

.small-print {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

.facebook-card {
  display: grid;
  min-height: 363px;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 20px;
  color: var(--forest-950);
  border-radius: 26px;
  background: var(--cream-50);
  transform: rotate(1.5deg);
}

.facebook-qr {
  display: block;
  width: min(259px, 100%);
  border-radius: 14px;
  outline-offset: 5px;
  transition: transform 160ms ease;
}

.facebook-qr:hover {
  transform: scale(1.02);
}

.facebook-qr-code {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  shape-rendering: crispEdges;
}

.facebook-card p {
  display: grid;
  gap: 2px;
  margin: 0 4px 2px;
  text-align: center;
}

.facebook-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.facebook-card p span {
  color: var(--muted);
  font-size: 0.72rem;
}

.cart-body {
  background:
    radial-gradient(circle at 88% 8%, rgba(216, 185, 120, 0.28), transparent 24rem),
    var(--cream-100);
}

.cart-main {
  min-height: calc(100svh - 192px);
  padding-block: clamp(64px, 9vw, 110px);
}

.cart-shell {
  max-width: 920px;
}

.cart-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.cart-heading h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}

.cart-heading > p:last-child {
  color: var(--muted);
  font-size: 1.03rem;
}

.cart-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream-50);
  box-shadow: var(--shadow);
}

.cart-lines {
  padding-inline: clamp(22px, 5vw, 44px);
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.cart-line p,
.cart-line h2,
.cart-line span {
  margin: 0;
}

.cart-line p {
  color: var(--brick-600);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cart-line h2 {
  margin-top: 3px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.cart-line span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-line-actions > strong,
.cart-total strong {
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.cart-line-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.cart-quantity {
  display: inline-grid;
  grid-template-columns: 40px minmax(36px, auto) 40px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-100);
}

.cart-quantity form {
  display: contents;
}

.cart-quantity button {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--forest-900);
  cursor: pointer;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 850;
}

.cart-quantity button:hover,
.cart-quantity button:focus-visible {
  background: var(--cream-300);
}

.cart-quantity > strong {
  text-align: center;
}

.cart-remove-form button {
  padding: 2px;
  border: 0;
  background: transparent;
  color: var(--brick-600);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 5vw, 44px);
  background: var(--cream-200);
  font-weight: 800;
}

.cart-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(22px, 5vw, 44px);
}

.cart-next div {
  display: grid;
  gap: 3px;
}

.cart-next div > span {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(28px, 5vw, 46px);
  border-top: 1px solid var(--line);
  background: var(--forest-950);
}

.checkout-contact-copy {
  grid-column: 1 / -1;
  max-width: 660px;
  margin-bottom: 4px;
}

.checkout-contact-copy h2,
.checkout-contact-copy p {
  margin: 0;
}

.checkout-contact-copy h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.checkout-contact-copy > p:last-child {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.checkout-contact label {
  display: grid;
  gap: 7px;
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
}

.checkout-contact input {
  min-width: 0;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--cream-50);
  font: inherit;
}

.checkout-contact input:focus {
  border-color: var(--gold-400);
  outline: 0;
}

.checkout-contact .button {
  align-self: end;
  justify-self: start;
  border-color: var(--gold-400);
  background: var(--gold-400);
}

.checkout-contact small {
  align-self: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.checkout-unavailable {
  display: grid;
  gap: 3px;
  padding: 28px clamp(22px, 5vw, 44px);
  color: white;
  background: var(--forest-950);
}

.checkout-unavailable span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.checkout-body {
  min-height: 100svh;
  background:
    radial-gradient(circle at 86% 10%, rgba(216, 185, 120, 0.3), transparent 23rem),
    var(--cream-100);
}

.checkout-main {
  display: grid;
  min-height: calc(100svh - 74px);
  place-items: center;
  padding: 56px 20px;
}

.checkout-status-card {
  display: grid;
  width: min(680px, 100%);
  justify-items: start;
  padding: clamp(32px, 7vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream-50);
  box-shadow: var(--shadow);
}

.checkout-status-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 8vw, 5rem);
}

.checkout-status-card > p:not(.eyebrow) {
  color: var(--muted);
}

.checkout-status-card form {
  margin-top: 12px;
}

.otp-form {
  display: grid;
  width: min(360px, 100%);
  gap: 10px;
  margin-block: 16px 8px;
}

.otp-form label {
  color: var(--forest-950);
  font-size: 0.78rem;
  font-weight: 800;
}

.otp-form input {
  width: 100%;
  min-height: 58px;
  padding: 10px 14px;
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: 12px;
  background: white;
  font: 800 1.55rem/1 var(--font-sans);
  letter-spacing: 0.3em;
  text-align: center;
}

.otp-form input:focus {
  border-color: var(--forest-800);
  outline: 3px solid rgba(31, 91, 59, 0.15);
}

.otp-form .button {
  justify-self: stretch;
  margin-top: 4px;
}

.otp-form .form-error {
  margin: 2px 0;
  color: #9f2f25;
  font-size: 0.82rem;
  font-weight: 700;
}

.checkout-status-card small {
  max-width: 540px;
  margin-top: 12px;
  color: var(--muted);
}

.status-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--forest-950);
  border: 2px solid var(--gold-400);
  border-radius: 50%;
  background: var(--cream-200);
  font-size: 1.4rem;
  font-weight: 900;
}

.status-mark-ready {
  color: white;
  border-color: var(--forest-800);
  background: var(--forest-800);
}

.status-mark-muted {
  color: var(--muted);
  border-color: var(--line);
  background: var(--cream-200);
}

.status-note,
.next-slice-note {
  padding: 16px 18px;
  border-left: 3px solid var(--gold-400);
  background: var(--cream-100);
  font-size: 0.86rem;
}

.text-link {
  margin-top: 22px;
  color: var(--forest-800);
  font-size: 0.84rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.verified-summary {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 12px 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.verified-summary div {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--cream-100);
}

.verified-summary dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.verified-summary dd {
  margin: 0;
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.next-slice-note {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
}

.next-slice-note span {
  color: var(--muted);
}

.dev-email-main {
  min-height: calc(100svh - 74px);
  padding-block: clamp(54px, 8vw, 90px);
}

.dev-email-shell {
  max-width: 940px;
}

.dev-email-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.dev-email-heading h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.dev-email-heading > p:last-child {
  color: var(--muted);
}

.dev-email-list {
  display: grid;
  gap: 14px;
}

.dev-email-message {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream-50);
  box-shadow: 0 14px 40px rgba(38, 48, 36, 0.08);
}

.dev-email-message h2,
.dev-email-message span,
.dev-email-message small {
  margin: 0;
}

.dev-email-message .dev-otp-code {
  margin: 14px 0 0;
  color: var(--forest-950);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.dev-email-message h2 {
  margin-block: 4px;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.dev-email-message span,
.dev-email-message small {
  display: block;
  color: var(--muted);
  overflow-wrap: anywhere;
  font-size: 0.74rem;
}

.cart-empty {
  display: grid;
  min-height: 370px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 40px;
  text-align: center;
}

.cart-empty > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--gold-500);
  border: 2px solid var(--gold-400);
  border-radius: 50%;
  font-size: 1.4rem;
}

.cart-empty h2,
.cart-empty p {
  margin: 0;
}

.cart-empty p {
  color: var(--muted);
}

.cart-empty .button {
  margin-top: 12px;
}

footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--forest-950);
}

.footer-inner {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  display: grid;
  margin: 0;
}

.footer-inner strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.footer-inner span,
.footer-inner a {
  font-size: 0.76rem;
}

.footer-inner a {
  color: white;
  font-weight: 750;
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 84px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-mark {
    width: min(620px, 92vw);
    margin-inline: auto;
  }

  .flavour-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .order-card {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 44px;
  }

  .online-product {
    grid-template-columns: 1fr;
  }

  .online-product button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(1180px, calc(100% - 28px));
    --radius-lg: 24px;
  }

  .header-inner {
    min-height: 66px;
  }

  .wordmark span {
    display: none;
  }

  .wordmark img {
    width: 42px;
    height: 42px;
  }

  nav {
    gap: 16px;
  }

  nav a {
    font-size: 0.78rem;
  }

  nav a:nth-child(2) {
    display: none;
  }

  nav[aria-label="Main navigation"] a:first-child {
    display: none;
  }

  .nav-order {
    padding: 8px 12px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 68px 56px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .quick-facts {
    justify-content: space-between;
  }

  .quick-facts li {
    padding-inline: 16px;
  }

  .hero-mark {
    width: 100%;
  }

  .batch-note {
    right: 0;
    bottom: 3%;
  }

  .occasion-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .occasion-list span {
    padding: 14px 12px 14px 28px;
    font-size: 0.82rem;
    text-align: left;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
  }

  .section-heading > p {
    margin: 0;
    font-size: 0.96rem;
  }

  .flavour-grid {
    grid-template-columns: 1fr;
  }

  .flavour-card {
    min-height: 190px;
    padding: 26px;
  }

  .method-card {
    padding: 22px;
  }

  .method-title {
    grid-template-columns: auto 1fr;
  }

  .method-time {
    grid-column: 2;
    justify-self: start;
  }

  .steps li {
    min-height: 82px;
  }

  .order-section {
    padding-inline: 0;
  }

  .order-card {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 46px 24px;
    border-radius: 0;
  }

  .delivery-note {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .facebook-card {
    width: min(320px, 100%);
    margin-inline: auto;
  }

  .cart-next {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-line {
    grid-template-columns: 1fr;
  }

  .cart-line-actions {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    width: 100%;
  }

  .cart-line-actions > strong {
    justify-self: end;
  }

  .cart-remove-form {
    grid-column: 1 / -1;
  }

  .cart-next .button {
    width: 100%;
  }

  .checkout-contact {
    grid-template-columns: 1fr;
  }

  .checkout-contact .button {
    width: 100%;
  }

  .verified-summary {
    grid-template-columns: 1fr;
  }

  .dev-email-message {
    grid-template-columns: 1fr;
  }

  .dev-email-message .button {
    width: 100%;
  }

  .footer-inner {
    min-height: 140px;
  }
}

.fulfilment-shell {
  display: grid;
  gap: 28px;
  padding-bottom: 72px;
}

.fulfilment-search,
.selected-fulfilment {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid rgba(23, 59, 42, 0.15);
  border-radius: var(--radius-lg);
  background: #fffdf7;
  box-shadow: 0 18px 55px rgba(38, 42, 31, 0.07);
}

.fulfilment-search > label,
.address-combobox {
  display: grid;
  gap: 7px;
  color: var(--forest-900);
  font-weight: 750;
}

.fulfilment-search select,
.fulfilment-search input {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid rgba(23, 59, 42, 0.34);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.address-combobox {
  position: relative;
}

.address-suggestions {
  position: absolute;
  z-index: 10;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 59, 42, 0.28);
  border-radius: 0 0 14px 14px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 40, 28, 0.16);
}

.address-suggestions button {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 0;
  border-bottom: 1px solid rgba(23, 59, 42, 0.1);
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.address-suggestions button:last-child {
  border-bottom: 0;
}

.address-suggestions button:hover,
.address-suggestions button[aria-selected="true"] {
  background: var(--cream-100);
  color: var(--forest-900);
}

.address-result-status {
  min-height: 1.35em;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.address-candidates {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(23, 59, 42, 0.18);
  border-radius: 16px;
  background: var(--cream-100);
}

.address-candidates label {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
}

.address-candidates input {
  width: 20px;
  min-height: 20px;
}

.fulfilment-message {
  margin: 0;
  padding: 14px 18px;
  border-left: 4px solid var(--gold-500);
  border-radius: 8px;
  background: var(--cream-100);
}

.fulfilment-results {
  display: grid;
  gap: 22px;
}

.fulfilment-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fulfilment-option-card {
  display: grid;
  gap: 13px;
  padding: clamp(21px, 4vw, 30px);
  border: 1px solid rgba(23, 59, 42, 0.15);
  border-radius: var(--radius-lg);
  background: #fffdf7;
  box-shadow: 0 14px 42px rgba(38, 42, 31, 0.07);
}

.fulfilment-option-card h3,
.selected-fulfilment h2 {
  margin: 0;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.fulfilment-option-card p,
.fulfilment-option-card small,
.selected-fulfilment p {
  margin: 0;
}

.fulfilment-option-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.fulfilment-option-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.fulfilment-option-card dd {
  margin: 0;
  text-align: right;
}

.fulfilment-option-card form,
.fulfilment-option-card .button {
  width: 100%;
}

@media (max-width: 720px) {
  .fulfilment-option-grid {
    grid-template-columns: 1fr;
  }

  .fulfilment-option-card dl div {
    display: grid;
    gap: 2px;
  }

  .fulfilment-option-card dd {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .hero-actions .button {
    width: 100%;
  }

  .quick-facts li {
    padding-inline: 12px;
  }

  .quick-facts strong {
    font-size: 1.45rem;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Order creation vertical slice */
.order-checkout-main,
.order-confirmation-main {
  padding: 56px 0 88px;
}

.order-checkout-shell,
.order-confirmation-shell {
  width: min(920px, calc(100% - 32px));
  margin-inline: auto;
}

.order-review-card,
.order-success-card {
  max-width: none;
  margin-bottom: 24px;
}

.place-order-form {
  display: grid;
  gap: 24px;
}

.pickup-options,
.policy-panel,
.order-submit-panel,
.bank-payment-card,
.pickup-confirmation-card {
  margin: 0;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(23, 59, 42, 0.15);
  border-radius: var(--radius-lg);
  background: #fffdf7;
  box-shadow: 0 18px 55px rgba(38, 42, 31, 0.08);
}

.pickup-options {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.pickup-options legend {
  margin-bottom: 18px;
  padding: 0;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  font-weight: 700;
}

.pickup-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(23, 59, 42, 0.18);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pickup-option:hover {
  border-color: var(--forest-900);
  transform: translateY(-1px);
}

.pickup-option:has(input:checked) {
  border-color: var(--forest-900);
  box-shadow: 0 0 0 3px rgba(35, 101, 68, 0.12);
}

.pickup-option input,
.terms-check input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--forest-900);
}

.pickup-option-copy {
  display: grid;
  gap: 5px;
  color: var(--muted);
}

.pickup-option-copy strong {
  color: var(--forest-900);
  font-size: 1.08rem;
}

.pickup-option-copy small {
  margin-top: 5px;
  line-height: 1.55;
}

.policy-panel h2,
.bank-payment-card h2,
.pickup-confirmation-card h2 {
  margin: 4px 0 18px;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}

.policy-panel details {
  padding: 16px 0;
  border-top: 1px solid rgba(23, 59, 42, 0.14);
}

.policy-panel summary {
  color: var(--forest-900);
  font-weight: 750;
  cursor: pointer;
}

.policy-panel details p {
  max-width: 72ch;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.terms-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: var(--cream-100);
  color: var(--forest-900);
  font-weight: 700;
}

.order-submit-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: var(--forest-900);
  color: #fff;
}

.order-submit-panel > div {
  display: grid;
  gap: 5px;
}

.order-submit-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.order-submit-panel small {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.order-confirmation-shell {
  display: grid;
  gap: 24px;
}

.bank-payment-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.bank-payment-heading > p {
  max-width: 310px;
  margin: 0 0 18px;
  text-align: right;
}

.bank-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.bank-fields > div {
  padding: 18px;
  border-radius: 15px;
  background: var(--cream-100);
}

.bank-fields dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bank-fields dd {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 0;
}

.bank-fields code {
  color: var(--forest-900);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1rem;
  font-weight: 800;
}

.bank-fields button {
  padding: 7px 10px;
  border: 1px solid rgba(23, 59, 42, 0.25);
  border-radius: 999px;
  background: #fff;
  color: var(--forest-900);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.bank-reference {
  border: 2px solid var(--gold-400);
}

.bank-reference code {
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.payment-help {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.pickup-confirmation-card p {
  margin: 8px 0;
}

.pickup-confirmation-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.delivery-check {
  display: grid;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid rgba(23, 59, 42, 0.14);
}

.delivery-check h2,
.delivery-check p {
  margin: 4px 0;
}

.delivery-check form,
.delivery-address-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.delivery-check label,
.delivery-address-fields label {
  display: grid;
  gap: 6px;
  color: var(--forest-900);
  font-weight: 750;
}

.delivery-check input,
.delivery-address-fields input,
.delivery-address-fields textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(23, 59, 42, 0.34);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.selected-delivery {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 16px;
  background: var(--cream-100);
}

.selected-delivery small {
  color: var(--muted);
}

.delivery-offer-list {
  display: grid;
  gap: 18px;
}

.delivery-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr);
  gap: 24px;
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(23, 59, 42, 0.15);
  border-radius: var(--radius-lg);
  background: #fffdf7;
  box-shadow: 0 18px 55px rgba(38, 42, 31, 0.08);
}

.delivery-offer-card h2 {
  margin: 4px 0 10px;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.delivery-offer-card dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.delivery-offer-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(23, 59, 42, 0.12);
}

.delivery-offer-card dd {
  margin: 0;
}

.delivery-offer-card form,
.delivery-offer-card > p {
  grid-column: 1 / -1;
  margin: 0;
}

.delivery-address-panel {
  display: grid;
  gap: 14px;
}

.delivery-address-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.delivery-address-fields .wide-field {
  grid-column: 1 / -1;
}

.delivery-address-fields textarea {
  min-height: 88px;
  resize: vertical;
}

.dev-order-list {
  display: grid;
  gap: 18px;
}

.dev-order-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.8fr);
  gap: 28px;
  padding: 26px;
  border: 1px solid rgba(23, 59, 42, 0.14);
  border-radius: 20px;
  background: #fffdf7;
}

.dev-order-card h2 {
  margin: 5px 0;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
}

.dev-order-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0;
}

.dev-order-card dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dev-order-card dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .order-checkout-shell,
  .order-confirmation-shell {
    width: min(100% - 20px, 920px);
  }

  .order-submit-panel,
  .bank-payment-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .order-submit-panel .button {
    width: 100%;
  }

  .bank-payment-heading > p {
    max-width: none;
    text-align: left;
  }

  .bank-fields,
  .dev-order-card,
  .dev-order-card dl,
  .delivery-check form,
  .delivery-address-fields,
  .delivery-offer-card {
    grid-template-columns: 1fr;
  }

  .delivery-address-fields .wide-field {
    grid-column: auto;
  }
}
