@font-face {
  font-family: "Nosh TAN Meringue";
  src:
    url("Fonts/TAN-Meringue-Font/TAN-Meringue-Font/TAN%20MERINGUE.woff2") format("woff2"),
    url("Fonts/TAN-Meringue-Font/TAN-Meringue-Font/TAN%20MERINGUE.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Nosh Montserrat";
  src: url("Fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Nosh Montserrat";
  src: url("Fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-style: italic;
  font-weight: 100 900;
}

@font-face {
  font-family: "Nosh Baloo 2";
  src: url("Fonts/Baloo_2/Baloo2-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

@font-face {
  font-family: "Nosh Glacial Indifference";
  src: url("Fonts/glacial-indifference/GlacialIndifference-Regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Nosh Glacial Indifference";
  src: url("Fonts/glacial-indifference/GlacialIndifference-Bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Nosh Glacial Indifference";
  src: url("Fonts/glacial-indifference/GlacialIndifference-Italic.otf") format("opentype");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}

:root {
  --purple: #9d7af7;
  --purple-deep: #6f49d7;
  --pink: #f84dcb;
  --pink-deep: #dc16a7;
  --yellow: #ffe05c;
  --aqua: #34dce7;
  --red: #e64672;
  --green: #b9f36f;
  --cream: #fff7fb;
  --white: #ffffff;
  --ink: #100d15;
  --muted: #53455f;
  --shadow: 0 22px 70px rgba(37, 15, 58, 0.2);
  --radius: 8px;
  --font-display: "Nosh TAN Meringue", "TAN Meringue", "TAN - Meringue", "Didot", "Bodoni 72", "Bodoni MT", Georgia, serif;
  --font-menu: "Nosh Montserrat", "Montserrat", Arial, sans-serif;
  --font-banner: "Nosh Baloo 2", "Baloo 2", "Baloo", "Arial Rounded MT Bold", var(--font-menu);
  --font-policy: "Nosh Glacial Indifference", "GlacialIndifferenceRegular", "Glacial Indifference", var(--font-menu);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 16%, rgba(255, 224, 92, 0.32), transparent 18rem),
    radial-gradient(circle at 91% 9%, rgba(52, 220, 231, 0.24), transparent 17rem),
    var(--purple);
  font-family: var(--font-menu);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  min-height: 76px;
  margin: 1rem auto 0;
  padding: 0.7rem 0.85rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(255, 247, 251, 0.9);
  box-shadow: 0 10px 45px rgba(50, 24, 77, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border: 3px solid #ffb8dc;
  border-radius: 50%;
  background: #e5a6de;
  box-shadow: inset 0 0 0 3px rgba(248, 77, 203, 0.22);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.45rem, 2vw, 1.25rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a {
  padding: 0.45rem 0;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--pink-deep);
}

.header-order,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-order {
  padding: 0.6rem 1rem;
  background: var(--yellow);
}

.button {
  padding: 0.8rem 1.1rem;
}

.header-order:hover,
.button:hover,
.copy-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button-primary {
  background: var(--pink);
}

.button-secondary {
  background: var(--aqua);
}

.section-band {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 7vw, 6rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--pink-deep);
  font-size: clamp(0.76rem, 1vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.05rem, 7.5vw, 5.85rem);
}

h2 {
  font-size: clamp(1.95rem, 4vw, 3.75rem);
}

.eyebrow + h1,
.eyebrow + h2 {
  margin-top: 0.4rem;
}

h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  line-height: 1.12;
}

.hero-lede {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  color: #24172d;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
}

.hero-actions,
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.quick-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border: 2px solid rgba(16, 13, 21, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: #2d1c38;
  font-size: 0.88rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.product-collage {
  position: absolute;
  inset: 0;
}

.hero-product-main,
.product-thumb {
  position: absolute;
  display: block;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
  object-fit: cover;
}

.hero-product-main {
  inset: 3% auto auto 6%;
  z-index: 2;
  width: min(78%, 430px);
  height: 430px;
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(-2deg);
}

.product-thumb {
  z-index: 3;
  width: 180px;
  aspect-ratio: 1;
  box-shadow: 6px 6px 0 var(--ink);
}

.product-thumb-one {
  right: 0;
  top: 28px;
  border-color: var(--aqua);
  transform: rotate(6deg);
}

.product-thumb-two {
  right: 8%;
  bottom: 36px;
  border-color: var(--yellow);
  transform: rotate(-5deg);
}

.lollipop {
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: 0;
  width: 146px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 23%, rgba(255, 255, 255, 0.9) 0 9%, transparent 10%),
    linear-gradient(145deg, #ff689b, #b61161);
  border: 4px solid rgba(255, 255, 255, 0.44);
  box-shadow: var(--shadow);
}

.lollipop::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 91%;
  width: 10px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(43deg);
  transform-origin: top;
}

.pineapple {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 32px;
  width: 120px;
  height: 100px;
  transform: rotate(-18deg);
}

.pineapple::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 35px;
  width: 52px;
  height: 78px;
  border-radius: 48% 52% 54% 46% / 42% 44% 58% 60%;
  transform: rotate(180deg);
  background:
    linear-gradient(45deg, transparent 43%, rgba(146, 98, 0, 0.38) 44% 48%, transparent 49%),
    linear-gradient(-45deg, transparent 43%, rgba(146, 98, 0, 0.38) 44% 48%, transparent 49%),
    var(--yellow);
  background-size: 18px 18px;
  border: 3px solid rgba(16, 13, 21, 0.1);
}

.pineapple span {
  position: absolute;
  top: 0;
  width: 24px;
  height: 56px;
  border-radius: 100% 0;
  background: #69b848;
}

.pineapple span:nth-child(1) {
  left: 28px;
  transform: rotate(-47.5deg);
}

.pineapple span:nth-child(2) {
  left: 49px;
  transform: rotate(-12.5deg);
}

.pineapple span:nth-child(3) {
  left: 70px;
  transform: rotate(22.5deg);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: -2.5rem auto 4rem;
}

.intro-strip article,
.price-card,
.addon-panel,
.must-haves,
.flavor-row article,
.payment-grid article {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 247, 251, 0.92);
  box-shadow: 7px 7px 0 rgba(16, 13, 21, 0.95);
}

.intro-strip article {
  padding: 1.1rem;
}

.step-number {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-weight: 1000;
}

.intro-strip h2 {
  font-family: inherit;
  font-size: 1.15rem;
  line-height: 1.1;
}

.intro-strip p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.gallery {
  padding: clamp(1rem, 4vw, 2rem) 0 clamp(3rem, 6vw, 5rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
  gap: 1rem;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: clamp(190px, 24vw, 310px);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
  object-fit: cover;
}

.gallery-grid img:nth-child(even) {
  margin-top: 2rem;
}

.menu-section,
.policies,
.payments,
.market-row,
.social {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.section-heading p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  color: #251532;
  font-size: 1rem;
  font-weight: 800;
}

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

.price-card {
  position: relative;
  padding: 1.25rem;
  background: var(--pink);
}

.price-card:nth-child(2) {
  background: #ff69d3;
}

.price-card:nth-child(3) {
  background: #ff48c2;
}

.price-card h3 {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.3rem 0.72rem;
  border: 2px solid rgba(16, 13, 21, 0.42);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: var(--font-banner);
  font-size: 1.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  min-height: 32px;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid rgba(16, 13, 21, 0.16);
  font-weight: 900;
}

.price-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-list span {
  min-width: 0;
}

.price-list strong {
  white-space: nowrap;
}

.menu-columns {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: 1.05rem;
  margin-top: 1.05rem;
}

.addon-panel {
  padding: 1.25rem;
  background: var(--yellow);
}

.addon-panel h3,
.must-haves h3,
.flavor-row h3,
.payment-grid h3,
.market-grid h3 {
  font-family: var(--font-menu);
  text-transform: uppercase;
}

.must-haves {
  padding: 1.25rem;
  background: rgba(255, 247, 251, 0.9);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.bundle-grid div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.2rem 0.8rem;
  min-height: 82px;
  padding: 0.85rem;
  border: 2px solid rgba(220, 22, 167, 0.45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.bundle-grid span,
.bundle-grid strong {
  font-size: 0.98rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.bundle-grid small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.flavor-row {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.05rem;
  margin-top: 1.05rem;
}

.flavor-row article {
  padding: 1.25rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.4rem 0.7rem;
  border: 2px solid rgba(16, 13, 21, 0.17);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.86rem;
  font-weight: 900;
}

.tag-list span:nth-child(3n + 1) {
  background: #d9fbff;
}

.tag-list span:nth-child(3n + 2) {
  background: #ffd7f4;
}

.tag-list span:nth-child(3n + 3) {
  background: #fff0a9;
}

.freezer-note {
  margin-top: 1.05rem;
  padding: 1rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
}

.freezer-note strong {
  color: var(--yellow);
}

.policies {
  width: 100%;
  background: rgba(255, 247, 251, 0.38);
}

.policies > * {
  width: min(1180px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.policy-list {
  display: grid;
  gap: 0.85rem;
}

details {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
}

summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-family: var(--font-menu);
  font-size: 1.08rem;
  font-weight: 1000;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--pink-deep);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1.1rem 1.05rem;
  color: var(--muted);
  font-family: var(--font-policy);
  font-size: 1.05rem;
  font-weight: 400;
}

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

.payment-grid article {
  min-height: 260px;
  padding: 1.25rem;
  background: rgba(255, 247, 251, 0.95);
}

.payment-icon {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--aqua);
  font-size: 2rem;
  font-weight: 1000;
}

.payment-grid article:nth-child(2) .payment-icon {
  background: var(--yellow);
}

.payment-grid article:nth-child(3) .payment-icon {
  background: var(--pink);
}

.payment-grid p {
  min-height: 3.25em;
  margin: 0.7rem 0 1rem;
  color: var(--muted);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.copy-button {
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 1000;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.inline-link {
  color: var(--pink-deep);
  font-weight: 1000;
}

.market-row {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.market-grid article {
  display: grid;
  gap: 0.75rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 247, 251, 0.95);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 0.9rem;
}

.market-grid h3 {
  font-size: 1.15rem;
}

.market-grid a {
  display: block;
  border: 2px solid rgba(16, 13, 21, 0.28);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
}

.market-grid img {
  display: block;
  width: 100%;
  height: clamp(170px, 18vw, 240px);
  object-fit: cover;
  object-position: top center;
}

.social {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 7rem;
}

.social-copy p:not(.eyebrow) {
  max-width: 52ch;
  font-size: 1.1rem;
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 78px;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  font-weight: 1000;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
}

.social-links a:nth-child(1) {
  background: var(--pink);
}

.social-links a:nth-child(2) {
  background: var(--aqua);
}

.social-links a:nth-child(3) {
  background: var(--yellow);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem 1.3rem;
  min-height: 90px;
  padding: 1.4rem 1rem;
  background: var(--ink);
  color: var(--cream);
  font-weight: 850;
}

.site-footer p {
  margin: 0;
  color: var(--yellow);
  font-weight: 1000;
}

.site-footer a {
  color: var(--cream);
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.is-hidden {
  display: none !important;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-page,
.admin-page {
  padding: clamp(2rem, 6vw, 5rem) 0 6rem;
}

.form-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 380px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 2rem;
}

.form-hero img {
  width: 100%;
  height: clamp(220px, 32vw, 380px);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 7px 7px 0 var(--ink);
  object-fit: cover;
}

.form-shell {
  display: grid;
  gap: 1rem;
}

.form-card,
.compact-card,
.order-list-panel,
.order-detail-panel,
.stats-row article {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 247, 251, 0.95);
  box-shadow: 6px 6px 0 var(--ink);
}

.form-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.form-card h2,
.order-list-panel h2,
.order-detail h2,
.admin-form h3,
.note-block h3 {
  margin: 0;
  font-family: inherit;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
  text-transform: uppercase;
}

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

label,
legend {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 2px solid rgba(16, 13, 21, 0.45);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  padding: 0.65rem 0.75rem;
}

textarea {
  resize: vertical;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 1rem;
  border: 2px solid rgba(16, 13, 21, 0.3);
  border-radius: var(--radius);
}

.checkbox-grid label,
.policy-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: none;
}

.checkbox-grid input,
.policy-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--pink-deep);
}

.form-message {
  min-height: 24px;
  color: var(--muted);
  font-weight: 900;
}

.form-message[data-type="success"] {
  color: #166b39;
}

.form-message[data-type="error"] {
  color: #9c164d;
}

.submit-button {
  justify-self: start;
}

.confirmation-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 224, 92, 0.92);
  box-shadow: 5px 5px 0 var(--ink);
}

.confirmation-card h3,
.confirmation-card p {
  margin: 0;
}

.confirmation-card h3 {
  font-family: var(--font-menu);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.confirmation-card p {
  color: #24172d;
  font-weight: 800;
}

.confirmation-code {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.confirmation-code strong {
  padding: 0.35rem 0.65rem;
  border: 2px solid rgba(16, 13, 21, 0.28);
  border-radius: var(--radius);
  background: var(--cream);
  font-size: 1.15rem;
}

.admin-login {
  max-width: 520px;
  margin: 0 auto;
}

.admin-page h1 {
  max-width: none;
  font-family: var(--font-menu);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: normal;
  white-space: nowrap;
}

.admin-login h1 {
  font-size: clamp(1.7rem, 4vw, 2.1rem);
  line-height: 1.12;
}

.compact-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  margin-top: 1.2rem;
}

.dashboard-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.dashboard-tools {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, auto) auto;
  gap: 0.75rem;
  align-items: end;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.stats-row article {
  padding: 1rem;
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
}

.stats-row span {
  color: var(--muted);
  font-weight: 1000;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
  align-items: start;
}

.order-list-panel,
.order-detail-panel {
  padding: 1rem;
}

.orders-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 74px;
  padding: 0.75rem;
  border: 2px solid rgba(16, 13, 21, 0.25);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.order-row strong,
.order-row small {
  display: block;
}

.order-row small {
  color: var(--muted);
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.25rem 0.55rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
  white-space: nowrap;
}

.order-detail-empty,
.empty-state {
  color: var(--muted);
  font-weight: 900;
}

.order-detail {
  display: grid;
  gap: 1rem;
}

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

.detail-header p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-weight: 850;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.detail-grid div,
.note-block {
  padding: 0.75rem;
  border: 2px solid rgba(16, 13, 21, 0.17);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.detail-grid strong {
  display: block;
  margin-top: 0.15rem;
  overflow-wrap: anywhere;
}

.note-block p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-weight: 800;
  white-space: pre-wrap;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem;
  border: 2px solid rgba(16, 13, 21, 0.22);
  border-radius: var(--radius);
  background: #fff4fb;
}

.admin-form label:nth-child(4),
.admin-form h3,
.admin-form .form-message,
.admin-form button {
  grid-column: 1 / -1;
}

.follow-up-list {
  display: grid;
  gap: 0.45rem;
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.follow-up-list span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 1rem;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .intro-strip,
  .price-grid,
  .menu-columns,
  .flavor-row,
  .payment-grid,
  .social {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-product-main {
    inset: 0 auto auto 50%;
    width: min(360px, 72vw);
    height: 390px;
    transform: translateX(-62%) rotate(-2.5deg);
  }

  .product-thumb-one {
    right: 4%;
    top: 36px;
  }

  .product-thumb-two {
    right: 12%;
    bottom: 0;
  }

  .intro-strip {
    margin-top: 0;
  }

  .social-links {
    justify-content: flex-start;
  }

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

  .market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-hero,
  .dashboard-grid,
  .dashboard-topline {
    grid-template-columns: 1fr;
  }

  .dashboard-topline {
    display: grid;
    align-items: start;
  }

  .dashboard-tools,
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 1rem);
    margin-top: 0.5rem;
    padding: 0.65rem;
  }

  .brand-mark {
    width: 44px;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.15rem;
  }

  .header-order {
    min-height: 40px;
    padding: 0.5rem 0.75rem;
  }

  .section-band,
  .intro-strip,
  .policies > * {
    width: calc(100% - 1rem);
  }

  .hero {
    gap: 1.8rem;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.35rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8.5vw, 3rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts span {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-product-main {
    width: min(250px, 66vw);
    height: 330px;
  }

  .product-thumb {
    width: 122px;
  }

  .product-thumb-one {
    right: 0;
    top: 40px;
  }

  .product-thumb-two {
    right: 5%;
  }

  .lollipop {
    width: 104px;
  }

  .pineapple {
    width: 94px;
    bottom: 5px;
  }

  .price-card,
  .addon-panel,
  .must-haves,
  .flavor-row article,
  .payment-grid article,
  .intro-strip article {
    box-shadow: 4px 4px 0 var(--ink);
  }

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

  .bundle-grid div {
    min-height: 74px;
  }

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

  .gallery-grid img,
  .gallery-grid img:nth-child(even) {
    height: 250px;
    margin-top: 0;
  }

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

  .market-grid img {
    height: 220px;
  }

  .field-grid,
  .checkbox-grid,
  .dashboard-tools,
  .stats-row,
  .detail-grid,
  .admin-form {
    grid-template-columns: 1fr;
  }

  .submit-button,
  .dashboard-tools .button {
    width: 100%;
  }

  .admin-page h1,
  .admin-login h1 {
    font-size: 2.2rem;
  }
}
