:root {
  --pink: #ef6d9e;
  --pink-soft: #ffe8f1;
  --blue: #5fa1da;
  --blue-soft: #e8f4ff;
  --cream: #fffafc;
  --white: #ffffff;
  --chocolate: #351713;
  --ink: #231819;
  --muted: #76666a;
  --line: #f0dbe4;
  --shadow: 0 22px 60px rgba(77, 39, 54, 0.14);
  --radius: 8px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 232, 241, .58), rgba(255, 255, 255, 0) 520px),
    linear-gradient(135deg, rgba(232, 244, 255, .68), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 980px, rgba(232, 244, 255, .42) 1260px, rgba(255, 232, 241, .34) 1700px, rgba(255, 255, 255, 0) 2200px),
    var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.drawer-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.announcement {
  min-height: 38px;
  padding: 10px 20px;
  color: var(--white);
  background: linear-gradient(90deg, var(--pink), var(--blue));
  font-size: 14px;
  font-weight: 750;
  text-align: center;
  letter-spacing: .01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 252, .9);
  border-bottom: 1px solid rgba(240, 219, 228, .9);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: 154px;
}

.brand-logo {
  width: 154px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(53, 23, 19, .08));
}

.site-nav {
  display: flex;
  justify-content: center;
  padding-right: 154px;
  gap: clamp(14px, 2.6vw, 34px);
  font-size: 14px;
  font-weight: 800;
  color: var(--chocolate);
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s var(--ease);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.basket-button,
.button,
.icon-button,
.quantity button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.basket-button {
  position: fixed;
  right: clamp(18px, 4vw, 42px);
  top: 74px;
  bottom: auto;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border: 2px solid rgba(255, 255, 255, .86);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(77, 39, 54, .2);
  font-size: 14px;
  font-weight: 850;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

body.is-scrolled .basket-button {
  gap: 5px;
  min-width: 62px;
  min-height: 44px;
  padding: 7px 8px;
}

body.is-scrolled .basket-button span:not(.basket-count):not(.basket-icon) {
  display: none;
}

body.drawer-open .basket-button,
body.modal-open .basket-button {
  display: none;
}

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

.basket-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, .18);
  border-radius: 999px;
}

body.is-scrolled .basket-icon {
  width: 28px;
  height: 28px;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.basket-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: var(--chocolate);
  background: var(--white);
  border-radius: 999px;
  font-size: 12px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(250px, .3fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: clamp(520px, 58vw, 710px);
  overflow: hidden;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 92px);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 250, 252, .98) 0%, rgba(255, 250, 252, .86) 34%, rgba(255, 250, 252, .38) 64%, rgba(255, 250, 252, .08) 100%),
    linear-gradient(180deg, rgba(255, 250, 252, .12), rgba(255, 250, 252, .88)),
    url("assets/hero-background-v2.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: clamp(20px, 6vw, 92px);
  bottom: clamp(18px, 4vw, 58px);
  z-index: -1;
  width: clamp(150px, 18vw, 260px);
  aspect-ratio: 1;
  content: "";
  background: rgba(255, 232, 241, .72);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  box-shadow: 0 24px 70px rgba(53, 23, 19, .12);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--chocolate);
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
}

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 88px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.2vw, 58px);
}

h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 18px;
}

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

.hero-ticket {
  align-self: end;
  display: grid;
  gap: 14px;
  width: min(300px, 100%);
  margin-left: auto;
  padding: 0 0 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-ticket div {
  display: grid;
  gap: 4px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(53, 23, 19, .12);
}

.hero-ticket span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-ticket strong {
  color: var(--chocolate);
  font-size: 16px;
  text-shadow: 0 1px 14px rgba(255, 255, 255, .92);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #f58bb6);
  box-shadow: 0 16px 30px rgba(239, 109, 158, .28);
}

.button-secondary,
.button-ghost {
  color: var(--chocolate);
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 12px 22px rgba(95, 161, 218, .08);
  backdrop-filter: blur(10px);
}

.button-full {
  width: 100%;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 18px;
  scroll-margin-top: 150px;
}

.shop-section {
  position: relative;
}

.shop-section::before {
  position: absolute;
  inset: 32px -10px 12px;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 232, 241, .62), transparent 36%),
    radial-gradient(circle at 80% 22%, rgba(232, 244, 255, .62), transparent 38%);
  border-radius: 0;
  filter: blur(10px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

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

.product-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  flex-direction: column;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.product-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: linear-gradient(135deg, rgba(255, 232, 241, .52), rgba(232, 244, 255, .7));
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(77, 39, 54, .055);
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: .96;
  transition: transform .35s var(--ease);
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--chocolate);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 232, 241, .9);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.product-body {
  display: flex;
  height: 100%;
  padding: 20px 2px 0;
  flex-direction: column;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.serves {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.price {
  color: var(--pink);
  font-size: 20px;
  font-weight: 950;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
}

.tags span {
  padding: 7px 9px;
  color: var(--chocolate);
  background: rgba(255, 232, 241, .68);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.product-body .button {
  margin-top: auto;
}

.text-link {
  color: var(--pink);
  font-weight: 950;
  text-decoration: none;
}

.bigger-drops {
  position: relative;
  margin-top: clamp(12px, 3vw, 34px);
  padding-top: clamp(50px, 7vw, 78px);
  padding-bottom: clamp(58px, 8vw, 98px);
}

.bigger-drops::before {
  position: absolute;
  inset: 0 -22px 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(232, 244, 255, .58), rgba(255, 232, 241, .5) 52%, rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .12);
  border-radius: 54px;
}

.drop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 34px);
}

.drop-cards article {
  min-height: 260px;
  padding: 8px 4px 0;
  background: transparent;
  border-top: 1px solid rgba(53, 23, 19, .12);
}

.drop-cards span {
  display: inline-flex;
  min-height: 32px;
  margin-bottom: 18px;
  align-items: center;
  padding: 7px 10px;
  color: var(--chocolate);
  background: rgba(255, 255, 255, .5);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.drop-cards article:nth-child(2) span {
  background: rgba(255, 232, 241, .72);
}

.drop-cards h3 {
  font-size: 30px;
}

.info-section {
  position: relative;
  padding-top: clamp(34px, 6vw, 72px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 30px);
  padding-top: 4px;
}

.info-grid article {
  min-height: 0;
  padding: 0 0 0 18px;
  background: transparent;
  border-left: 2px solid rgba(239, 109, 158, .28);
}

.info-grid h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.info-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 24px;
  align-items: start;
  position: relative;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 4px 0 0 22px;
  background: transparent;
  border-left: 2px solid rgba(95, 161, 218, .34);
}

.contact-label {
  margin: 0;
  color: var(--chocolate);
  font-weight: 950;
}

.contact-card a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.contact-card small {
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--chocolate);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.site-footer span {
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.basket-drawer,
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow: hidden;
  pointer-events: none;
  background: rgba(35, 24, 25, .28);
  opacity: 0;
  transition: opacity .24s var(--ease);
}

.basket-drawer.open,
.checkout-modal.open {
  pointer-events: auto;
  opacity: 1;
}

.basket-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(460px, 100%);
  height: 100%;
  padding: 22px;
  background: var(--cream);
  box-shadow: -20px 0 60px rgba(35, 24, 25, .18);
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s var(--ease);
}

.basket-drawer.open .basket-panel {
  transform: translateX(0);
}

.basket-drawer:not(.open) .basket-panel {
  display: none;
}

.basket-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.basket-header h2 {
  margin-bottom: 0;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--chocolate);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: transform .2s var(--ease);
}

.basket-items {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  overflow: auto;
}

.basket-empty {
  padding: 28px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.basket-line {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.basket-line img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: var(--radius);
}

.basket-line h3 {
  margin: 0 0 4px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.basket-line p {
  margin: 0 0 10px;
  font-size: 13px;
}

.line-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quantity {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--chocolate);
  background: var(--pink-soft);
  font-weight: 950;
}

.quantity span {
  min-width: 34px;
  text-align: center;
  font-weight: 950;
}

.remove-button {
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.basket-summary {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--chocolate);
  font-weight: 950;
}

.summary-row.muted {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.modal-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translate(-50%, -46%) scale(.96);
  transition: transform .24s var(--ease);
}

.checkout-modal.open .modal-card {
  transform: translate(-50%, -50%) scale(1);
}

.checkout-modal.payment-mode .modal-card {
  width: min(560px, calc(100% - 32px));
}

.checkout-modal.payment-mode .modal-close,
.checkout-modal.payment-mode .modal-card > .eyebrow,
.checkout-modal.payment-mode #checkoutTitle,
.checkout-modal.payment-mode #checkoutNotice,
.checkout-modal.payment-mode .delivery-form {
  display: none;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.checkout-lines {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 14px;
  background: var(--pink-soft);
  border-radius: var(--radius);
}

.checkout-lines div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--chocolate);
  font-size: 14px;
  font-weight: 850;
}

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

.payment-waiting {
  display: grid;
  gap: 14px;
  padding-top: 10px;
  text-align: center;
}

.payment-waiting[hidden] {
  display: none;
}

.payment-waiting h2 {
  margin-bottom: 0;
}

.payment-waiting p:not(.eyebrow) {
  max-width: 460px;
  margin: 0 auto;
}

.payment-spinner {
  width: 54px;
  height: 54px;
  margin: 4px auto 2px;
  border: 5px solid var(--pink-soft);
  border-top-color: var(--pink);
  border-radius: 999px;
  animation: spin .9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.delivery-form .fulfilment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 6px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.delivery-form .fulfilment-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  gap: 10px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--chocolate);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.delivery-form .fulfilment-card:hover {
  transform: translateY(-1px);
}

.delivery-form .fulfilment-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.delivery-form .fulfilment-card::before {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  color: var(--white);
  background: var(--white);
  border: 2px solid #f2bdd2;
  border-radius: 999px;
  content: "";
  box-shadow: inset 0 0 0 4px var(--white);
  transition: background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.delivery-form .fulfilment-card > span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.delivery-form .fulfilment-card strong,
.pickup-panel strong {
  color: var(--chocolate);
  font-size: 16px;
  font-weight: 950;
}

.delivery-form .fulfilment-card small,
.pickup-panel small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.delivery-form .fulfilment-card:has(input:checked) {
  background: var(--white);
  border-color: rgba(95, 161, 218, .55);
  box-shadow: 0 10px 22px rgba(95, 161, 218, .13);
}

.delivery-form .fulfilment-card:has(input:checked)::before {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: inset 0 0 0 5px var(--white);
}

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

.pickup-panel {
  display: grid;
  gap: 6px;
  padding: 15px;
  background: var(--blue-soft);
  border: 1px solid rgba(95, 161, 218, .38);
  border-radius: var(--radius);
}

.pickup-panel[hidden],
.delivery-fields[hidden] {
  display: none;
}

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

.delivery-form label {
  display: grid;
  gap: 7px;
  color: var(--chocolate);
  font-size: 13px;
  font-weight: 900;
}

.delivery-form input,
.delivery-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.delivery-form textarea {
  resize: vertical;
}

.delivery-form input:focus,
.delivery-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(95, 161, 218, .15);
}

.postcode-result,
.date-result {
  min-height: 44px;
  padding: 11px 13px;
  color: var(--muted);
  background: var(--cream);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.postcode-result.is-valid,
.date-result.is-valid {
  color: #266343;
  background: #edfff5;
  border-color: #9fe2bd;
}

.postcode-result.is-invalid {
  color: #8f223c;
  background: #fff0f4;
  border-color: #f0a3bb;
}

.button[disabled] {
  cursor: not-allowed;
  opacity: .58;
  transform: none;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 320px;
  padding: 13px 16px;
  color: var(--white);
  background: var(--chocolate);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 850;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}

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

.thank-you-page,
.payment-waiting-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 232, 241, .92), transparent 38%),
    radial-gradient(circle at bottom right, rgba(232, 244, 255, .92), transparent 40%),
    var(--cream);
}

.thank-you,
.payment-page-card {
  width: min(680px, 100%);
  padding: clamp(30px, 7vw, 70px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-logo {
  width: min(320px, 84%);
  margin: 0 auto 24px;
}

.success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(239, 109, 158, .24);
}

.success-mark svg {
  width: 30px;
  height: 30px;
}

.confirmation-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  text-align: left;
}

.confirmation-list div {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.confirmation-list strong {
  color: var(--chocolate);
}

.confirmation-list span {
  color: var(--muted);
  font-size: 14px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.payment-page-card {
  width: min(560px, 100%);
}

.payment-page-card .button {
  margin-top: 10px;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
    min-height: 640px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 252, .96) 0%, rgba(255, 250, 252, .78) 56%, rgba(255, 250, 252, .32) 100%),
      url("assets/hero-background-v2.png");
    background-position: 58% center;
    background-size: cover;
  }

  .hero-ticket {
    margin-left: 0;
  }

  .product-grid,
  .drop-cards,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 640px) {
  .announcement {
    font-size: 13px;
  }

  .site-header {
    gap: 12px;
    padding: 10px 14px;
  }

  .brand-link,
  .brand-logo {
    width: 132px;
  }

  .basket-button {
    right: 14px;
    top: 78px;
    bottom: auto;
    min-height: 48px;
    padding: 9px 11px;
    box-shadow: 0 14px 34px rgba(95, 161, 218, .22);
  }

  body.is-scrolled .basket-button {
    min-width: 58px;
    min-height: 44px;
    padding: 7px 8px;
  }

  .hero {
    gap: 22px;
    min-height: 600px;
  }

  .hero-ticket {
    width: 100%;
  }

  .shop-section::before,
  .bigger-drops::before {
    inset-right: 0;
    inset-left: 0;
  }

  h1 {
    font-size: 43px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .product-grid,
  .drop-cards,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-image img {
    height: 210px;
  }

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

  .delivery-form .fulfilment-options {
    grid-template-columns: 1fr;
  }

  .delivery-form .fulfilment-card {
    min-height: 56px;
  }

  .basket-panel {
    padding: 18px;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

