:root {
  --navy-950: #071222;
  --navy-900: #0b1b32;
  --navy-800: #132b49;
  --navy-700: #234968;
  --blue-500: #6f99b8;
  --blue-300: #9dbbd2;
  --blue-100: #e7eff4;
  --ink: #0d1218;
  --muted: #66707b;
  --off-white: #f7f3ea;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(11, 27, 50, 0.13);
  --success: #25795a;
  --danger: #a53f43;
  --warning: #a96e13;
  --shadow-sm: 0 6px 20px rgba(7, 18, 34, 0.08);
  --shadow-md: 0 18px 50px rgba(7, 18, 34, 0.14);
  --shadow-lg: 0 30px 90px rgba(7, 18, 34, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  color: white;
  background: var(--navy-900);
}

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

.demo-ribbon {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 20px;
  color: var(--off-white);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-ribbon a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.announcement {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 20px;
  color: var(--navy-900);
  background: var(--blue-300);
  font-size: 13px;
  font-weight: 650;
}

.link-button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 750;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(11, 27, 50, 0.08);
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
}

.brand img {
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fulfillment-summary {
  display: flex;
  min-width: 255px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.58);
  text-align: left;
  transition: 160ms ease;
}

.fulfillment-summary:hover {
  border-color: rgba(11, 27, 50, 0.3);
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.fulfillment-summary > span:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.fulfillment-summary small {
  color: var(--muted);
  font-size: 10px;
}

.fulfillment-summary strong {
  overflow: hidden;
  max-width: 175px;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summary-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy-900);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.icon-button,
.text-icon-button,
.cart-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  transition: 160ms ease;
}

.icon-button {
  width: 44px;
  font-size: 25px;
}

.text-icon-button {
  padding: 0 12px;
}

.text-icon-button > span:first-child {
  font-size: 25px;
}

.icon-button:hover,
.text-icon-button:hover {
  background: rgba(11, 27, 50, 0.07);
}

.cart-button {
  padding: 0 15px;
  color: white;
  background: var(--navy-900);
}

.cart-button:hover,
.button-primary:hover {
  background: var(--navy-800);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.cart-count {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 6px;
  border-radius: 20px;
  color: var(--navy-900);
  background: var(--blue-300);
  font-size: 11px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 10% 10%, rgba(157, 187, 210, 0.16), transparent 32%),
    radial-gradient(circle at 88% 30%, rgba(111, 153, 184, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 55%, #102d4d);
}

.hero::after {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  inset: auto auto -290px -150px;
}

.hero-grid {
  display: grid;
  min-height: 610px;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 60px;
  padding-block: 72px;
}

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

.eyebrow,
.section-kicker,
.drawer-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 23px;
  color: var(--blue-300);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #73d6a8;
  box-shadow: 0 0 0 5px rgba(115, 214, 168, 0.1);
}

.status-dot.closed {
  background: #e9a0a4;
  box-shadow: 0 0 0 5px rgba(233, 160, 164, 0.1);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--blue-300);
  font-weight: 400;
}

.hero-copy > p {
  max-width: 520px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: 180ms ease;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none !important;
}

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

.hero .button-primary {
  color: var(--navy-900);
  background: var(--off-white);
}

.hero .button-primary:hover {
  background: white;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.09);
}

.button-secondary {
  border-color: var(--line);
  color: var(--navy-900);
  background: white;
}

.button-secondary:hover {
  border-color: var(--navy-900);
}

.button-danger {
  color: white;
  background: var(--danger);
}

.button-block {
  width: 100%;
}

.button-small {
  min-height: 38px;
  padding-inline: 14px;
  border-radius: 10px;
  font-size: 12px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-benefits span {
  color: var(--blue-300);
}

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

.hero-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(157, 187, 210, 0.15);
  filter: blur(1px);
  inset: 35px 25px auto auto;
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 170px 170px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    #173754;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.26);
}

.visual-card-main {
  width: 370px;
  height: 445px;
  inset: 0 30px auto auto;
}

.dessert-art {
  position: relative;
  height: 330px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.17), transparent 37%),
    linear-gradient(160deg, #274b67, #112841);
}

.plate {
  position: absolute;
  width: 260px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #faf8f0, #b8c7d0);
  box-shadow: 0 15px 24px rgba(0, 0, 0, 0.22);
  inset: auto auto 42px 55px;
}

.cake-layer {
  position: absolute;
  left: 103px;
  width: 165px;
  height: 63px;
  border-radius: 9px 9px 17px 17px;
  transform: skewX(-4deg);
}

.cake-layer-one {
  bottom: 77px;
  background: linear-gradient(90deg, #6a382d, #a6624c 50%, #5c3028);
}

.cake-layer-two {
  bottom: 138px;
  background: linear-gradient(90deg, #754235, #b67358 50%, #66382f);
}

.cake-cream {
  position: absolute;
  z-index: 2;
  bottom: 188px;
  left: 94px;
  width: 184px;
  height: 36px;
  border-radius: 50% 50% 9px 9px;
  background: #f3e3d3;
  box-shadow: 0 10px 0 #d2a58b;
  transform: rotate(-2deg);
}

.cake-berry {
  position: absolute;
  z-index: 3;
  width: 32px;
  height: 26px;
  border-radius: 50% 50% 45% 45%;
  background: #9b2945;
  box-shadow: inset -6px -5px 0 rgba(62, 3, 21, 0.24);
}

.berry-one {
  bottom: 219px;
  left: 150px;
}

.berry-two {
  bottom: 216px;
  left: 191px;
  transform: scale(0.8);
}

.visual-caption {
  display: flex;
  height: 115px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 29px;
}

.visual-caption span {
  margin-bottom: 8px;
  color: var(--blue-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-caption strong {
  max-width: 260px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--navy-900);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-note > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-note small {
  color: var(--muted);
  font-size: 9px;
}

.floating-note strong {
  font-size: 11px;
}

.note-top {
  top: 65px;
  left: -12px;
}

.note-bottom {
  right: -25px;
  bottom: 75px;
}

.note-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy-900);
  font-size: 18px;
}

.note-rating {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.note-bottom strong {
  color: #ba7a13;
  letter-spacing: 0.05em;
}

.quick-order {
  position: relative;
  z-index: 3;
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.quick-order-card {
  display: grid;
  min-height: 84px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 18px 22px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
  transition: 160ms ease;
}

.quick-order-card:last-child {
  border-right: 0;
}

.quick-order-card:hover {
  background: rgba(157, 187, 210, 0.1);
}

.quick-order-card > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.quick-order-card small {
  color: var(--muted);
  font-size: 10px;
}

.quick-order-card strong {
  margin-top: 2px;
  color: var(--navy-900);
  font-size: 13px;
}

.quick-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--navy-900);
  background: var(--blue-100);
  font-size: 20px;
}

.quick-arrow {
  color: var(--blue-500);
  font-size: 24px;
}

.menu-section {
  padding: 92px 0 112px;
}

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

.section-heading h2,
.experience-copy h2 {
  margin: 6px 0 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.search-box {
  display: flex;
  width: min(360px, 100%);
  height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  transition: 150ms ease;
}

.search-box:focus-within {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(49, 91, 125, 0.1);
}

.search-box > span {
  color: var(--navy-700);
  font-size: 23px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

.search-box button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 20px;
}

.category-strip {
  display: flex;
  overflow-x: auto;
  gap: 9px;
  margin-top: 35px;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar {
  display: none;
}

.category-button {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 750;
  transition: 160ms ease;
}

.category-button:hover {
  border-color: rgba(11, 27, 50, 0.35);
}

.category-button.active {
  border-color: var(--navy-900);
  color: white;
  background: var(--navy-900);
}

.category-button span {
  font-size: 14px;
}

.menu-toolbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  border-bottom: 1px solid var(--line);
}

.menu-toolbar p {
  color: var(--muted);
  font-size: 12px;
}

.select-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.select-wrap select {
  border: 0;
  outline: 0;
  color: var(--navy-900);
  background: transparent;
  font-weight: 750;
}

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

.product-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 4px 12px rgba(7, 18, 34, 0.025);
  transition: 200ms ease;
}

.product-card:hover {
  border-color: rgba(11, 27, 50, 0.24);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card.unavailable {
  opacity: 0.62;
}

.product-card-media {
  position: relative;
  overflow: hidden;
  height: 230px;
  border: 0;
  background: transparent;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-art {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.product-art::before,
.product-art::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.product-art::before {
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.15);
}

.product-art::after {
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.product-art .art-icon {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.23);
  box-shadow: 0 20px 35px rgba(32, 25, 20, 0.15);
  font-family: Georgia, serif;
  font-size: 56px;
  transform: rotate(-5deg);
  backdrop-filter: blur(8px);
}

.art-chocolate,
.art-cocoa {
  color: #fff4e5;
  background: linear-gradient(145deg, #3f261f, #996653);
}

.art-berry,
.art-tart {
  color: #5b1430;
  background: linear-gradient(145deg, #f2c8cf, #b7546d);
}

.art-lemon {
  color: #405026;
  background: linear-gradient(145deg, #eff1b5, #b7c867);
}

.art-brownie {
  color: #f6dfc4;
  background: linear-gradient(145deg, #493126, #7c4f3c);
}

.art-gift {
  color: var(--navy-900);
  background: linear-gradient(145deg, #d9e5eb, #8eb1c7);
}

.art-coffee {
  color: #f8eadb;
  background: linear-gradient(145deg, #7c5842, #c8a17e);
}

.product-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 9px;
  color: white;
  background: rgba(11, 27, 50, 0.9);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.favorite-button {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  backdrop-filter: blur(8px);
}

.favorite-button.active {
  color: #a53f43;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px;
}

.product-meta {
  display: flex;
  min-height: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-meta small {
  color: var(--blue-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 7px 0 7px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.product-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.price-block {
  display: flex;
  flex-direction: column;
}

.price-block del {
  color: var(--muted);
  font-size: 10px;
}

.price-block strong {
  color: var(--navy-900);
  font-size: 16px;
}

.add-button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 13px;
  color: white;
  background: var(--navy-900);
  font-size: 23px;
  transition: 160ms ease;
}

.add-button:hover {
  background: var(--navy-700);
  transform: scale(1.05);
}

.add-button:disabled {
  cursor: not-allowed;
  background: var(--muted);
}

.empty-state {
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.empty-state > span {
  font-size: 48px;
}

.empty-state h3 {
  margin: 12px 0 4px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.empty-state p {
  margin: 0 0 20px;
  color: var(--muted);
}

.experience-section {
  padding: 100px 0;
  color: white;
  background: var(--navy-900);
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.section-kicker.light {
  color: var(--blue-300);
}

.experience-copy h2 {
  max-width: 450px;
  color: white;
}

.experience-copy p {
  max-width: 450px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.experience-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-steps li > span {
  grid-row: 1 / 3;
  color: var(--blue-300);
  font-family: Georgia, serif;
  font-size: 23px;
}

.experience-steps strong {
  font-size: 15px;
}

.experience-steps small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer {
  padding: 70px 0 26px;
  color: var(--navy-900);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 70px;
}

.footer-grid > div:first-child p {
  max-width: 360px;
}

.footer-grid p,
.footer-link {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.footer-grid h3 {
  margin: 4px 0 15px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-link {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-link:hover {
  color: var(--navy-900);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.mobile-nav {
  display: none;
}

/* Drawers and dialogs */
.overlay {
  position: fixed;
  z-index: 80;
  background: rgba(7, 18, 34, 0.58);
  backdrop-filter: blur(4px);
  inset: 0;
}

.cart-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  display: flex;
  width: min(440px, 100%);
  height: 100dvh;
  flex-direction: column;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: translateX(105%);
  transition: transform 260ms cubic-bezier(0.22, 0.8, 0.3, 1);
}

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

.drawer-header,
.modal-header,
.checkout-header {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2,
.modal-header h2,
.checkout-header h2 {
  margin: 2px 0 0;
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}

.close-button,
.checkout-back {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 22px;
}

.close-button:hover,
.checkout-back:hover {
  background: var(--blue-100);
}

.cart-content {
  overflow-y: auto;
  flex: 1;
  padding: 20px 22px;
}

.cart-empty {
  display: flex;
  height: 100%;
  min-height: 400px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.cart-empty-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-700);
  background: var(--blue-100);
  font-size: 40px;
}

.cart-empty h3 {
  margin: 19px 0 5px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.cart-empty p {
  max-width: 270px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-art {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  font-size: 30px;
}

.cart-item-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-copy strong {
  display: block;
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.cart-item-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.cart-item-copy > button {
  margin-top: 7px;
  padding: 0;
  border: 0;
  color: var(--navy-700);
  background: transparent;
  font-size: 10px;
  font-weight: 750;
}

.cart-item-side {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column;
}

.cart-item-side > strong {
  color: var(--navy-900);
  font-size: 12px;
}

.quantity-control {
  display: flex;
  overflow: hidden;
  height: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.quantity-control button {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  font-size: 17px;
}

.quantity-control button:hover {
  background: var(--blue-100);
}

.quantity-control span {
  min-width: 23px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}

.cart-footer {
  padding: 17px 22px max(22px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: white;
}

.cart-delivery-progress {
  margin-bottom: 15px;
}

.cart-delivery-progress p {
  display: flex;
  justify-content: space-between;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 10px;
}

.progress-track {
  overflow: hidden;
  height: 5px;
  border-radius: 10px;
  background: var(--blue-100);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--navy-700);
}

.cart-summary {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
}

.summary-row.discount {
  color: var(--success);
}

.summary-row.total {
  margin-top: 4px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 800;
}

.cart-footer .button small {
  opacity: 0.75;
  font-weight: 500;
}

dialog.modal {
  width: min(620px, calc(100% - 28px));
  max-height: min(90dvh, 820px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

dialog.modal::backdrop {
  background: rgba(7, 18, 34, 0.65);
  backdrop-filter: blur(6px);
}

dialog.modal[open] {
  animation: modal-in 180ms ease-out;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-body {
  overflow-y: auto;
  max-height: calc(90dvh - 82px);
  padding: 22px;
}

.product-modal {
  width: min(780px, calc(100% - 28px)) !important;
}

.floating-close {
  position: absolute;
  z-index: 4;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.86);
  font-size: 23px;
  backdrop-filter: blur(8px);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.product-modal-media {
  position: sticky;
  top: 0;
  height: 100%;
  min-height: 620px;
}

.product-modal-media .product-art {
  height: 100%;
}

.product-modal-copy {
  overflow-y: auto;
  max-height: min(90dvh, 820px);
  padding: 34px 30px;
}

.product-modal-copy h2 {
  margin: 8px 0 9px;
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 33px;
  font-weight: 400;
  line-height: 1.08;
}

.product-modal-description {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-modal-price {
  display: block;
  margin-top: 17px;
  color: var(--navy-900);
  font-size: 19px;
}

.option-group {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.option-group-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
}

.option-group-header strong {
  display: block;
  color: var(--navy-900);
  font-size: 13px;
}

.option-group-header small {
  color: var(--muted);
  font-size: 10px;
}

.required-tag {
  padding: 4px 7px;
  border-radius: 6px;
  color: var(--navy-700);
  background: var(--blue-100);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.option-row,
.radio-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  cursor: pointer;
}

.option-row + .option-row,
.radio-row + .radio-row {
  border-top: 1px solid rgba(11, 27, 50, 0.07);
}

.option-row input,
.radio-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--navy-900);
}

.option-row > span,
.radio-row > span {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 12px;
}

.radio-row > span {
  flex-direction: column;
  gap: 2px;
}

.option-row b,
.radio-row b {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
}

.option-row small,
.radio-row small {
  color: var(--muted);
  font-size: 10px;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.field > span,
.field-label {
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: white;
  font-size: 13px;
  transition: 150ms ease;
}

.field textarea {
  min-height: 82px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(49, 91, 125, 0.1);
}

.field input.invalid,
.field select.invalid {
  border-color: var(--danger);
}

.field-hint,
.form-message {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 11px;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--success);
}

.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.three-fields {
  display: grid;
  grid-template-columns: 2fr 0.75fr 1.3fr;
  gap: 12px;
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 19px;
}

.segmented-control label {
  cursor: pointer;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented-control span {
  display: flex;
  min-height: 80px;
  justify-content: center;
  flex-direction: column;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  text-align: center;
}

.segmented-control b {
  color: var(--navy-900);
  font-size: 13px;
}

.segmented-control small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.segmented-control input:checked + span {
  border-color: var(--navy-900);
  box-shadow: inset 0 0 0 1px var(--navy-900);
  background: var(--blue-100);
}

.schedule-choice {
  margin: 17px 0;
  padding: 4px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.product-note {
  margin-top: 20px;
}

.product-modal-actions {
  position: sticky;
  bottom: -34px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  margin: 24px -30px -34px;
  padding: 16px 30px 26px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(10px);
}

.product-quantity {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.product-quantity button {
  height: 100%;
  border: 0;
  background: transparent;
  font-size: 20px;
}

.product-quantity span {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

/* Checkout */
.checkout-modal {
  width: min(760px, calc(100% - 28px)) !important;
}

.checkout-header {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
}

.checkout-header > div {
  text-align: center;
}

.checkout-header .drawer-kicker {
  justify-content: center;
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 13px 28px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.checkout-progress span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.checkout-progress span::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: attr(data-step);
  background: var(--paper);
  font-size: 8px;
}

.checkout-progress span.active,
.checkout-progress span.done {
  color: var(--navy-900);
}

.checkout-progress span.active::before,
.checkout-progress span.done::before {
  border-color: var(--navy-900);
  color: white;
  background: var(--navy-900);
}

.checkout-body {
  overflow-y: auto;
  min-height: 350px;
  max-height: calc(90dvh - 236px);
  padding: 24px 30px;
}

.checkout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 30px 20px;
  border-top: 1px solid var(--line);
  background: white;
}

.checkout-footer-total {
  display: flex;
  flex-direction: column;
}

.checkout-footer-total small {
  color: var(--muted);
  font-size: 9px;
}

.checkout-footer-total strong {
  color: var(--navy-900);
  font-size: 16px;
}

.checkout-footer .button {
  min-width: 190px;
}

.checkout-intro {
  margin-bottom: 20px;
}

.checkout-intro h3 {
  margin: 0 0 5px;
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.checkout-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.checkout-section {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.checkout-section h4 {
  margin: 0 0 13px;
  color: var(--navy-900);
  font-size: 12px;
}

.auth-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.choice-card {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  cursor: pointer;
}

.choice-card input {
  accent-color: var(--navy-900);
}

.choice-card:has(input:checked) {
  border-color: var(--navy-900);
  background: var(--blue-100);
}

.choice-card span {
  display: flex;
  flex-direction: column;
}

.choice-card b {
  color: var(--navy-900);
  font-size: 12px;
}

.choice-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.payment-list {
  display: grid;
  gap: 9px;
}

.payment-card {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  cursor: pointer;
}

.payment-card:has(input:checked) {
  border-color: var(--navy-900);
  box-shadow: inset 0 0 0 1px var(--navy-900);
  background: var(--blue-100);
}

.payment-card input {
  accent-color: var(--navy-900);
}

.payment-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--navy-900);
  background: var(--blue-100);
  font-weight: 800;
}

.payment-card > span:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.payment-card b {
  color: var(--navy-900);
  font-size: 12px;
}

.payment-card small {
  color: var(--muted);
  font-size: 9px;
}

.demo-notice {
  margin: 16px 0;
  padding: 12px 14px;
  border: 1px solid rgba(169, 110, 19, 0.22);
  border-radius: 11px;
  color: #755018;
  background: #fff6df;
  font-size: 10px;
  line-height: 1.55;
}

.order-review {
  display: grid;
  gap: 17px;
}

.review-card {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
}

.review-card-header h4 {
  margin: 0;
  color: var(--navy-900);
  font-size: 12px;
}

.review-card-header button {
  padding: 0;
  border: 0;
  color: var(--navy-700);
  background: transparent;
  font-size: 10px;
  font-weight: 750;
}

.review-card p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 11px;
}

.review-item {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 8px;
  padding: 7px 0;
  font-size: 11px;
}

.review-item strong {
  color: var(--navy-900);
  font-weight: 650;
}

.review-summary {
  display: grid;
  gap: 7px;
}

/* Account and tracking */
.account-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 17px;
  border-radius: 15px;
  color: white;
  background: var(--navy-900);
}

.account-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--blue-300);
  font-family: Georgia, serif;
  font-size: 20px;
}

.account-profile span:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.account-profile small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.account-profile button {
  padding: 0;
  border: 0;
  color: var(--blue-300);
  background: transparent;
  font-size: 10px;
  font-weight: 750;
}

.account-menu {
  display: grid;
  gap: 8px;
}

.account-menu button {
  display: flex;
  min-height: 51px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  font-size: 12px;
  font-weight: 650;
}

.tracking-list {
  display: grid;
  gap: 13px;
}

.order-card {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
}

.order-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.order-card-top h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 13px;
}

.order-card-top small {
  color: var(--muted);
  font-size: 9px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 20px;
  color: var(--navy-800);
  background: var(--blue-100);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-badge::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: currentColor;
}

.order-card-items {
  margin: 13px 0;
  padding: 10px 0;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.order-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-card-bottom strong {
  color: var(--navy-900);
  font-size: 13px;
}

.order-card-bottom button {
  padding: 0;
  border: 0;
  color: var(--navy-700);
  background: transparent;
  font-size: 10px;
  font-weight: 800;
}

.timeline {
  display: grid;
  margin: 18px 0;
}

.timeline-step {
  position: relative;
  display: grid;
  min-height: 52px;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.timeline-step::before {
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 9px;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: transparent;
  background: white;
  font-size: 9px;
}

.timeline-step.done .timeline-dot,
.timeline-step.current .timeline-dot {
  border-color: var(--navy-900);
  color: white;
  background: var(--navy-900);
}

.timeline-step.current .timeline-dot {
  box-shadow: 0 0 0 5px var(--blue-100);
}

.timeline-copy {
  display: flex;
  flex-direction: column;
}

.timeline-copy strong {
  color: var(--navy-900);
  font-size: 11px;
}

.timeline-copy small {
  color: var(--muted);
  font-size: 9px;
}

.success-modal {
  width: min(520px, calc(100% - 28px)) !important;
  text-align: center;
}

.success-content {
  padding: 38px 30px 30px;
}

.success-check {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--success);
  box-shadow: 0 0 0 11px rgba(37, 121, 90, 0.1);
  font-size: 31px;
}

.success-content h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
}

.success-content > p {
  margin: 8px auto 20px;
  color: var(--muted);
  font-size: 12px;
}

.order-number {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 13px;
  border-radius: 8px;
  color: var(--navy-900);
  background: var(--blue-100);
  font-size: 12px;
  font-weight: 800;
}

.success-actions {
  display: grid;
  gap: 9px;
}

.toast-region {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 9px;
}

.toast {
  display: flex;
  max-width: 340px;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 12px;
  color: white;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
  font-size: 11px;
  animation: toast-in 180ms ease-out;
}

.toast.success::before {
  content: "✓";
  color: #84d9af;
}

.toast.error::before {
  content: "!";
  color: #f0a0a0;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .fulfillment-summary {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 0.8fr;
    gap: 20px;
  }

  .visual-card-main {
    right: 0;
    width: 330px;
  }

  .note-top {
    left: -20px;
  }

  .note-bottom {
    right: -15px;
  }

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

  .experience-grid {
    gap: 50px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 620px);
    --header-height: 68px;
  }

  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .demo-ribbon {
    min-height: 30px;
    font-size: 10px;
  }

  .announcement {
    min-height: 36px;
    font-size: 10px;
  }

  .announcement .link-button {
    display: none;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .header-actions .icon-button,
  .header-actions .text-icon-button {
    display: none;
  }

  .cart-button {
    width: 44px;
    padding: 0;
  }

  .cart-button > span {
    display: none;
  }

  .hero-grid {
    display: block;
    padding: 58px 0 115px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-visual {
    display: none;
  }

  .hero-benefits {
    gap: 11px 16px;
  }

  .quick-order {
    grid-template-columns: 1fr;
    margin-top: -68px;
  }

  .quick-order-card {
    min-height: 69px;
    padding: 13px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-order-card:last-child {
    border-bottom: 0;
  }

  .quick-icon {
    width: 34px;
    height: 34px;
  }

  .menu-section {
    padding: 72px 0 80px;
  }

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

  .search-box {
    width: 100%;
  }

  .category-strip {
    width: calc(100% + 14px);
    margin-top: 25px;
  }

  .menu-toolbar {
    min-height: 52px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .product-card {
    display: grid;
    min-height: 164px;
    grid-template-columns: 142px 1fr;
  }

  .product-card-media {
    height: 100%;
    min-height: 164px;
  }

  .product-art .art-icon {
    width: 72px;
    height: 72px;
    border-radius: 25px;
    font-size: 35px;
  }

  .product-art::before {
    width: 120px;
    height: 120px;
  }

  .product-art::after {
    width: 170px;
    height: 170px;
  }

  .product-badge {
    top: 9px;
    left: 9px;
    padding: 5px 7px;
    font-size: 7px;
  }

  .favorite-button {
    top: 8px;
    right: 8px;
    width: 31px;
    height: 31px;
    font-size: 16px;
  }

  .product-card-body {
    padding: 15px;
  }

  .product-card h3 {
    margin-top: 5px;
    font-size: 19px;
  }

  .product-card p {
    font-size: 10px;
    -webkit-line-clamp: 2;
  }

  .product-card-footer {
    padding-top: 12px;
  }

  .experience-section {
    padding: 72px 0;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 40px;
  }

  .mobile-nav {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(65px + env(safe-area-inset-bottom));
    grid-template-columns: repeat(5, 1fr);
    padding: 7px 7px env(safe-area-inset-bottom);
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 -8px 30px rgba(7, 18, 34, 0.08);
    backdrop-filter: blur(14px);
  }

  .mobile-nav a,
  .mobile-nav button {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1px;
    border: 0;
    color: var(--muted);
    background: transparent;
  }

  .mobile-nav span {
    color: var(--navy-900);
    font-size: 20px;
    line-height: 1;
  }

  .mobile-nav small {
    overflow: hidden;
    max-width: 100%;
    font-size: 8px;
    text-overflow: ellipsis;
  }

  .mobile-cart b {
    position: absolute;
    top: 0;
    left: calc(50% + 7px);
    display: grid;
    min-width: 16px;
    height: 16px;
    place-items: center;
    padding: 0 4px;
    border-radius: 20px;
    color: white;
    background: var(--navy-900);
    font-size: 8px;
  }

  .toast-region {
    right: 14px;
    bottom: calc(80px + env(safe-area-inset-bottom));
    left: 14px;
  }

  .toast {
    max-width: none;
  }

  dialog.modal {
    width: 100% !important;
    max-width: none;
    max-height: 94dvh;
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
  }

  .modal-body {
    max-height: calc(94dvh - 82px);
    padding-bottom: max(25px, env(safe-area-inset-bottom));
  }

  .product-modal-grid {
    display: block;
  }

  .product-modal-media {
    position: relative;
    min-height: 235px;
    height: 235px;
  }

  .product-modal-copy {
    max-height: calc(94dvh - 235px);
    padding: 24px 20px;
  }

  .product-modal-copy h2 {
    font-size: 28px;
  }

  .product-modal-actions {
    bottom: -24px;
    margin: 24px -20px -24px;
    padding: 14px 20px max(18px, env(safe-area-inset-bottom));
  }

  .checkout-body {
    max-height: calc(94dvh - 236px);
    padding: 21px 18px;
  }

  .checkout-footer {
    padding: 13px 18px max(17px, env(safe-area-inset-bottom));
  }

  .checkout-progress {
    padding-inline: 10px;
  }

  .checkout-progress span {
    flex-direction: column;
    font-size: 7px;
  }

  .checkout-footer .button {
    min-width: 155px;
  }

  .three-fields {
    grid-template-columns: 1fr 0.65fr;
  }

  .three-fields .field:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .product-card {
    grid-template-columns: 120px 1fr;
  }

  .product-card h3 {
    font-size: 17px;
  }

  .menu-toolbar .select-wrap > span {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .two-fields,
  .auth-choice {
    grid-template-columns: 1fr;
  }

  .segmented-control span {
    min-height: 70px;
  }
}

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