:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --surface: #ffffff;
  --surface-soft: #fffaf2;
  --surface-blue: #eaf3ff;
  --surface-navy: #0a2f59;
  --ink: #10243e;
  --ink-strong: #071a31;
  --muted: #64748b;
  --line: #dbe3ec;
  --blue: #0b5ed7;
  --blue-dark: #073f92;
  --blue-soft: #dcecff;
  --navy: #0b2f57;
  --red: #d92d20;
  --red-dark: #a91f16;
  --red-soft: #ffe6e2;
  --yellow: #ffd43b;
  --yellow-soft: #fff3b0;
  --green: #16845b;
  --green-soft: #def5ea;
  --danger: #b42318;
  --focus: #ffbf00;
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1220px;
  --header-h: 76px;
  --font: "Noto Sans Armenian", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }

/* HOTFIX51: customer-facing product/media images must behave like UI, not selectable page content.
   This prevents the yellow ::selection wash and the browser image drag ghost without
   changing clicks, links, buttons, sliders, or product interactions. */
img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
::selection { background: var(--yellow); color: #10243e; }
[hidden] { display: none !important; }
.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.page { min-height: 62vh; }
.skip-link { position: fixed; z-index: 2000; top: 10px; left: 10px; transform: translateY(-160%); background: var(--ink-strong); color: var(--surface); padding: 10px 14px; border-radius: var(--radius-sm); }
.skip-link:focus { transform: translateY(0); }
.small { font-size: .86rem; }
.muted { color: var(--muted); }

.lead { max-width: 680px; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.18rem); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink-strong); line-height: 1.12; }
h1 { margin-bottom: 22px; font-size: clamp(2.6rem, 6vw, 5.7rem); letter-spacing: -.045em; }
h2 { margin-bottom: 14px; font-size: clamp(1.8rem, 3vw, 3rem); letter-spacing: -.025em; }
h3 { margin-bottom: 8px; }
.section { padding: 88px 0; }
.section-tight { padding: 54px 0; }
.section-soft { background: var(--surface-soft); }
.section-blue { background: var(--surface-blue); }
.section-dark { background: var(--surface-navy); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.section-header > div { max-width: 720px; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink-strong);
  font-weight: 850;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-2px); border-color: var(--blue); }
.button-primary { background: var(--red); border-color: var(--red); color: #fff; }
.button-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button-blue { background: var(--blue); border-color: var(--blue); color: #fff; }
.button-yellow { background: var(--yellow); border-color: var(--yellow); color: #132947; }
.button-ghost { background: transparent; }
.button-danger { color: var(--danger); border-color: color-mix(in srgb, var(--danger) 35%, var(--line)); }
.button-small { min-height: 42px; padding: 8px 13px; font-size: .9rem; }
.action-row { display: flex; flex-wrap: wrap; gap: 12px; }
.tag { display: inline-flex; align-items: center; min-height: 28px; padding: 5px 10px; border-radius: 999px; background: var(--blue-soft); color: var(--blue-dark); font-size: .75rem; font-weight: 900; }
.tag-red { background: var(--red); color: #fff; }
.tag-yellow { background: var(--yellow); color: #1c2e45; }
.tag-green { background: var(--green-soft); color: var(--green); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #25a36f; box-shadow:none; }
/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-h); background: color-mix(in srgb, var(--surface) 92%, transparent); border-bottom: 1px solid var(--line); backdrop-filter:none; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 950; letter-spacing: -.03em; }
.brand-logo { width: 42px; height: 42px; }
.brand-copy { display: grid; line-height: 1; }
.brand-name { font-size: 1.15rem; }
.brand-sub { margin-top: 5px; color: var(--muted); font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 13px; border-radius: 12px; color: var(--muted); font-weight: 800; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: var(--surface-blue); color: var(--blue-dark); }
.header-tools { display: flex; align-items: center; gap: 8px; }
.icon-button, .menu-toggle { min-width: 46px; min-height: 46px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); cursor: pointer; }
.theme-label { display: none; }
.cart-button { min-height: 48px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 14px; background: var(--navy); color: #fff; font-weight: 900; }
.cart-icon { width: 21px; height: 21px; }
.cart-count { min-width: 24px; height: 24px; display: inline-grid; place-items: center; padding: 0 6px; border-radius: 999px; background: var(--yellow); color: #112640; font-size: .78rem; }
.menu-toggle { display: none; font-size: 1.4rem; }
/* Hero */
.hero { position: relative; overflow: hidden; padding: 58px 0 46px; background: linear-gradient(135deg, var(--surface-soft), var(--surface-blue)); }
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; top: -230px; left: -150px; border-radius: 50%; background: var(--yellow); opacity: .5; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr); align-items: center; gap: 56px; }
.hero-copy { padding: 40px 0; }
.hero-copy h1 span { color: var(--red); }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: color-mix(in srgb, var(--surface) 80%, transparent); font-size: .86rem; font-weight: 850; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.hero-meta-item { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .9rem; }
.hero-meta-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); color: var(--blue-dark); font-weight: 950; }
.hero-visual { position: relative; min-height: 570px; }
.hero-plate { position: absolute; inset: 30px 16px 34px 44px; border-radius: 48% 52% 45% 55% / 50% 38% 62% 50%; background: var(--navy); overflow: hidden; }
.hero-plate::before { content: ""; position: absolute; width: 210px; height: 210px; right: -40px; top: -30px; border-radius: 50%; background: var(--red); }
.hero-plate::after { content: ""; position: absolute; width: 180px; height: 180px; left: -40px; bottom: -60px; border-radius: 50%; background: var(--yellow); }
.hero-pizza { position: absolute; z-index: 2; width: min(500px, 94%); left: 50%; top: 50%; transform: translate(-50%, -51%) rotate(-5deg); filter:none; }
.hero-offer { position: absolute; z-index: 3; right: 0; bottom: 68px; width: 230px; padding: 16px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.hero-offer-top { display: flex; justify-content: space-between; gap: 12px; }
.hero-offer strong { display: block; font-size: 1.05rem; }
.hero-offer-price { display: flex; align-items: baseline; gap: 8px; margin-top: 10px; }
.hero-offer-price strong { color: var(--red); font-size: 1.25rem; }
.hero-rating { position: absolute; z-index: 3; left: 4px; top: 78px; padding: 12px 14px; border-radius: 14px; background: var(--yellow); color: #10243e; font-weight: 950; }
/* Info bar */
.quick-info { transform: translateY(22px); position: relative; z-index: 3; }
.quick-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--surface); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.quick-info-item { min-height: 90px; display: flex; align-items: center; gap: 14px; padding: 18px 22px; }
.quick-info-item + .quick-info-item { border-left: 1px solid var(--line); }
.quick-info-icon { width: 45px; height: 45px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; background: var(--surface-blue); color: var(--blue-dark); font-weight: 950; }
.quick-info-item strong, .quick-info-item span { display: block; }
.quick-info-item span { color: var(--muted); font-size: .88rem; }
/* Categories */
.category-scroller { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.category-card { padding: 20px; transition: transform .16s ease, border-color .16s ease, background-color .16s ease; }
.category-card:hover { transform: translateY(-4px); border-color: var(--blue); background: var(--surface-blue); }
.category-icon-wrap { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 18px; background: var(--yellow-soft); }
.category-icon-wrap img { width: 42px; height: 42px; }
.category-card h3 { font-size: 1.08rem; }
.category-card p { margin-bottom: 0; font-size: .88rem; }
/* Products */
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.product-grid.mobile-scroll { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card { overflow: hidden; min-width: 0; }
.product-media { position: relative; display: grid; place-items: center; aspect-ratio: 1.35; overflow: hidden; background: linear-gradient(145deg, var(--surface-soft), var(--surface-blue)); }
.product-media::before { content: ""; position: absolute; width: 150px; height: 150px; right: -65px; top: -70px; border-radius: 50%; background: var(--yellow); opacity: .75; }
.product-media img { position: relative; z-index: 1; width: 78%; height: 78%; object-fit: contain; transition: transform .22s ease; filter:none; }
.product-card:hover .product-media img { transform: scale(1.045) rotate(-1.5deg); }
.product-badges { position: absolute; z-index: 2; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.product-body { padding: 18px; }
.product-title-row { display: flex; gap: 12px; justify-content: space-between; }
.product-title { margin-bottom: 6px; font-size: 1.12rem; }
.product-description { min-height: 48px; margin-bottom: 12px; color: var(--muted); font-size: .88rem; }
.product-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; color: var(--muted); font-size: .8rem; font-weight: 700; }
.product-footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; padding-top: 13px; border-top: 1px solid var(--line); }
.price-wrap { display: grid; }
.price-old { color: var(--muted); font-size: .8rem; text-decoration-thickness: 2px; }
.price-current { color: var(--ink-strong); font-size: 1.18rem; }
.product-action { min-width: 110px; }
.add-button { min-width: 48px; width: 48px; padding: 0; font-size: 1.45rem; }
/* Promo */
.promo-shell { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 430px; align-items: center; min-height: 360px; border-radius: 28px; background: var(--red); color: #fff; }
.promo-shell::before { content: ""; position: absolute; width: 330px; height: 330px; right: -80px; top: -100px; border-radius: 50%; background: var(--yellow); }
.promo-copy { position: relative; z-index: 2; padding: 48px; }
.promo-copy h2, .promo-copy p { color: #fff; }
.promo-price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 24px; }
.promo-price strong { font-size: 2rem; }
.promo-art { position: relative; z-index: 2; align-self: stretch; display: grid; place-items: center; }
.promo-art img { width: 360px; filter:none; }
/* Story, gallery, reviews */
.story-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; }
.story-collage { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; }
.story-panel { position: relative; min-height: 220px; overflow: hidden; border-radius: 24px; background: var(--navy); }
.story-panel:first-child { grid-row: span 2; min-height: 480px; }
.story-panel.yellow { background: var(--yellow); }
.story-panel.red { background: var(--red); }
.story-panel img { position: absolute; width: 82%; left: 50%; top: 50%; transform: translate(-50%, -50%); filter:none; }
.story-points { display: grid; gap: 15px; margin: 28px 0; }
.story-point { display: flex; gap: 13px; }
.story-point-mark { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-weight: 950; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 24px; }
.review-stars { color: #e4a900; letter-spacing: .1em; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-blue); color: var(--blue-dark); font-weight: 950; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; }
.contact-card { padding: 30px; }
.hours-list { list-style: none; margin: 22px 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.map-placeholder { min-height: 420px; overflow: hidden; }
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
/* Menu */
.page-hero { padding: 50px 0 42px; background: var(--navy); color: #fff; }
.page-hero h1, .page-hero h2 { color: #fff; }
.page-hero h1 { margin-bottom: 12px; font-size: clamp(2.4rem, 5vw, 4.4rem); }
.page-hero .lead { color: #dbe8f8; }
.menu-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 30px; align-items: start; }
.menu-sidebar { position: sticky; top: calc(var(--header-h) + 18px); padding: 20px; }
.menu-sidebar h2 { font-size: 1.1rem; }
.filter-stack { display: grid; gap: 8px; }
.filter-chip { min-height: 44px; display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 12px; cursor: pointer; }
.filter-chip:hover { background: var(--surface-blue); }
.filter-chip input { width: 18px; height: 18px; accent-color: var(--red); }
.menu-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.search-wrap { flex: 1; min-height: 52px; display: flex; align-items: center; gap: 10px; padding: 0 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.search-wrap input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.category-tabs { position: sticky; top: var(--header-h); z-index: 30; display: flex; gap: 8px; overflow-x: auto; padding: 10px 0 16px; background: var(--bg); scrollbar-width: none; }
.category-tabs::-webkit-scrollbar { display: none; }
.category-tab { min-height: 44px; flex: 0 0 auto; padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); cursor: pointer; font-weight: 850; }
.category-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.results-meta { display: flex; justify-content: space-between; gap: 12px; margin: 10px 0 18px; color: var(--muted); }
.clear-filters { border: 0; background: transparent; color: var(--blue); cursor: pointer; font-weight: 850; }
.empty-state { padding: 50px 24px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--surface); }
/* Product detail */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; padding: 22px 0; color: var(--muted); font-size: .88rem; }
.product-detail { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 48px; align-items: start; padding-bottom: 80px; }
.product-detail-media { position: sticky; top: calc(var(--header-h) + 22px); display: grid; place-items: center; min-height: 590px; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg, var(--yellow-soft), var(--surface-blue)); }
.product-detail-media::before { content: ""; position: absolute; width: 340px; height: 340px; right: -130px; top: -130px; border-radius: 50%; background: var(--red); opacity: .92; }
.product-detail-media img { position: relative; z-index: 2; width: 82%; filter:none; }
.product-detail-copy { padding-top: 12px; }
.product-detail-copy h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); }
.product-detail-price { display: flex; align-items: baseline; gap: 12px; margin: 20px 0 26px; }
.product-detail-price .price-current { color: var(--red); font-size: 2rem; }
.option-group { margin: 24px 0 0; padding: 0; border: 0; }
.option-group legend { width: 100%; margin-bottom: 12px; font-size: 1.05rem; font-weight: 950; }
.option-list { display: grid; gap: 10px; }
.option-card { min-height: 58px; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); cursor: pointer; }
.option-card:has(input:checked) { border-color: var(--blue); background: var(--surface-blue); }
.option-card input { width: 19px; height: 19px; margin-right: 9px; accent-color: var(--red); }
.quantity-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.quantity-control { display: inline-flex; align-items: center; min-height: 48px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--surface); }
.quantity-control button { width: 46px; align-self: stretch; border: 0; background: transparent; cursor: pointer; font-size: 1.2rem; }
.quantity-control output { min-width: 42px; text-align: center; font-weight: 950; }
.product-order-bar { position: sticky; bottom: 16px; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 28px; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter:none; }
.related-grid { margin-bottom: 78px; }
/* Cart */
.progress-steps { display: flex; align-items: center; gap: 8px; margin-top: 22px; }
.progress-step { display: flex; align-items: center; gap: 8px; color: #c5d4e5; font-size: .85rem; font-weight: 800; }
.progress-step::before { content: attr(data-step); width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.progress-step.active { color: var(--yellow); }
.progress-line { width: 42px; height: 1px; background: #547392; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: start; }
.cart-list { display: grid; gap: 14px; }
.cart-item { display: grid; grid-template-columns: 120px minmax(0,1fr) auto; gap: 18px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.cart-item-image { height: 100px; display: grid; place-items: center; border-radius: 15px; background: linear-gradient(145deg, var(--surface-soft), var(--surface-blue)); }
.cart-item-image img { width: 88%; height: 88%; object-fit: contain; }
.cart-item-title { font-weight: 950; }
.cart-item-options { margin: 5px 0 10px; color: var(--muted); font-size: .84rem; }
.cart-item-actions { display: grid; justify-items: end; gap: 10px; }
.cart-summary, .checkout-summary { position: sticky; top: calc(var(--header-h) + 20px); padding: 22px; }
.summary-list { list-style: none; margin: 18px 0; padding: 0; }
.summary-list li { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.summary-list .total { padding-top: 17px; border-bottom: 0; font-size: 1.12rem; }
.fulfillment-options { display: grid; gap: 8px; margin: 18px 0; }
.fulfillment-card { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; }
.fulfillment-card:has(input:checked) { border-color: var(--blue); background: var(--surface-blue); }
.fulfillment-card input { grid-row: span 2; width: 18px; height: 18px; accent-color: var(--red); }
/* Checkout */
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: start; }
.checkout-form { display: grid; gap: 16px; }
.form-section { padding: 24px; }
.form-section h2 { font-size: 1.25rem; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice-card { min-height: 118px; display: grid; gap: 7px; align-content: center; padding: 14px; border: 1px solid var(--line); border-radius: 15px; cursor: pointer; }
.choice-card:has(input:checked) { border-color: var(--blue); background: var(--surface-blue); }
.choice-card input { width: 18px; height: 18px; accent-color: var(--red); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); color: var(--ink); }
.phone-input-shell { display:flex; align-items:stretch; min-height:52px; border:1px solid var(--line); border-radius:14px; background:var(--surface); overflow:hidden; transition:border-color .16s ease, box-shadow .16s ease; }
.phone-country-prefix { display:flex; flex:0 0 auto; align-items:center; justify-content:center; padding:0 14px; border-right:1px solid var(--line); background:color-mix(in srgb,var(--surface-soft,#f7f9fb) 72%,var(--surface)); font-weight:850; color:var(--ink); white-space:nowrap; }
.field .phone-input-shell input { flex:1 1 auto; min-width:0; border:0; border-radius:0; outline:0; background:transparent; box-shadow:none; padding:0 14px; font-weight:650; letter-spacing:.025em; caret-color:var(--red,#da3528); }
.field .phone-input-shell input:focus, .field .phone-input-shell input:focus-visible { outline:0 !important; outline-offset:0 !important; box-shadow:none !important; }
.field .phone-input-shell:focus-within { border-color:var(--red,#da3528); box-shadow:0 0 0 3px color-mix(in srgb,var(--red,#da3528) 16%,transparent); outline:0; }
.field textarea { min-height: 100px; resize: vertical; }
.field-note { color: var(--muted); font-size: .8rem; }
.notice { padding: 15px; border-radius: 14px; background: var(--surface-blue); border: 1px solid var(--line); }
.notice-warning { background: var(--yellow-soft); color: #29374a; }
.order-preview { display: grid; gap: 9px; }
.order-preview-item { display: flex; justify-content: space-between; gap: 14px; font-size: .88rem; }
/* Success */
.success-wrap { padding: 70px 0; }
.success-card { max-width: 730px; margin: auto; padding: 40px; text-align: center; }
.success-icon { width: 78px; height: 78px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 2.2rem; font-weight: 950; }
.timeline { display: grid; gap: 0; margin: 26px 0; text-align: left; }
.timeline-item { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding-bottom: 22px; }
.timeline-item:not(:last-child)::before { content: ""; position: absolute; left: 16px; top: 28px; bottom: -2px; width: 2px; background: var(--line); }
.timeline-dot { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-blue); color: var(--blue-dark); font-weight: 950; }
.timeline-item.active .timeline-dot { background: var(--green); color: #fff; }
/* Footer */
.site-footer { padding: 56px 0 20px; background: var(--navy); color: #d8e5f4; }
.site-footer .brand-name, .site-footer h3 { color: #fff; }
.site-footer .brand-sub, .site-footer .muted { color: #aebfd2; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 34px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #bfcfe0; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 20px; border-top: 1px solid #28496d; color: #9fb4ca; font-size: .82rem; }
/* Toast & mobile nav */
.toast { position: fixed; z-index: 1700; right: 18px; bottom: 18px; max-width: 340px; transform: translateY(130%); opacity: 0; padding: 14px 16px; border-radius: 15px; background: var(--navy); color: #fff; font-weight: 800; transition: .22s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
.mobile-bottom-nav { display: none; }
/* Forced colors */
@media (forced-colors: active) {
  :focus-visible { outline: 3px solid Highlight; }
  .button, .card, .category-tab, .search-wrap, .option-card { border: 1px solid CanvasText; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 430px; gap: 24px; }
  .hero-visual { min-height: 500px; }
  .category-scroller { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.mobile-scroll { grid-template-columns: repeat(2, 1fr); }
  .promo-shell { grid-template-columns: 1fr 340px; }
  .story-grid { gap: 30px; }
  .cart-layout, .checkout-layout { grid-template-columns: minmax(0,1fr) 330px; }
}
@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .site-footer { display: none !important; }
  body { padding-bottom: 72px; }
  .container { width: min(calc(100% - 24px), var(--max)); }
  .site-header { height: var(--header-h); }
  .brand-logo { width: 38px; height: 38px; }
  .brand-sub { display: none; }
  .primary-nav { position: fixed; inset: var(--header-h) 0 0; display: none; align-content: start; gap: 4px; padding: 22px; background: var(--surface); }
  .nav-open .primary-nav { display: grid; }
  .primary-nav a { min-height: 52px; font-size: 1.08rem; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .cart-label { display: none; }
  .hero { padding: 24px 0 12px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 26px 0 8px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 12vw, 4.5rem); }
  .hero-visual { min-height: 430px; }
  .hero-plate { inset: 18px 8px 24px; }
  .hero-rating { left: 0; top: 35px; }
  .hero-offer { right: 4px; bottom: 24px; width: 220px; }
  .quick-info { transform: none; padding-top: 14px; }
  .quick-info-grid { grid-template-columns: 1fr; }
  .quick-info-item { min-height: 72px; }
  .quick-info-item + .quick-info-item { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 64px 0; }
  .section-tight { padding: 42px 0; }
  .section-header { align-items: start; }
  .section-header .button { display: none; }
  .category-scroller { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: -12px; padding-right: 12px; scrollbar-width: none; }
  .category-scroller::-webkit-scrollbar { display: none; }
  .category-card { min-width: 210px; scroll-snap-align: start; }
  .product-grid.mobile-scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: -12px; padding-right: 12px; scrollbar-width: none; }
  .product-grid.mobile-scroll::-webkit-scrollbar { display: none; }
  .product-grid.mobile-scroll .product-card { min-width: 78vw; scroll-snap-align: start; }
  .promo-shell { grid-template-columns: 1fr; }
  .promo-copy { padding: 34px 26px 12px; }
  .promo-art { min-height: 230px; }
  .promo-art img { width: 260px; }
  .story-grid, .contact-grid, .product-detail { grid-template-columns: 1fr; }
  .story-collage { order: 2; }
  .story-panel:first-child { min-height: 360px; }
  .review-grid { grid-template-columns: 1fr; }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-sidebar { position: static; display: none; }
  .menu-toolbar { flex-wrap: wrap; }
  .menu-toolbar .button { width: 100%; }
  .category-tabs { top: var(--header-h); margin-inline: -12px; padding-inline: 12px; }
  .product-detail-media { position: static; min-height: 420px; }
  .product-detail { gap: 24px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary, .checkout-summary { position: static; }
  .choice-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-bottom-nav { position: fixed; z-index: 1200; left: 8px; right: 8px; bottom: 8px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 5px; border: 1px solid var(--line); border-radius: 18px; background: color-mix(in srgb, var(--surface) 94%, transparent); backdrop-filter:none; }
  .mobile-bottom-nav a { min-height: 52px; display: grid; place-items: center; gap: 2px; padding: 5px; border-radius: 13px; color: var(--muted); font-size: .69rem; font-weight: 850; }
  .mobile-bottom-nav a::before { font-size: 1.15rem; }
  .mobile-bottom-nav a[data-nav="home"]::before { content: "⌂"; }
  .mobile-bottom-nav a[data-nav="menu"]::before { content: "◫"; }
  .mobile-bottom-nav a[data-nav="cart"]::before { content: "▣"; }
  .mobile-bottom-nav a[data-nav="contact"]::before { content: "●"; }
  .mobile-bottom-nav a.active { background: var(--surface-blue); color: var(--blue-dark); }
  .toast { bottom: 86px; left: 12px; right: 12px; max-width: none; }
}
@media (max-width: 560px) {
  .header-tools .icon-button { display: none; }
  h1 { font-size: 2.7rem; }
  .hero-badges { display: grid; }
  .action-row .button { flex: 1 1 100%; }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 365px; }
  .hero-plate { border-radius: 30px; }
  .hero-pizza { width: 94%; }
  .hero-rating { top: 26px; font-size: .78rem; }
  .hero-offer { bottom: 18px; width: 195px; padding: 12px; }
  .quick-info-item { padding: 14px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-media { aspect-ratio: 1.55; }
  .promo-copy { padding: 30px 20px 10px; }
  .story-collage { grid-template-columns: 1fr 1fr; }
  .story-panel:first-child { min-height: 310px; }
  .story-panel { min-height: 145px; }
  .contact-card { padding: 22px; }
  .hours-list li { align-items: start; flex-direction: column; gap: 3px; }
  .page-hero { padding: 38px 0 32px; }
  .page-hero h1 { font-size: 2.6rem; }
  .product-detail-media { min-height: 340px; }
  .product-order-bar { bottom: 84px; }
  .cart-item { grid-template-columns: 86px 1fr; }
  .cart-item-image { height: 86px; }
  .cart-item-actions { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .success-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ===== V3 food-first polish ===== */
:root {
  --radius: 16px;
  --max: 1260px;
}
.hero {
  padding-top: 42px;
  background:
    radial-gradient(circle at 8% 8%, color-mix(in srgb, var(--yellow) 48%, transparent) 0 10%, transparent 10.2%),
    linear-gradient(128deg, var(--surface-soft) 0 48%, var(--surface-blue) 48% 100%);
}
.hero-grid { min-height: 650px; }
.hero-copy { position: relative; z-index: 4; }
.hero-copy h1 { max-width: 720px; font-size: clamp(3.2rem, 6.25vw, 6.25rem); }
.hero-copy .lead { max-width: 650px; }
.hero-visual { min-height: 610px; }
.hero-plate {
  inset: 24px 6px 30px 28px;
  border-radius: 52% 48% 46% 54% / 49% 41% 59% 51%;
  background: linear-gradient(145deg, #06284d, #0c4f8f);
}
.hero-plate::before { width: 185px; height: 185px; right: -20px; top: -25px; }
.hero-plate::after { width: 150px; height: 150px; left: -25px; bottom: -45px; }
.hero-pizza {
  width: min(570px, 102%);
  max-width: none;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: normal;
  transform: translate(-50%, -51%) rotate(-3deg);
  filter:none;
}
.hero-rating { border: 1px solid rgba(255,255,255,.7); box-shadow:none; }
.hero-offer { box-shadow:none; }
.quick-info-grid { box-shadow:none; }

.category-card { transition: transform .18s ease, border-color .18s ease, background-color .18s ease; }
.category-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--blue) 34%, var(--line)); }
.category-icon-wrap { background: var(--yellow-soft); }

.product-card { overflow: hidden; }
.product-card-photo { background: var(--surface); }
.product-media.product-card-photo {
  aspect-ratio: 1.12;
  padding: 10px;
  background: linear-gradient(150deg, #ffffff 0 74%, var(--surface-blue) 74% 100%);
}

.product-media.product-card-photo::before { width: 92px; height: 92px; right: -30px; top: -28px; opacity: .9; }
.product-media.product-card-photo img {
  width: 96%;
  height: 96%;
  object-fit: contain;
  border-radius: 50%;
  filter:none;
}
.product-card-photo:hover .product-media img { transform: scale(1.025) rotate(-.7deg); }
.product-body { display: flex; flex-direction: column; min-height: 218px; }
.product-description { min-height: 3.05em; }
.product-footer { margin-top: auto; }
.product-action { min-width: 90px; border-color: var(--red); background: var(--red); color: #fff; }
.product-action:hover { border-color: var(--red-dark); background: var(--red-dark); }

.promo-shell { overflow: hidden; background: linear-gradient(112deg, #c92019 0 64%, #ffd43b 64% 100%); }
.promo-art { min-height: 370px; }
.promo-art::before { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: #fff4ef; }
.promo-art img { position: relative; z-index: 2; width: 390px; border-radius: 50%; filter:none; }

.story-panel { border-radius: 16px; }
.story-panel img { width: 94%; border-radius: 50%; }
.story-panel:first-child img { width: 112%; }
.review-card { position: relative; overflow: hidden; }
.review-card::after { content: "“"; position: absolute; right: 16px; top: -18px; color: var(--blue-soft); font: 900 6rem/1 Georgia, serif; }

.product-detail-media {
  min-height: 610px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff 0 72%, var(--surface-blue) 72% 100%);
}

.product-detail-media::before { width: 220px; height: 220px; }
.product-detail-media img { width: 96%; border-radius: 50%; filter:none; }

.cart-item-image { background: #fff; }
.cart-item-image img { width: 96%; height: 96%; border-radius: 50%; }

@media (max-width: 820px) {
  .hero { padding-top: 10px; background: linear-gradient(180deg, var(--surface-soft), var(--surface-blue)); }
  .hero-grid { min-height: auto; }
  .hero-copy { padding-top: 22px; }
  .hero-copy h1 { max-width: 620px; font-size: clamp(2.75rem, 11vw, 4.35rem); }
  .hero-visual { min-height: 440px; }
  .hero-pizza { width: min(520px, 106%); }
  .quick-info-grid { box-shadow:none; }
  .product-grid.mobile-scroll .product-card { min-width: min(340px, 82vw); }
  .promo-art { min-height: 290px; }
  .promo-art img { width: min(340px, 92vw); }
  .story-collage { max-height: 560px; }
}

@media (max-width: 560px) {
  .hero { padding-bottom: 4px; }
  .hero-copy h1 { font-size: clamp(2.7rem, 12vw, 3.55rem); line-height: 1.05; }
  .hero-copy .lead { font-size: .98rem; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
  .hero-visual { min-height: 360px; }
  .hero-plate { inset: 12px 0 18px; }
  .hero-pizza { width: 102%; }
  .hero-rating { left: 8px; top: 18px; }
  .hero-offer { right: 8px; bottom: 14px; width: 185px; }
  .quick-info-item:nth-child(2) { display: none; }
  .quick-info-item { min-height: 62px; }
  .section { padding: 54px 0; }
  .section-tight { padding: 34px 0; }
  .category-card { min-width: 176px; padding: 14px; }
  .category-icon-wrap { width: 46px; height: 46px; }
  .product-media.product-card-photo { aspect-ratio: 1.05; }
  .product-body { min-height: 205px; }
  .product-description { min-height: auto; }
  .promo-copy { padding-top: 28px; }
  .promo-art { min-height: 240px; }
  .promo-art::before { width: 230px; height: 230px; }
  .promo-art img { width: 245px; }
  .story-grid { gap: 22px; }
  .story-collage { display: grid; grid-template-columns: 1.35fr .65fr; max-height: 330px; }
  .story-panel:first-child { min-height: 330px; }
  .story-panel { min-height: 155px; }
  .review-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: -12px; padding-right: 12px; }
  .review-card { min-width: 84vw; scroll-snap-align: start; }
  .contact-grid { gap: 14px; }
  .product-detail-media { min-height: 350px; }
}
@media (max-width: 560px) {
  .product-media { contain: paint; }
  .product-media::before { display: none; }
}
@media (max-width: 560px) {
  .product-detail-media::before { display: none; }
  html, body { width: 100%; max-width: 100%; overflow-x: hidden !important; }
}

/* ===== V4 menu, favorites and ordering refinement ===== */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-copy h1 {
  max-width: 650px;
  font-size: clamp(3rem, 5.35vw, 5.35rem);
  letter-spacing: -.055em;
}
.hero-copy h1 span { display: block; }
.hero-copy .lead { max-width: 600px; }
.hero-grid { min-height: 610px; }
.hero-visual { min-height: 570px; }

.category-card { position: relative; }
.category-count {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding-inline: 7px;
  border-radius: 99px;
  background: var(--surface-blue);
  color: var(--blue-dark);
  font-size: .76rem;
  font-weight: 900;
}

.pairing-section { background: var(--surface); }
.pairing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pairing-card {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(0, 1.2fr);
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.pairing-media {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 12px;
  background: linear-gradient(150deg, #fff 0 72%, var(--yellow-soft) 72%);
}
.pairing-media img {
  width: 112%;
  max-width: 250px;
  aspect-ratio: 1;
  object-fit: contain;
  filter:none;
}
.pairing-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}
.pairing-copy h3 { margin: 4px 0 8px; }
.pairing-copy p { margin: 0; color: var(--muted); font-size: .91rem; }
.pairing-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pairing-footer > strong { font-size: 1.05rem; }

.product-media { position: relative; }
.product-media-link {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: inherit;
}
.product-media-link img { pointer-events: none; }
.card-icon-actions {
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 7px;
}
.card-icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(12, 47, 87, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: #0b3767;
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter:none;
}
.card-icon-button:hover,
.card-icon-button:focus-visible { border-color: var(--blue); background: #fff; }
.favorite-button.active { border-color: var(--red); background: var(--red); color: #fff; }
.quick-view-button { font-size: .96rem; }
.product-badges { z-index: 4; }
.product-action { min-width: 104px; }

.quick-view-dialog {
  width: min(860px, calc(100% - 32px));
  max-height: min(680px, calc(100vh - 32px));
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 22px;
  background: var(--surface);
  color: var(--text);
}
.quick-view-dialog::backdrop { background: rgba(1, 18, 36, .72); backdrop-filter:none; }
.dialog-close {
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}
.quick-view-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .86fr); min-height: 470px; }
.quick-view-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(145deg, #fff 0 72%, #dcecff 72%);
}
.quick-view-media img {
  width: 94%;
  max-height: 450px;
  object-fit: contain;
  filter:none;
}
.quick-view-copy { display: flex; flex-direction: column; padding: 54px 34px 32px; }
.quick-view-copy h2 { margin: 18px 0 10px; font-size: clamp(2rem, 4vw, 3rem); }
.quick-view-footer { margin-top: auto; padding-top: 28px; border-top: 1px solid var(--line); }
.quick-view-footer .price-current { display: block; margin-bottom: 16px; font-size: 1.65rem; }

.menu-discovery {
  padding: 24px 0;
  background: var(--surface-soft);
}
.menu-discovery-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .68fr);
  align-items: center;
  min-height: 300px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(115deg, #0d3c70 0 67%, #ffd43b 67%);
  color: #fff;
}
.menu-discovery-inner > div:first-child { padding: 38px 44px; }
.menu-discovery-inner h2 { max-width: 680px; margin: 14px 0 8px; font-size: clamp(2rem, 4vw, 3.7rem); color: #fff; }
.menu-discovery-inner p { max-width: 620px; margin: 0 0 22px; color: #d9e7f6; }
.menu-discovery-images { position: relative; min-height: 300px; }
.menu-discovery-images img {
  position: absolute;
  width: 230px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  filter:none;
}
.menu-discovery-images img:first-child { left: -25px; top: 32px; transform: rotate(-7deg); }
.menu-discovery-images img:last-child { right: -15px; bottom: -28px; transform: rotate(8deg); }

.sort-wrap { min-width: 210px; }
.sort-wrap select { width: 100%; min-height: 52px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); color: var(--text); font: inherit; font-weight: 800; padding: 0 42px 0 15px; }
.favorite-filter { border-color: color-mix(in srgb, var(--red) 30%, var(--line)); }
.product-detail-facts { margin: 16px 0 24px; }
.favorite-product-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--surface);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}
.favorite-product-button.active { border-color: var(--red); background: var(--red); color: #fff; }
.product-companions { padding: 46px 0 12px; }
.cart-upsell-section { border-top: 1px solid var(--line); }
.cart-line-total { display: block; margin-top: 8px; font-size: 1.08rem; }

.order-preview-item { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 10px; }
.order-preview-thumb { width: 44px; height: 44px; object-fit: contain; border-radius: 12px; background: #fff; }
.checkout-assurance {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 750;
}
.choice-card-disabled { opacity: .58; cursor: not-allowed; }
.choice-card-disabled input { cursor: not-allowed; }

.cart-dock {
  position: fixed;
  z-index: 1300;
  left: 50%;
  bottom: 20px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(520px, calc(100% - 32px));
  min-height: 66px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: #092f59;
  color: #fff;
  transform: translateX(-50%);
  box-shadow:none;
}
.cart-dock[hidden] { display: none; }
.cart-dock-count { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--yellow); color: #072b52; font-weight: 950; }
.cart-dock span:nth-child(2) { display: grid; }
.cart-dock small { color: #cfe0f2; }
.cart-dock > strong:last-child { font-size: 1.08rem; }





@media (max-width: 1100px) {
  .pairing-grid { grid-template-columns: 1fr; }
  .pairing-card { grid-template-columns: minmax(150px, .55fr) minmax(0, 1.45fr); min-height: 220px; }
  .menu-discovery-inner { grid-template-columns: 1fr 330px; }
}

@media (max-width: 820px) {
  .hero-grid { min-height: auto; }
  .hero-visual { min-height: 405px; }
  .menu-discovery-inner { grid-template-columns: 1fr; }
  .menu-discovery-inner > div:first-child { padding: 30px 26px 8px; }
  .menu-discovery-images { min-height: 250px; }
  .menu-discovery-images img { width: 210px; }
  .menu-sidebar {
    display: block;
    overflow-x: auto;
    padding: 13px;
    border-radius: 14px;
    scrollbar-width: none;
  }
  .menu-sidebar::-webkit-scrollbar { display: none; }
  .menu-sidebar h2 { display: none; }
  .menu-sidebar .filter-stack { display: flex; flex-direction: row; gap: 8px; min-width: max-content; }
  .menu-sidebar .filter-chip { min-height: 44px; padding: 8px 13px; white-space: nowrap; }
  .menu-toolbar { display: grid; grid-template-columns: 1fr 210px; }
  .menu-toolbar .button { grid-column: 1 / -1; width: 100%; }
  .quick-view-layout { grid-template-columns: 1fr; max-height: calc(100vh - 32px); overflow-y: auto; }
  .quick-view-media { min-height: 310px; border-radius: 22px 22px 0 0; }
  .quick-view-media img { max-height: 300px; }
  .quick-view-copy { padding: 28px 24px; }
  .cart-dock { bottom: 82px; }
}

@media (max-width: 560px) {
  .hero-copy h1 { font-size: clamp(2.55rem, 11vw, 3.35rem); }
  .hero-visual { min-height: 335px; }
  .hero-pizza { width: 94%; }
  .hero-rating { font-size: .72rem; }
  .hero-offer { width: 174px; }
  .pairing-card { grid-template-columns: 118px minmax(0, 1fr); min-height: 190px; }
  .pairing-media { padding: 5px; }
  .pairing-media img { width: 126%; }
  .pairing-copy { gap: 12px; padding: 16px 14px; }
  .pairing-copy p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .pairing-footer { align-items: flex-end; }
  .pairing-footer .button { min-width: 44px; width: 44px; overflow: hidden; padding: 0; font-size: 0; }
  .pairing-footer .button::after { content: "+"; font-size: 1.15rem; }
  .menu-discovery { padding: 12px 0 24px; }
  .menu-discovery-inner { border-radius: 16px; }
  .menu-discovery-inner h2 { font-size: 2rem; }
  .menu-discovery-images { min-height: 210px; }
  .menu-discovery-images img { width: 172px; }
  .menu-discovery-images img:first-child { left: -5px; top: 28px; }
  .menu-discovery-images img:last-child { right: -8px; bottom: -20px; }
  .menu-toolbar { grid-template-columns: 1fr; }
  .sort-wrap { min-width: 0; }
  .product-media.product-card-photo { aspect-ratio: 1.18; }
  .card-icon-actions { top: 8px; right: 8px; }
  .card-icon-button { width: 38px; height: 38px; }
  .quick-view-dialog { width: calc(100% - 18px); max-height: calc(100vh - 18px); border-radius: 18px; }
  .quick-view-media { min-height: 250px; border-radius: 18px 18px 0 0; }
  .quick-view-media img { max-height: 245px; }
  .quick-view-copy { padding: 24px 18px; }
  .quick-view-copy h2 { margin-top: 12px; }
  .quick-view-footer .action-row .button { flex-basis: 100%; }
  .cart-dock { left: 10px; right: 10px; bottom: 76px; width: auto; transform: none; }
  .product-companions { padding-top: 32px; }
  .order-preview-item { grid-template-columns: 38px 1fr auto; }
  .order-preview-thumb { width: 38px; height: 38px; }
}


/* ==========================================================================
   Design 1 migration phase 1 — real Casa Pizza images and menu slideshow
   ========================================================================== */

.brand-logo-official,
.site-header .brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-footer-text .brand-copy {
  padding-left: 0;
}

.category-scroller {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card-photo .product-media {
  background: #fff;
}

.product-card-photo .product-media::before {
  opacity: .18;
}

.product-card-photo .product-media img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: none;
}

.product-card-photo:hover .product-media img {
  transform: scale(1.025);
}

.hero-pizza {
  width: min(560px, 98%);
  height: 500px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: none;
}

.promo-art img,
.story-panel img {
  object-fit: contain;
}

.map-placeholder img {
  object-position: center;
}

.menu-slideshow {
  --menu-slide-duration: 620ms;
  position: relative;
  height: clamp(410px, 57vw, 690px);
  min-height: 410px;
  overflow: hidden;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
  outline: 0;
}

.menu-slideshow__viewport,
.menu-slideshow__slide {
  position: absolute;
  inset: 0;
}

.menu-slideshow__slide {
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(20px, 0, 0);
  transition:
    opacity var(--menu-slide-duration) ease,
    transform var(--menu-slide-duration) ease;
}

.menu-slideshow[data-direction="previous"] .menu-slideshow__slide {
  transform: translate3d(-20px, 0, 0);
}

.menu-slideshow__slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.menu-slideshow__slide.is-leaving {
  z-index: 1;
}

.menu-slideshow__slide picture {
  position: absolute;
  inset:
    clamp(26px, 4vh, 50px)
    clamp(58px, 6vw, 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-slideshow__slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center;
}

.menu-slideshow__control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--navy);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow:none;
  backdrop-filter:none;
}

.menu-slideshow__control:hover {
  background: var(--red);
  color: #fff;
}

.menu-slideshow__control--previous {
  left: clamp(12px, 2.4vw, 34px);
}

.menu-slideshow__control--next {
  right: clamp(12px, 2.4vw, 34px);
}

.menu-slideshow + .page-hero {
  border-top: 0;
}

[data-product-options]:empty {
  display: none;
}

.option-card input {
  accent-color: var(--red);
}

@media (max-width: 900px) {
  .category-scroller {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-pizza {
    height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header .brand-logo {
    width: 44px;
    height: 44px;
  }

  .menu-slideshow {
    height: 68svh;
    min-height: 430px;
  }

  .menu-slideshow__slide picture {
    inset: 22px 48px;
  }

  .menu-slideshow__control {
    width: 42px;
    height: 42px;
    font-size: 1.9rem;
  }

  .category-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 78vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .category-card {
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-slideshow__slide {
    transition: none;
  }
}


/* ==========================================================================
   Phase 3 — restore the approved Design 1 home hero composition
   ========================================================================== */

body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, .97fr);
  min-height: 650px;
  gap: 52px;
}

body[data-page="home"] .hero-copy {
  padding-block: 42px;
}

body[data-page="home"] .hero-visual {
  min-height: 610px;
}

body[data-page="home"] .hero-plate {
  inset: 24px 2px 28px 26px;
}

body[data-page="home"] .hero-pizza {
  width: min(585px, 108%);
  height: auto;
  max-width: none;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  transform: translate(-50%, -51%) rotate(-3deg);
  filter:none;
}

body[data-page="home"] .hero-meta {
  margin-top: 28px;
}

body[data-page="home"] .hero-meta:has(.hero-meta-item:only-child) {
  gap: 0;
}

@media (max-width: 1080px) {
  body[data-page="home"] .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
    gap: 32px;
  }

  body[data-page="home"] .hero-pizza {
    width: min(535px, 108%);
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body[data-page="home"] .hero-visual {
    min-height: 480px;
  }

  body[data-page="home"] .hero-pizza {
    width: min(540px, 96%);
  }
}

@media (max-width: 560px) {
  body[data-page="home"] .hero-visual {
    min-height: 365px;
  }

  body[data-page="home"] .hero-pizza {
    width: min(400px, 102%);
  }
}


/* ========================================================================== 
   Phase 4 — clean Design 1 customer experience
   ========================================================================== */

/* Home: original Design 1 proportions with a cleaner customer header. */
body[data-page="home"] .hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  min-height: auto;
  gap: 56px;
}
body[data-page="home"] .hero-copy { padding: 40px 0; }
body[data-page="home"] .hero-visual { min-height: 570px; }
body[data-page="home"] .hero-plate { inset: 30px 16px 34px 44px; }
body[data-page="home"] .hero-pizza {
  width: min(560px, 100%);
  height: 500px;
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  transform: translate(-50%, -50%);
  filter: none;
}

/* Menu: slideshow is the complete first screen and every slide is clickable. */
body[data-page="menu"] .page { overflow: clip; }
.menu-slideshow {
  height: calc(100svh - var(--header-h));
  min-height: 560px;
  max-height: 940px;
  border-bottom: 0;
  background: #fbf8f1;
}
.menu-slideshow__product-link { position: absolute; inset: 0; display: block; color: inherit; }
.menu-slideshow__slide picture {
  inset: clamp(18px, 3vh, 34px) clamp(58px, 6vw, 110px) clamp(26px, 4vh, 56px);
}
.menu-slideshow__caption {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 5vw, 84px);
  bottom: clamp(22px, 4vh, 52px);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: min(520px, calc(100% - 150px));
  padding: 13px 15px;
  border: 1px solid rgba(11,47,87,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  box-shadow:none;
  backdrop-filter:none;
}
.menu-slideshow__caption > span:first-child { display: grid; gap: 2px; min-width: 0; }
.menu-slideshow__caption strong { overflow: hidden; font-size: clamp(1rem, 1.8vw, 1.35rem); text-overflow: ellipsis; white-space: nowrap; }
.menu-slideshow__caption small { color: var(--red); font-size: .9rem; font-weight: 900; }
.menu-slideshow__view { margin-left: auto; padding: 8px 12px; border-radius: 10px; background: var(--red); color: #fff; font-size: .8rem; font-weight: 900; }

/* One clean menu control zone. */
.menu-control-zone { padding: 38px 0 28px; background: var(--surface-soft); border-bottom: 1px solid var(--line); }
.menu-control-shell { display: grid; gap: 18px; }
.menu-control-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.menu-control-heading 
.menu-control-heading h1 { margin: 0; font-size: clamp(2rem, 4vw, 3.7rem); }
.menu-toolbar-clean { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; margin: 0; }
.menu-search-large input { min-height: 58px; }
.menu-clear-button { min-height: 58px; }
.menu-category-tabs { margin: 0; }
.menu-inline-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.menu-inline-filters .filter-chip { min-height: 42px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); white-space: nowrap; }
.menu-inline-filters .filter-chip:has(input:checked) { border-color: var(--navy); background: var(--navy); color: #fff; }
.menu-products-section { padding-top: 34px; }

/* The quick-view composition stays, but metadata/category facts are intentionally absent. */
.quick-view-copy h2 { margin-top: 18px; }
.quick-view-copy > .muted { margin-bottom: 18px; }

@media (max-width: 900px) {
  body[data-page="home"] .hero-grid { grid-template-columns: 1fr; }
  body[data-page="home"] .hero-visual { min-height: 440px; }
  body[data-page="home"] .hero-pizza { width: min(530px, 96%); height: 420px; }
  .menu-slideshow { min-height: 500px; }
}

@media (max-width: 680px) {
  .menu-slideshow { height: calc(100svh - var(--header-h)); min-height: 520px; }
  .menu-slideshow__slide picture { inset: 14px 18px 88px; }
  .menu-slideshow__caption { left: 12px; right: 12px; bottom: 14px; max-width: none; }
  .menu-control-zone { padding: 26px 0 22px; }
  .menu-toolbar-clean { grid-template-columns: 1fr; }
  .menu-clear-button { min-height: 48px; }
  .menu-inline-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .menu-inline-filters::-webkit-scrollbar { display: none; }
}


/* ==========================================================================
   Phase 5 — full-width menu and product editor
   ========================================================================== */

/* Remove retired interface pieces. */
.cart-dock,
.hero-meta {
  display: none !important;
}

/* Menu filters stay compact; the menu itself uses the entire display width. */
.menu-control-zone {
  padding: 22px 0 18px;
}
.menu-control-shell {
  max-width: none;
  width: 100%;
  padding-inline: clamp(16px, 2vw, 38px);
}
.menu-toolbar-clean {
  max-width: none;
}
.menu-products-full {
  padding: 26px 0 72px;
}
.menu-products-full > .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(16px, 2vw, 38px);
}
.product-grid-full {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 24px);
}
.product-grid-full .product-card {
  min-width: 0;
}
.product-grid-full .product-media {
  aspect-ratio: 1.16;
}
.product-grid-full .product-body {
  min-height: 236px;
}

/* Keep the opening slideshow genuinely full screen under the header. */
body[data-page="menu"] .menu-slideshow {
  height: calc(100svh - var(--header-h));
  min-height: 600px;
  max-height: none;
}
body[data-page="menu"] .menu-slideshow__slide picture {
  inset: clamp(14px, 2.2vh, 28px) clamp(18px, 2.4vw, 46px)
    clamp(18px, 2.8vh, 38px);
}
body[data-page="menu"] .menu-slideshow__slide img {
  width: 100%;
  height: 100%;
}

/* Product editor: selected reference layout, Casa Pizza colors. */
.product-page {
  padding: 34px 0 80px;
}
.product-page-shell {
  width: min(1500px, calc(100% - 44px));
  margin: 0 auto;
}
.product-back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}
.product-editor {
  display: grid;
  grid-template-columns: minmax(420px, .96fr) minmax(500px, 1.04fr);
  gap: clamp(34px, 4vw, 70px);
  align-items: stretch;
}
.product-editor-media {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
}
.product-editor-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 22%;
  background: linear-gradient(145deg, transparent 0 40%, #dcecff 40%);
  opacity: .72;
  pointer-events: none;
}
.product-editor-media img {
  position: relative;
  z-index: 1;
  width: 94%;
  height: 94%;
  object-fit: contain;
}
.product-editor-badge {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
}
.product-editor-copy {
  min-width: 0;
  padding: 8px 0 0;
}
.product-editor-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.product-editor-heading h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 5.6vw, 6.1rem);
  line-height: .96;
  letter-spacing: -.045em;
}
.product-editor-heading .lead {
  max-width: 760px;
  margin-top: 20px;
  font-size: 1.08rem;
}
.product-editor-favorite {
  flex: 0 0 auto;
}
.product-customization-card {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid #ddcdb7;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
}
.product-customization-card[hidden] {
  display: none;
}
.product-customization-card 
.product-customization-card .option-group {
  margin: 0;
  padding: 0;
  border: 0;
}
.product-customization-card .option-group + .option-group {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.product-customization-card .option-group legend {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
}
.product-customization-card .option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-customization-card .option-card {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  padding: 8px 14px;
  border: 1px solid #dcc8aa;
  border-radius: 999px;
  background: #fffaf1;
}
.product-customization-card .option-card:has(input:checked) {
  border-color: var(--red);
  background: #fff0ed;
}
.product-customization-card .option-card strong {
  color: var(--red);
  font-size: .78rem;
}
.product-price-summary {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  margin: 34px 0 24px;
  border-top: 1px solid #d9c8ae;
  border-bottom: 1px solid #d9c8ae;
}
.product-unit-price,
.product-total-price {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-unit-price {
  padding-right: 28px;
  border-right: 1px solid #d9c8ae;
}
.product-total-price {
  align-items: flex-end;
  padding-left: 28px;
  text-align: right;
}
.product-unit-price > span,
.product-total-price > span {
  color: var(--muted);
  font-size: .85rem;
}
.product-unit-price .price-old {
  margin-top: 7px;
}
.product-unit-price .price-current {
  margin-top: 4px;
  font-size: 2rem;
}
.product-total-price strong {
  margin-top: 5px;
  color: var(--navy);
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 1;
}
.product-order-editor {
  padding: 22px;
  border: 1px solid #d9c8ae;
  border-radius: 22px;
  background: rgba(255,255,255,.62);
}
.product-order-actions {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(260px, 1.3fr);
  gap: 16px;
}
.product-editor-quantity {
  width: 100%;
  min-height: 58px;
  justify-content: space-between;
  border: 1px solid #d9c8ae;
  border-radius: 999px;
  background: #fffaf1;
}
.product-editor-quantity button {
  width: 58px;
}
.product-editor-add {
  min-height: 58px;
  border-radius: 999px;
  font-size: 1rem;
}
.product-note-field {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}
.product-note-field > span {
  color: var(--navy);
  font-size: .84rem;
  font-weight: 850;
}
.product-note-field textarea {
  width: 100%;
  min-height: 112px;
  resize: vertical;
  padding: 15px;
  border: 1px solid #d9c8ae;
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
}
.product-service-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.product-service-facts article {
  padding-top: 15px;
  border-top: 1px solid #d9c8ae;
}
.product-service-facts span {
  display: block;
  color: var(--muted);
  font-size: .75rem;
}
.product-service-facts strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  line-height: 1.35;
}
.product-related-only {
  margin-top: 86px;
  margin-bottom: 0;
}
.product-grid-related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* The compact companion row is retired; only the full related grid remains. */
.product-companions,
.pairing-grid[data-companion-grid] {
  display: none !important;
}

@media (max-width: 1350px) {
  .product-grid-full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-editor {
    grid-template-columns: minmax(380px, .9fr) minmax(480px, 1.1fr);
  }
  .product-editor-media {
    min-height: 650px;
  }
}

@media (max-width: 980px) {
  .product-grid-full,
  .product-grid-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-editor {
    grid-template-columns: 1fr;
  }
  .product-editor-media {
    position: relative;
    top: auto;
    min-height: 560px;
  }
  .product-editor-heading h1 {
    font-size: clamp(3rem, 9vw, 5rem);
  }
}

@media (max-width: 680px) {
  .menu-control-zone {
    padding: 16px 0 14px;
  }
  .menu-products-full > .container,
  .menu-control-shell {
    padding-inline: 12px;
  }
  .product-grid-full,
  .product-grid-related {
    grid-template-columns: 1fr;
  }
  .product-page {
    padding-top: 18px;
  }
  .product-page-shell {
    width: min(100% - 20px, 1500px);
  }
  .product-editor-media {
    min-height: 390px;
    border-radius: 20px;
  }
  .product-editor-heading h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }
  .product-price-summary {
    grid-template-columns: 1fr;
  }
  .product-unit-price {
    min-height: 110px;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid #d9c8ae;
  }
  .product-total-price {
    min-height: 120px;
    align-items: flex-start;
    padding-left: 0;
    text-align: left;
  }
  .product-order-actions {
    grid-template-columns: 1fr;
  }
  .product-service-facts {
    grid-template-columns: 1fr;
  }
  .product-related-only {
    margin-top: 58px;
  }
}


/* ==========================================================================\n   Phase 6 — design-only premium refinement\n   ========================================================================== */
html{scroll-behavior:auto}
.section-header>div{padding-top:0}.site-header{background:rgba(255,255,255,.88);backdrop-filter:none;box-shadow:none}.header-inner{max-width:1320px}.primary-nav a{font-weight:850}.cart-button{min-height:46px;padding:7px 14px;border-radius:15px;box-shadow:none}.cart-count{background:var(--yellow);font-weight:950}.icon-button[data-theme-toggle]{display:none!important}
/* Home */
.home-showcase{padding:18px 0 58px;background:linear-gradient(180deg,#fff 0,#f8f5ee 100%)}.home-showcase::before{display:none}.home-showcase-card{position:relative;display:grid;grid-template-columns:minmax(0,.95fr) minmax(540px,1.05fr);align-items:stretch;min-height:620px;overflow:hidden;border:1px solid rgba(11,47,87,.12);border-radius:28px;background:#fff;box-shadow:none}.home-showcase-copy{z-index:2;display:flex;flex-direction:column;justify-content:center;padding:64px 48px 74px}.home-showcase-copy h1{max-width:620px;margin-bottom:22px;font-size:clamp(3rem,5.1vw,5.7rem);line-height:.98}.home-showcase-copy h1 span{display:block;color:var(--red)}.home-showcase-copy .lead{max-width:560px}.home-showcase-visual{position:relative;display:block;min-height:620px;overflow:hidden;background:#092f59}.home-showcase-stage{position:absolute;inset:0;display:grid;place-items:center;overflow:hidden;background:radial-gradient(circle at 55% 43%,#174b7f 0 23%,#0a315b 24% 68%,#082847 69%)}.home-showcase-stage::before{content:"";position:absolute;width:220px;height:220px;right:-56px;top:-45px;border-radius:50%;background:var(--red)}.home-showcase-stage::after{content:"";position:absolute;width:245px;height:245px;left:-100px;bottom:-115px;border-radius:50%;background:var(--yellow)}.home-showcase-orbit{position:absolute;width:min(520px,78%);aspect-ratio:1;border:1px solid rgba(255,255,255,.16);border-radius:50%}.home-showcase-food{position:relative;z-index:2;width:min(560px,88%);height:min(560px,88%);object-fit:contain;filter:none;transition:opacity .18s ease,transform .35s ease}.home-showcase.is-changing .home-showcase-food{opacity:.25;transform:scale(.97)}.home-showcase-rating{position:absolute;z-index:4;left:36px;top:54px;padding:10px 14px;border-radius:12px;background:rgba(255,212,59,.94);color:#10243e;font-size:.84rem;font-weight:950;backdrop-filter:none}.home-showcase-offer{position:absolute;z-index:4;right:32px;bottom:44px;width:min(260px,46%);padding:17px;border:1px solid rgba(255,255,255,.48);border-radius:18px;background:rgba(255,255,255,.84);box-shadow:none;backdrop-filter:none}.home-showcase-offer strong,.home-showcase-offer span{display:block}.home-showcase-offer strong{color:var(--navy);font-size:1.08rem}.home-showcase-offer>div:first-child span{margin-top:5px;color:var(--muted);font-size:.76rem;line-height:1.35}.home-showcase-price{display:flex;align-items:center;gap:8px;margin-top:12px}.home-showcase-price>*{display:inline!important}.home-showcase-price del{color:#6d7c8f;font-size:.76rem}.home-showcase-price b{color:var(--red);font-size:1.12rem}.home-showcase-discount{padding:4px 7px;border-radius:999px;background:var(--red);color:#fff;font-size:.7rem;font-weight:950}.home-showcase-arrow{position:absolute;z-index:6;top:50%;width:52px;height:52px;display:grid;place-items:center;padding:0;border:1px solid rgba(255,255,255,.52);border-radius:50%;background:rgba(255,255,255,.56);color:var(--navy);font-size:2rem;line-height:1;box-shadow:none;backdrop-filter:none;cursor:pointer;transform:translateY(-50%);transition:.2s ease}.home-showcase-arrow:hover{background:rgba(255,255,255,.9);transform:translateY(-50%) scale(1.05)}.home-showcase-arrow--prev{left:18px}.home-showcase-arrow--next{right:18px}.home-showcase-dots{position:absolute;z-index:7;right:calc(50% - 240px);bottom:19px;display:flex;gap:8px}.home-showcase-dots button{width:9px;height:9px;padding:0;border:0;border-radius:999px;background:rgba(255,255,255,.48);cursor:pointer}.home-showcase-dots button.active{width:25px;background:#fff}.home-quick-info{margin-top:-28px;transform:none}.home-quick-info .quick-info-grid{position:relative;z-index:8;box-shadow:none}.quick-info-icon svg{width:25px;height:25px}.quick-info-icon{background:#edf5ff}
/* Categories with real product images */
.category-scroller{grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.category-card-photo{display:grid;grid-template-columns:110px minmax(0,1fr);align-items:center;min-height:150px;padding:0;overflow:hidden}.category-photo-wrap{align-self:stretch;display:grid;place-items:center;min-height:150px;background:linear-gradient(150deg,#fff 0 72%,#fff2b5 72%)}.category-photo-wrap img{width:94%;height:94%;object-fit:contain;filter:none}.category-card-copy{padding:18px 18px 18px 16px}.category-card-copy h3{margin:0 0 7px}.category-card-copy p{margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.category-count{top:11px;right:11px;background:#edf5ff}
/* Product cards */
.product-card{border-radius:20px}.product-media{background:#fff}.product-media.product-card-photo{background:linear-gradient(150deg,#fff 0 78%,#edf5ff 78%)}.product-body{padding:17px}.product-title{font-size:1.08rem}.product-description{color:#65758a}.product-meta{min-height:20px;margin:0 0 10px}.product-footer{align-items:center}.price-wrap{gap:5px}.price-old-highlight{justify-self:start;padding:3px 8px;border-radius:999px;background:#fff0ee;color:#b7281e;font-weight:850;text-decoration-color:#b7281e}.price-current{font-size:1.22rem}.product-action{min-width:96px;border-radius:12px}.card-icon-button{background:rgba(255,255,255,.68);backdrop-filter:none}
/* Slideshow controls, caption and dots */
.menu-slideshow__control{width:54px;height:54px;border:1px solid rgba(11,47,87,.12);background:rgba(255,255,255,.52);color:var(--navy);box-shadow:none;backdrop-filter:none;opacity:.82}.menu-slideshow__control:hover{background:rgba(255,255,255,.9);opacity:1}.menu-slideshow__caption{border:1px solid rgba(255,255,255,.56);background:rgba(255,255,255,.58);box-shadow:none;backdrop-filter:none}.menu-slideshow__view{background:rgba(217,45,32,.9)}.menu-slideshow__dots{position:absolute;z-index:8;left:50%;bottom:21px;display:flex;gap:7px;transform:translateX(-50%)}.menu-slideshow__dots button{width:8px;height:8px;padding:0;border:0;border-radius:999px;background:rgba(11,47,87,.22);cursor:pointer;transition:.2s}.menu-slideshow__dots button.active{width:26px;background:var(--navy)}
/* Product editor */
.product-back-link{align-items:center;gap:9px;margin-bottom:24px;padding:7px 12px 7px 7px;border:1px solid rgba(11,47,87,.13);border-radius:999px;background:rgba(255,255,255,.7);backdrop-filter:none}.product-back-link span{width:37px;height:37px;display:grid;place-items:center;border-radius:50%;background:var(--navy);color:#fff;font-size:1.8rem;line-height:1}.product-back-link b{font-size:.86rem}.product-editor{grid-template-columns:minmax(410px,.95fr) minmax(500px,1.05fr);gap:clamp(32px,4vw,66px)}.product-editor-media{min-height:680px;border-radius:24px}.product-editor-heading h1{max-width:700px;font-size:clamp(2.8rem,4.6vw,5.15rem);line-height:1.01}.product-editor-heading .lead{margin-top:16px}.product-editor-favorite{margin-top:6px}.product-customization-card{margin-top:27px}.product-price-summary{grid-template-columns:minmax(0,1fr) minmax(0,.9fr);gap:18px;margin:26px 0 20px;padding:18px;border:1px solid #dfd1bd;border-radius:20px;background:rgba(255,255,255,.72)}.product-price-main,.product-total-price{min-height:100px;display:flex;flex-direction:column;justify-content:center}.product-price-main{padding-right:20px;border-right:1px solid #dfd1bd}.product-discount-cluster{display:flex;align-items:center;gap:10px;margin-bottom:8px}.product-discount-badge{padding:5px 9px;border-radius:999px;background:var(--red);color:#fff;font-size:.76rem;font-weight:950}.product-price-main .price-old{padding:4px 9px;border-radius:999px;background:#fff0ee;color:#b6281f;font-size:.9rem;font-weight:850;text-decoration-color:#b6281f}.product-price-main .price-current{font-size:2.45rem;color:var(--navy)}.product-total-price{align-items:flex-end;padding:0;text-align:right}.product-total-price span{color:var(--muted);font-size:.84rem}.product-total-price strong{margin-top:4px;font-size:clamp(2.2rem,4vw,3.8rem)}.product-order-editor{background:rgba(255,255,255,.74)}.product-service-facts{gap:10px}.product-service-facts article{padding:15px;border:1px solid var(--line);border-radius:14px;background:rgba(255,255,255,.62)}.product-related-only .section-header{align-items:center}.product-related-only .section-header h2{margin:0}
/* Remove accidental visual leftovers from hidden eyebrow labels. */
.section-header>div>h2:first-child{margin-top:0}
@media(max-width:1180px){.home-showcase-card{grid-template-columns:1fr 1fr}.home-showcase-copy{padding-inline:36px}.category-scroller{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:900px){.home-showcase-card{grid-template-columns:1fr}.home-showcase-copy{padding:42px 28px 30px}.home-showcase-visual{min-height:520px}.home-showcase-dots{right:50%;transform:translateX(50%)}.home-showcase-arrow{top:auto;bottom:20px;transform:none}.home-showcase-arrow:hover{transform:scale(1.05)}.home-showcase-arrow--prev{left:18px}.home-showcase-arrow--next{right:18px}.home-quick-info{margin-top:18px}.product-editor-media{min-height:540px}.product-price-summary{grid-template-columns:1fr}}
@media(max-width:680px){.home-showcase{padding-top:8px}.home-showcase-card{width:calc(100% - 18px);min-height:0;border-radius:22px}.home-showcase-copy{padding:34px 20px 24px}.home-showcase-copy h1{font-size:clamp(2.65rem,12vw,4rem)}.home-showcase-visual{min-height:430px}.home-showcase-rating{left:16px;top:18px}.home-showcase-offer{right:14px;bottom:58px;width:220px}.home-showcase-food{width:94%;height:94%}.home-showcase-dots{bottom:20px}.home-showcase-arrow{width:46px;height:46px}.quick-info-grid{grid-template-columns:1fr}.quick-info-item+ .quick-info-item{border-left:0;border-top:1px solid var(--line)}.category-scroller{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:4px}.category-card-photo{min-width:82vw;scroll-snap-align:start}.menu-slideshow__caption{left:10px;right:10px;bottom:48px}.menu-slideshow__dots{bottom:18px}.product-editor-heading h1{font-size:clamp(2.55rem,12vw,3.7rem)}.product-price-summary{padding:15px}.product-price-main{padding:0 0 15px;border-right:0;border-bottom:1px solid #dfd1bd}.product-total-price{align-items:flex-start;padding-top:15px;text-align:left}.product-back-link b{display:none}.product-back-link{padding:6px;margin-bottom:14px}.product-back-link span{width:39px;height:39px}}

.cart-status-note{margin:14px 0;padding:14px 15px;border:1px solid var(--line);border-radius:14px;background:var(--surface-blue)}.cart-status-note strong{display:block;color:var(--navy)}.cart-status-note p{margin:5px 0 0;color:var(--muted);font-size:.85rem}.order-message[hidden]{display:none}

/* =========================================================
   CASA PIZZA — DESIGN-ONLY PHASE 6.1
   Premium customer refinement
   ========================================================= */

/* Customer pages never show the former uppercase micro-headings. */
.customer-page .eyebrow,
body[data-page] 

/* Header and cart refinement */
.site-header {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(11,47,87,.08);
  box-shadow:none;
  backdrop-filter:none;
}
.header-inner { max-width: 1480px; gap: 22px; }
.brand-logo-official { filter: none; }
.primary-nav { gap: 6px; }
.primary-nav a { border-radius: 12px; padding: 11px 15px; }
.primary-nav a[aria-current="page"] { background: #eaf3ff; color: var(--navy); }
.cart-button {
  min-height: 46px;
  padding: 5px 6px 5px 15px;
  gap: 9px;
  border: 1px solid rgba(5,42,80,.18);
  border-radius: 15px;
  background: linear-gradient(135deg,#0a315d,#08294f);
  box-shadow:none;
}
.cart-button:hover { transform: translateY(-1px); background: #08284c; }
.cart-count {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 950;
}

/* Approved premium homepage direction */
.home-showcase { padding: 18px 0 0; }
.home-showcase-card {
  width: calc(100% - 36px);
  max-width: 1500px;
  min-height: 625px;
  grid-template-columns: 47% 53%;
  overflow: hidden;
  border: 1px solid rgba(11,47,87,.08);
  border-radius: 19px;
  background: #fffaf1;
  box-shadow:none;
}
.home-showcase-copy {
  position: relative;
  z-index: 4;
  padding: clamp(52px,6vw,92px) clamp(34px,5.5vw,88px);
  background:
    radial-gradient(circle at 9% 8%,rgba(255,213,66,.48) 0 13%,transparent 13.2%),
    radial-gradient(circle at 9% 8%,rgba(255,213,66,.23) 0 21%,transparent 21.2%),
    #fffaf1;
}
.home-showcase-copy::after {
  content: "";
  position: absolute;
  right: -96px;
  top: -8%;
  width: 210px;
  height: 116%;
  background: #fffaf1;
  clip-path: polygon(0 0,100% 0,28% 100%,0 100%);
  pointer-events: none;
}
.home-showcase-copy > * { position: relative; z-index: 2; }
.home-showcase-copy h1 {
  max-width: 650px;
  margin: 0;
  color: #071d37;
  font-size: clamp(3.35rem,5.4vw,6.1rem);
  line-height: .94;
  letter-spacing: -.055em;
}
.home-showcase-copy h1 span { display: block; color: var(--red); }
.home-showcase-copy .lead { max-width: 610px; margin: 24px 0 0; font-size: 1.02rem; line-height: 1.75; }
.home-showcase-copy .action-row { margin-top: 25px; }
.home-showcase-visual {
  position: relative;
  min-height: 625px;
  background:
    radial-gradient(circle at 82% 12%,rgba(255,255,255,.12),transparent 21%),
    linear-gradient(145deg,#0b396b 0%,#072b54 52%,#061f3d 100%);
}
.home-showcase-stage { min-height: 100%; }
.home-showcase-stage::before,
.home-showcase-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.home-showcase-stage::before { width: 220px; height: 220px; right: -64px; bottom: -82px; background: var(--red); opacity: .95; }
.home-showcase-stage::after { width: 150px; height: 150px; left: -55px; bottom: -58px; background: var(--yellow); }
.home-showcase-orbit { border-color: rgba(255,255,255,.16); }
.home-showcase-food {
  width: min(78%,650px);
  height: min(78%,650px);
  object-fit: contain;
  filter:none;
}
.home-showcase-rating {
  left: 10%;
  top: 12%;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 12px;
  background: rgba(255,210,52,.92);
  color: #061e3b;
  box-shadow:none;
  backdrop-filter:none;
}
.home-showcase-offer {
  right: 8%;
  bottom: 12%;
  width: min(285px,38%);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 17px;
  background: rgba(255,255,255,.88);
  box-shadow:none;
  backdrop-filter:none;
}
.home-showcase-price { margin-top: 12px; }
.home-showcase-discount { border-radius: 9px; }

/* Slideshow controls: quieter, glassier, and less visually dominant. */
.home-showcase-arrow,
.menu-slideshow__control {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.28);
  color: var(--navy);
  box-shadow:none;
  backdrop-filter:none;
  opacity: .68;
}
.home-showcase-arrow:hover,
.menu-slideshow__control:hover {
  background: rgba(255,255,255,.64);
  border-color: rgba(255,255,255,.76);
  opacity: .98;
  transform: translateY(-50%) scale(1.035);
}
.home-showcase-arrow span { font-size: 2.05rem; font-weight: 400; }
.home-showcase-dots button,
.menu-slideshow__dots button { background: rgba(255,255,255,.42); }
.home-showcase-dots button.active,
.menu-slideshow__dots button.active { background: var(--yellow); }
.menu-slideshow__control { color: #082e59; }
.menu-slideshow__caption {
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.44);
  box-shadow:none;
  backdrop-filter:none;
}

.home-quick-info { max-width: 1100px; margin-top: -1px; position: relative; z-index: 9; }
.home-quick-info .quick-info-grid {
  overflow: hidden;
  border: 1px solid rgba(11,47,87,.09);
  border-radius: 0 0 19px 19px;
  background: rgba(255,255,255,.92);
  box-shadow:none;
}
.quick-info-icon { background: #eef5ff; color: var(--navy); }

/* Top popular row, matching the approved homepage composition. */
#popular { padding-top: 64px; background: transparent; }
#popular .section-header { margin-bottom: 22px; }
#popular [data-popular-grid] {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 15px;
}
#popular .product-card { min-width: 0; border-radius: 16px; box-shadow:none; }
#popular .product-media { min-height: 225px; }
#popular .product-body { padding: 14px 14px 15px; }
#popular .product-description { display: none; }
#popular .product-title { min-height: 44px; font-size: .94rem; }
#popular .product-action { width: 42px; min-width: 42px; height: 38px; overflow: hidden; color: transparent; padding: 0; }
#popular .product-action::after { content: "+"; display: grid; place-items: center; color: #fff; font-size: 1.3rem; font-weight: 800; }

/* Category cards now use the real product photographs, not vector symbols. */
.category-scroller {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 18px;
}
.category-card-photo {
  min-height: 220px;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  box-shadow:none;
}
.category-photo-wrap { min-height: 220px; background: #fff; }
.category-photo-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 13px; }
.category-card-copy { align-self: center; padding: 24px 20px; }
.category-card-copy h3 { margin: 0 0 9px; font-size: 1.18rem; }
.category-card-copy p { margin: 0; line-height: 1.5; }
.category-count { top: 13px; right: 13px; background: #eaf3ff; color: var(--navy); }

/* Product cards: clearer price hierarchy and stronger discount communication. */
.product-card { overflow: hidden; border-color: rgba(11,47,87,.11); box-shadow:none; }
.product-card:hover { transform: translateY(-3px); box-shadow:none; }
.product-footer { align-items: flex-end; }
.price-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.price-old-highlight,
.product-price-main .price-old {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #fff0ed;
  color: #b2261e;
  font-weight: 900;
  text-decoration-line: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #d92d20;
  opacity: 1;
}
.product-footer .price-current { color: #061e3a; font-size: 1.24rem; font-weight: 950; }
.product-badges .tag-red { box-shadow:none; }
.card-icon-button { background: rgba(255,255,255,.46); border-color: rgba(11,47,87,.10); backdrop-filter:none; }

/* Product page: calmer hierarchy, compact navigation, price directly below the media. */
.product-page { padding-top: 28px; }
.product-page-shell { max-width: 1350px; }
.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 19px;
  padding: 8px 12px;
  border: 1px solid rgba(11,47,87,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.48);
  color: var(--navy);
  backdrop-filter:none;
}
.product-back-link span {
  width: auto;
  height: auto;
  display: inline;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1;
}
.product-back-link b { font-size: .84rem; font-weight: 850; }
.product-editor {
  grid-template-columns: minmax(420px,.96fr) minmax(470px,1.04fr);
  align-items: start;
  gap: clamp(36px,4.2vw,68px);
}
.product-editor-media-column { min-width: 0; }
.product-editor-media {
  min-height: 590px;
  border: 1px solid rgba(11,47,87,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow:none;
}
.product-editor-media img { padding: 28px; }
.product-editor-copy { padding-top: 10px; }
.product-editor-heading { align-items: flex-start; }
.product-editor-heading h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(2.75rem,4vw,4.25rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.product-editor-heading .lead { max-width: 650px; margin-top: 18px; line-height: 1.68; }
.product-editor-favorite { flex: 0 0 auto; background: rgba(255,255,255,.58); }
.product-price-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin: 14px 0 0;
  padding: 17px 18px;
  border: 1px solid rgba(11,47,87,.10);
  border-radius: 17px;
  background: rgba(255,255,255,.82);
  box-shadow:none;
}
.product-unit-price { min-width: 0; }
.product-price-label,
.product-total-price > span { display: block; margin-bottom: 7px; color: var(--muted); font-size: .74rem; font-weight: 800; }
.product-price-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.product-discount-cluster { display: flex; align-items: center; gap: 8px; margin: 0; }
.product-discount-badge { padding: 6px 9px; border-radius: 9px; background: var(--red); color: #fff; font-size: .78rem; font-weight: 950; }
.product-price-summary .price-current { color: #061e3a; font-size: 2rem; font-weight: 950; }
.product-total-price {
  min-height: auto;
  display: block;
  padding: 0 0 0 22px;
  border-left: 1px solid rgba(11,47,87,.10);
  text-align: right;
}
.product-total-price strong { margin: 0; color: var(--navy); font-size: 1.62rem; font-weight: 950; }
.product-customization-card {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(11,47,87,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.66);
  box-shadow:none;
}
.product-order-editor {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(11,47,87,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.74);
  box-shadow:none;
}
.product-order-actions { gap: 14px; }
.product-editor-add { min-height: 50px; border-radius: 13px; }
.product-note-field textarea { background: rgba(255,255,255,.66); }
.product-service-facts { margin-top: 16px; }
.product-service-facts article { background: transparent; }
.product-related-only { margin-top: 76px; }
.product-related-only .section-header { padding-bottom: 18px; border-bottom: 1px solid rgba(11,47,87,.10); }
.product-related-only .section-header h2 { font-size: clamp(2rem,3vw,3.1rem); letter-spacing: -.035em; }
.product-grid-related { margin-top: 24px; }

@media (max-width: 1250px) {
  #popular [data-popular-grid] { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .category-scroller { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 980px) {
  .home-showcase-card { grid-template-columns: 1fr; }
  .home-showcase-copy::after { display: none; }
  .home-showcase-visual { min-height: 520px; }
  .product-editor { grid-template-columns: 1fr; }
  .product-editor-media { min-height: 520px; }
  .product-editor-copy { padding-top: 0; }
}
@media (max-width: 720px) {
  .home-showcase-card { width: calc(100% - 16px); border-radius: 16px; }
  .home-showcase-copy { padding: 38px 22px 30px; }
  .home-showcase-copy h1 { font-size: clamp(3rem,13vw,4.3rem); }
  .home-showcase-visual { min-height: 430px; }
  .home-showcase-offer { right: 13px; bottom: 55px; width: 230px; }
  .home-showcase-arrow,
  .menu-slideshow__control { width: 43px; height: 43px; opacity: .62; }
  .home-showcase-arrow:hover,
  .menu-slideshow__control:hover { transform: scale(1.025); }
  #popular [data-popular-grid] { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 7px; }
  #popular .product-card { min-width: 78vw; scroll-snap-align: start; }
  .category-scroller { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .category-card-photo { min-width: 88vw; grid-template-columns: 42% 58%; scroll-snap-align: start; }
  .product-editor-media { min-height: 420px; }
  .product-editor-media img { padding: 16px; }
  .product-editor-heading h1 { font-size: clamp(2.45rem,11vw,3.45rem); }
  .product-price-summary { grid-template-columns: 1fr; gap: 14px; }
  .product-total-price { padding: 14px 0 0; border-left: 0; border-top: 1px solid rgba(11,47,87,.10); text-align: left; }
  .product-back-link b { display: inline; }
}
.checkout-location-button{width:100%;min-height:48px}.checkout-location-button.is-location-set{border-color:#2c8b5a;color:#236e49}
