/* HOLY CREPE - MOBILE-FIRST CSS
   Phone layout is the default. Tablet and desktop rules are at the bottom. */

:root {
  --burgundy: #601d1d;
  --dark: #3d1010;
  --cream: #f6f0e8;
  --white: #fffdf9;
  --text: #241b18;
  --muted: #766965;
  --border: #ded4cb;
  --gold: #d6a75d;
  --green: #55705a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding-bottom: 76px; background: var(--white); color: var(--text); font: 15px/1.6 Arial, Helvetica, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: 92%; max-width: 1160px; margin: auto; }
.muted { color: var(--muted); }

/* Phone header and fixed bottom navigation */
.site-header { position: sticky; top: 0; z-index: 20; display: block; visibility: visible; opacity: 1; background: rgba(255,253,249,.96); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.header-content { position: relative; min-height: 68px; display: flex; align-items: center; justify-content: center; }
.logo img { width: 148px; height: 58px; object-fit: contain; }
.bag-button { position: absolute; top: 50%; right: 0; min-width: 64px; min-height: 52px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; padding: 6px 10px; border: 1px solid transparent; border-radius: 13px; color: var(--burgundy); font-size: 12px; line-height: 1; font-weight: 800; text-align: center; transform: translateY(-50%); }
.bag-button:hover, .bag-button:focus-visible, .bag-button.active { background: var(--cream); }
.bag-icon { position: relative; width: 22px; height: 22px; display: block; flex: 0 0 22px; font-size: 0; line-height: 1; }
.bag-icon::before { content: ""; position: absolute; top: 7px; left: 2px; width: 18px; height: 14px; border: 2px solid currentColor; border-radius: 3px 3px 5px 5px; box-sizing: border-box; }
.bag-icon::after { content: ""; position: absolute; top: 2px; left: 7px; width: 8px; height: 8px; border: 2px solid currentColor; border-bottom: 0; border-radius: 8px 8px 0 0; box-sizing: border-box; }
.main-nav { position: fixed; right: 0; bottom: 0; left: 0; z-index: 50; min-height: 66px; display: flex; align-items: stretch; justify-content: space-around; gap: 2px; padding: 6px 8px max(6px, env(safe-area-inset-bottom)); background: rgba(255,253,249,.98); border-top: 1px solid var(--border); box-shadow: 0 -8px 25px rgba(61,16,16,.08); }
.main-nav a { min-width: 54px; min-height: 52px; display: grid; place-items: center; padding: 7px 5px; border-radius: 12px; color: var(--muted); font-size: 11px; font-weight: bold; text-align: center; }
.main-nav a:hover, .main-nav a.active { background: var(--cream); color: var(--burgundy); }

/* Text and buttons */
.eyebrow { margin: 0 0 12px; color: var(--burgundy); font-size: 11px; font-weight: bold; letter-spacing: 2.4px; text-transform: uppercase; }
h1, h2, h3 { color: var(--dark); font-family: Georgia, "Times New Roman", serif; font-weight: normal; line-height: 1.05; }
h1 { margin: 0; font-size: clamp(50px, 15vw, 68px); letter-spacing: -3px; }
h2 { margin: 0 0 16px; font-size: clamp(38px, 11vw, 54px); letter-spacing: -2px; }
h3 { margin: 0; font-size: 22px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 20px; border: 1px solid var(--burgundy); border-radius: 999px; background: var(--burgundy); color: white; font-size: 14px; font-weight: bold; text-align: center; cursor: pointer; }
.button:hover, .button:focus-visible { background: var(--dark); }
.button-outline { background: transparent; color: var(--burgundy); }
.button-outline:hover { background: var(--burgundy); color: white; }

/* Homepage */
.hero { display: grid; grid-template-columns: 1fr; gap: 45px; padding: 52px 0 65px; }
.hero-text > p:not(.eyebrow) { margin: 24px 0; color: var(--muted); font-size: 17px; }
.hero-buttons { display: grid; grid-template-columns: 1fr; gap: 12px; }
.hero-card { min-height: 430px; padding: 32px 25px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 160px 160px 22px 22px; background: var(--burgundy); color: white; }
.hero-card .crepe-circle { width: 190px; height: 190px; margin: 0 auto 48px; }
.crepe-photo-frame { width: 220px; height: 220px; margin: 0 auto 48px; overflow: hidden; border: 9px solid rgba(255,248,231,.75); border-radius: 50%; box-shadow: 0 20px 35px rgba(61,16,16,.18); }
.crepe-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.1); }
.hero-card h3, .hero-card .eyebrow { color: white; }
.hero-card-row { display: flex; align-items: end; justify-content: space-between; gap: 15px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.25); }
.hero-card strong { font: 30px Georgia, serif; }
.crepe-circle { width: 128px; height: 128px; border: 9px solid rgba(255,248,231,.75); border-radius: 48% 52% 54% 46%; background: linear-gradient(145deg,#e6bd79,#c9863e); box-shadow: inset -15px -15px 30px rgba(91,39,10,.2),0 20px 35px rgba(61,16,16,.18); transform: rotate(-10deg); }
.feature-strip { padding: 25px 0; background: var(--cream); }
.feature-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.feature-item { min-width: 0; padding: 11px 12px; border-left: 1px solid var(--gold); }
.feature-item:first-child { border-left: 0; }
.feature-item strong { display: block; color: var(--burgundy); }
.feature-item span { color: var(--muted); font-size: 14px; }
.home-section { padding: 70px 0; }
.home-section.cream { background: var(--cream); }
.section-top { display: flex; align-items: flex-start; flex-direction: column; gap: 18px; margin-bottom: 30px; }

/* Events and catering */
.events-home-layout { display: grid; grid-template-columns: 1fr; gap: 38px; align-items: center; }
.events-home { background: #601d1d; color: white; }
.events-home h2, .events-home .eyebrow { color: white; }
.events-home-copy > p:not(.eyebrow) { max-width: 620px; color: var(--muted); }
.events-home .events-home-copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.events-home-actions { display: grid; grid-template-columns: 1fr; gap: 13px; margin-top: 26px; }
.events-home .button { border-color: white; background: white; color: var(--burgundy); }
.events-home .button:hover, .events-home .button:focus-visible { background: var(--cream); color: var(--dark); }
.event-tag-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.event-tag { min-height: 142px; padding: 20px; border: 1px solid var(--border); border-radius: 17px; background: white; }
.event-tag span, .event-service-number { display: block; margin-bottom: 12px; color: var(--burgundy); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.event-tag h3 { font-size: 24px; }
.event-tag p { margin: 8px 0 0; color: var(--muted); font-size: 13px; }
.events-hero { display: grid; grid-template-columns: 1fr; gap: 34px; padding: 55px 0 72px; }
.events-hero-copy > p:not(.eyebrow) { max-width: 660px; margin: 24px 0; color: var(--muted); font-size: 17px; }
.events-hero-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
.events-contact-card { padding: 30px 24px; border-radius: 24px; background: var(--burgundy); color: white; box-shadow: 0 24px 55px rgba(61,16,16,.18); }
.events-contact-label { display: block; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.events-contact-card h2 { margin: 16px 0 12px; color: white; font-size: clamp(32px, 8vw, 42px); letter-spacing: -1.5px; }
.events-contact-card > p { color: rgba(255,255,255,.78); }
.events-contact-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
.events-contact-card .button { border-color: white; background: white; color: var(--burgundy); }
.events-contact-card .button:hover, .events-contact-card .button:focus-visible { background: var(--cream); color: var(--dark); }
.events-contact-card .button-outline { background: transparent; color: white; }
.events-contact-card .button-outline:hover, .events-contact-card .button-outline:focus-visible { background: white; color: var(--burgundy); }
.events-contact-hours { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.25); }
.events-services { padding: 70px 0; background: var(--cream); }
.event-service-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.event-service-card { min-height: 240px; padding: 25px 21px; border: 1px solid var(--border); border-radius: 19px; background: white; }
.event-service-card h3 { font-size: 27px; }
.event-service-card p { color: var(--muted); font-size: 14px; }
.events-process { display: grid; grid-template-columns: 1fr; gap: 34px; padding-top: 72px; padding-bottom: 72px; }
.event-steps { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 0; padding: 0; list-style: none; }
.event-steps li { display: flex; align-items: flex-start; gap: 15px; padding: 19px; border: 1px solid var(--border); border-radius: 16px; background: white; }
.event-steps li > span { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--burgundy); font-weight: 800; }
.event-steps strong { color: var(--dark); }
.event-steps p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.event-cta { padding: 70px 0; background: var(--dark); color: white; }
.event-cta h2, .event-cta .eyebrow { color: white; }
.event-cta p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.event-cta-content { display: grid; grid-template-columns: 1fr; gap: 28px; }
.event-cta-actions { display: grid; grid-template-columns: 1fr; gap: 14px; }
.event-cta .button { border-color: white; background: white; color: var(--burgundy); }
.event-cta .button:hover, .event-cta .button:focus-visible { background: var(--cream); color: var(--dark); }
.event-location-link { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; color: white; font-weight: 800; text-decoration: underline; text-underline-offset: 5px; }

/* Product cards and menu */
.card-grid, .menu-grid, .dashboard-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.product-card, .info-card, .stat-card { overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: white; }
.product-image { height: 205px; display: grid; place-items: center; background: #ead6d1; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image.gold { background: #ebdcc2; }
.product-image.green { background: #dce1ca; }
.product-details, .info-card, .stat-card { padding: 22px; }
.product-title { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.product-title strong { color: var(--burgundy); }
.product-details p { color: var(--muted); font-size: 14px; }
.product-details .button { width: 100%; }
.menu-page, .simple-page, .dashboard-page { padding: 55px 0 80px; }
.page-intro { margin-bottom: 48px; }
.page-intro p:not(.eyebrow) { color: var(--muted); }
.page-intro .button { width: 100%; margin-top: 8px; }
.menu-category { margin-top: 58px; }
.menu-category-heading { display: flex; align-items: flex-start; flex-direction: column; padding-bottom: 13px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.menu-category-heading h2 { margin-bottom: 0; }
.menu-list { display: grid; grid-template-columns: 1fr; }
.menu-row { min-height: 54px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px dotted var(--border); font-size: 15px; }
.menu-row .dots { border-bottom: 1px dotted #b8aaa1; }
.menu-row strong { color: var(--burgundy); }

/* Categorized menu and order experience */
.order-form { min-width: 0; display: grid; gap: 42px; }
.order-step { min-width: 0; scroll-margin-top: 90px; }
.order-step-heading { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.order-step-heading .eyebrow { margin-bottom: 6px; }
.order-step-heading h2 { margin: 0; font-size: clamp(34px, 10vw, 48px); }
.step-number { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--burgundy); color: white; font-weight: bold; }
.category-nav { display: flex; gap: 8px; margin: 0 -4% 26px; padding: 4px 4% 10px; overflow-x: auto; scrollbar-width: thin; }
.category-nav a { flex: 0 0 auto; padding: 9px 14px; border: 1px solid var(--border); border-radius: 999px; background: white; color: var(--burgundy); font-size: 13px; font-weight: bold; }
.category-nav a:hover, .category-nav a:focus-visible { border-color: var(--burgundy); background: var(--cream); }
.catalog { display: grid; gap: 28px; }
.catalog-category { scroll-margin-top: 95px; padding: 22px 16px; border: 1px solid var(--border); border-radius: 18px; background: white; }
.catalog-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 15px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.catalog-heading h3 { color: var(--burgundy); }
.catalog-heading span { color: var(--muted); font-size: 12px; }
.catalog-grid { display: grid; grid-template-columns: 1fr; gap: 9px; }
.catalog-item { position: relative; width: 100%; min-width: 0; min-height: 126px; display: grid; grid-template-columns: minmax(0,1fr) auto; grid-template-areas: "copy price" "add add"; align-content: center; align-items: center; gap: 8px 12px; padding: 14px; border: 1px solid var(--border); border-radius: 15px; background: var(--white); color: var(--text); text-align: left; cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.catalog-item.has-photo { grid-template-columns: minmax(0,1fr) 92px; grid-template-areas: "copy photo" "price photo" "add photo"; }
.catalog-item-photo { grid-area: photo; width: 92px; height: 92px; align-self: center; justify-self: end; border-radius: 14px; object-fit: cover; object-position: center; background: var(--cream); }
.catalog-item:hover, .catalog-item:focus-visible { border-color: var(--burgundy); box-shadow: 0 8px 20px rgba(61,16,16,.08); transform: translateY(-1px); }
.catalog-item-copy { grid-area: copy; min-width: 0; display: grid; gap: 3px; align-self: end; }
.catalog-item-copy strong { color: var(--dark); font-size: 15px; line-height: 1.25; }
.catalog-description { display: -webkit-box; overflow: hidden; color: var(--muted); font-size: 12px; line-height: 1.35; font-weight: normal; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.catalog-item-copy small { color: var(--green); font-size: 10px; line-height: 1.3; font-weight: bold; }
.catalog-price { grid-area: price; justify-self: start; color: var(--burgundy); font: 15px/1.3 Georgia, serif; white-space: nowrap; }
.catalog-add { grid-area: add; justify-self: start; color: var(--burgundy); font-size: 12px; font-weight: bold; }
.addon-scope-title { margin: 0 0 14px; color: var(--muted); }
.addon-category-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.addon-group { padding: 18px; border: 1px solid var(--border); border-radius: 15px; background: white; }
.addon-group legend { padding: 0 7px; color: var(--burgundy); font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: normal; }
.addon-group .choice-list { margin-top: 0; }
.addon-group .choice-list label { display: grid; grid-template-columns: 20px 1fr auto; }
.addon-group .choice-list strong { color: var(--burgundy); font-size: 12px; }
.neutral-message { border: 1px solid var(--border); background: var(--cream); color: var(--muted); }
.order-details-step .form-card { max-width: none; }
.checkout-details > .form-grid { grid-template-columns: 1fr; }
.compact-choices { grid-template-columns: repeat(2, 1fr); }
.delivery-location-panel { display: grid; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: var(--cream); }
.delivery-location-panel[hidden] { display: none; }
.delivery-location-heading { display: grid; gap: 14px; }
.delivery-location-heading .eyebrow { margin-bottom: 6px; }
.delivery-location-heading h3 { margin: 0; color: var(--burgundy); font-size: 24px; }
.delivery-location-heading p:not(.eyebrow) { max-width: 570px; margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.delivery-location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.delivery-location-actions .button { width: auto; min-height: 42px; padding: 9px 13px; font-size: 13px; }
.delivery-map { width: 100%; height: 270px; overflow: hidden; border: 1px solid var(--border); border-radius: 13px; background: #e8e4de; }
.delivery-map .leaflet-control-attribution { font-size: 9px; }
.delivery-map-pin { width: 32px; height: 32px; display: grid; place-items: center; border: 3px solid white; border-radius: 50% 50% 50% 0; background: var(--burgundy); color: white; font-size: 16px; line-height: 1; box-shadow: 0 3px 9px rgba(61,16,16,.32); transform: rotate(-45deg); }
.delivery-map-pin span { transform: rotate(45deg); }
.delivery-location-status { margin: 0; color: var(--burgundy); font-size: 13px; font-weight: 700; }
.delivery-location-status.is-error { color: #a33b31; }
.delivery-location-link { display: inline-flex; width: fit-content; color: var(--burgundy); font-size: 13px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.delivery-location-link[hidden] { display: none; }
.delivery-pin-link { display: inline-flex; width: fit-content; margin-top: 6px; color: var(--burgundy); font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.delivery-pin-link-editor { margin-left: 2px; }
.delivery-whatsapp-link { display: inline-flex; width: fit-content; margin-top: 8px; padding: 8px 10px; border: 1px solid #8bb38f; border-radius: 9px; background: #eef7ef; color: #2f6b3d; font-size: 12px; font-weight: 800; text-decoration: none; }
.delivery-whatsapp-link:hover { border-color: #54835a; background: #e2f1e4; }
@media (min-width: 700px) {
  .delivery-location-heading { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 22px; }
}
.order-submit { width: 100%; display: flex; gap: 10px; margin-top: 24px; padding-inline: 12px; font-size: clamp(12px, 3.5vw, 14px); white-space: nowrap; }
.order-submit-label, .order-submit-total { white-space: nowrap; }
.order-intro { max-width: 850px; }
.item-builder { display: flex; flex-direction: column; overflow: hidden; scroll-margin-top: 90px; padding: 0; border: 2px solid var(--burgundy); border-radius: 22px; background: #fff8f4; box-shadow: 0 24px 60px rgba(61,16,16,.12); }
.item-builder[hidden] { display: none; }
.builder-scroll { flex: 1 1 auto; min-height: 0; margin: 12px 10px 0 0; padding: 12px 8px 24px 18px; overflow-y: auto; overscroll-behavior: contain; scrollbar-color: rgba(61,16,16,.54) transparent; scrollbar-width: thin; }
.builder-scroll::-webkit-scrollbar { width: 10px; }
.builder-scroll::-webkit-scrollbar-track { background: transparent; }
.builder-scroll::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 999px; background: rgba(61,16,16,.54); background-clip: padding-box; }
.builder-scroll::-webkit-scrollbar-thumb:hover { background: rgba(61,16,16,.72); background-clip: padding-box; }
.builder-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.builder-top h2 { margin-bottom: 6px; }
.icon-button { flex: 0 0 44px; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%; background: white; color: var(--burgundy); font-size: 26px; cursor: pointer; }
.builder-controls { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 22px; }
.quantity-control { max-width: 180px; }
.builder-footer { position: relative; z-index: 1; flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0; padding: 14px 18px; border-top: 1px solid var(--border); background: rgba(255,253,249,.97); box-shadow: 0 -10px 25px rgba(61,16,16,.08); }
.builder-footer div { display: grid; }
.builder-footer span { color: var(--muted); font-size: 11px; }
.builder-footer strong { color: var(--burgundy); font: 23px Georgia, serif; }
.builder-footer .button { min-height: 44px; padding: 10px 16px; }
.split-step { min-width: 0; }
.split-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.empty-order { padding: 36px 20px; border: 2px dashed var(--border); border-radius: 18px; color: var(--muted); text-align: center; }
.empty-order > span { display: block; color: var(--burgundy); font-size: 42px; }
.empty-order h3 { margin: 4px 0 8px; }
.empty-order p { margin: 0; }
.bills-board { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; overflow-x: auto; }
.guest-bill { min-width: 0; padding: 16px; border: 1px solid var(--border); border-radius: 18px; background: var(--cream); }
.guest-bill-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.guest-bill-heading > div { flex: 1; display: grid; gap: 4px; }
.guest-bill-heading label { color: var(--muted); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.guest-name { min-height: 42px; padding: 8px 10px; border-color: transparent; background: rgba(255,255,255,.6); color: var(--burgundy); font: 20px Georgia, serif; }
.guest-name:focus { border-color: var(--burgundy); background: white; }
.delete-bill { min-height: 38px; border: 0; background: transparent; color: #8b3434; font-size: 12px; cursor: pointer; }
.bill-dropzone { min-height: 122px; display: grid; align-content: start; gap: 10px; padding: 8px; border: 2px dashed transparent; border-radius: 14px; transition: background .15s ease, border-color .15s ease; }
.bill-dropzone.is-over { border-color: var(--burgundy); background: #fff5ef; }
.bill-placeholder { min-height: 104px; display: grid; place-content: center; gap: 3px; color: var(--muted); text-align: center; }
.bill-placeholder span { color: var(--burgundy); font-weight: bold; }
.bill-item { display: grid; grid-template-columns: 24px 1fr 28px; gap: 8px; padding: 12px 10px; border: 1px solid var(--border); border-radius: 12px; background: white; box-shadow: 0 5px 14px rgba(61,16,16,.05); cursor: grab; }
.bill-item.is-dragging { opacity: .45; }
.drag-handle { padding-top: 2px; color: var(--muted); font-size: 20px; }
.bill-item-main { min-width: 0; display: grid; gap: 4px; }
.bill-item-title { display: flex; justify-content: space-between; gap: 8px; color: var(--dark); }
.bill-item-title span { flex: 0 0 auto; color: var(--burgundy); font-weight: bold; }
.bill-item-main small { color: var(--muted); font-size: 11px; }
.remove-line { width: 30px; height: 30px; border: 0; border-radius: 50%; background: transparent; color: #8b3434; font-size: 23px; cursor: pointer; }
.move-controls { display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 6px; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }
.move-controls label { display: grid; gap: 2px; color: var(--muted); font-size: 10px; font-weight: normal; }
.move-controls input, .move-controls select { min-height: 34px; padding: 5px 7px; border-radius: 7px; font-size: 12px; }
.move-controls input { width: 58px; }
.mini-button { min-height: 34px; padding: 5px 9px; border: 1px solid var(--burgundy); border-radius: 8px; background: white; color: var(--burgundy); font-size: 11px; font-weight: bold; cursor: pointer; }
.guest-bill-total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 12px; padding: 13px 8px 0; border-top: 1px solid var(--border); }
.guest-bill-total span { color: var(--muted); font-size: 12px; }
.guest-bill-total strong { color: var(--burgundy); font: 24px Georgia, serif; }
.checkout-details { max-width: none; }
.loyalty-assignment { margin-top: 28px; padding: 22px 18px; border-radius: 15px; background: var(--cream); }
.loyalty-assignment h3 { margin-bottom: 18px; }
.small-copy { font-size: 12px; }

/* Fixed phone shortcut from the menu to checkout */
.has-order-bar { padding-bottom: 154px; }
.order-bar { position: fixed; right: 0; bottom: 66px; left: 0; z-index: 45; padding: 10px 0; background: rgba(255,253,249,.98); border-top: 1px solid var(--border); box-shadow: 0 -8px 25px rgba(61,16,16,.08); }
.order-bar-content { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.order-bar-content div { display: grid; }
.order-bar-content strong { color: var(--dark); font-size: 14px; }
.order-bar-content span { color: var(--muted); font-size: 11px; }
.order-bar .button { min-height: 46px; padding: 11px 18px; }

/* Phone-friendly forms */
.form-card { width: 100%; padding: 24px 18px; border: 1px solid var(--border); border-radius: 18px; background: white; }
.form-section { margin-bottom: 30px; padding-bottom: 27px; border-bottom: 1px solid var(--border); }
.form-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.form-section h3 { margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
label, legend { color: var(--dark); font-size: 14px; font-weight: bold; }
input, select, textarea { width: 100%; min-height: 50px; padding: 13px 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--white); color: var(--text); font-size: 16px; }
textarea { min-height: 130px; resize: vertical; }
fieldset { margin: 0; padding: 0; border: 0; }
.choice-list { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 12px; }
.choice-list label { min-height: 48px; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; font-weight: normal; }
.choice-list input { width: 20px; min-height: 20px; }
.rating-fieldset { max-width: 430px; }
.rating-helper { margin: 7px 0 14px; color: var(--muted); font-size: 13px; }
.star-rating { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.star-choice { position: relative; min-width: 0; min-height: 56px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 14px; background: white; cursor: pointer; box-shadow: 0 5px 14px rgba(61,16,16,.04); transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease; }
.star-choice input { position: absolute; width: 1px; min-height: 1px; margin: 0; opacity: 0; pointer-events: none; }
.star-choice-icon { color: #d7c8b7; font-size: 27px; line-height: 1; transition: color .16s ease, transform .16s ease; }
.star-choice:hover { border-color: #bf8e55; background: #fff9f0; transform: translateY(-2px); box-shadow: 0 8px 17px rgba(61,16,16,.1); }
.star-choice:hover .star-choice-icon, .star-choice.is-filled .star-choice-icon, .star-choice:has(input:checked) .star-choice-icon { color: #b7772e; }
.star-choice.is-filled, .star-choice:has(input:checked) { border-color: var(--burgundy); background: var(--burgundy); }
.star-choice.is-filled .star-choice-icon, .star-choice:has(input:checked) .star-choice-icon { color: #ffd87c; }
.star-choice.is-selected, .star-choice:has(input:checked) { box-shadow: 0 8px 18px rgba(94,29,29,.22); transform: translateY(-2px); }
.star-choice.is-selected .star-choice-icon, .star-choice:has(input:checked) .star-choice-icon { transform: scale(1.08); }
.star-choice:has(input:focus-visible) { outline: 3px solid rgba(190,139,72,.45); outline-offset: 3px; }
.rating-selection { min-height: 19px; margin: 12px 0 0; color: var(--burgundy); font-size: 13px; font-weight: bold; }
.form-card > .button { width: 100%; }
.photo-share-section { padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: var(--cream); }
.photo-share-section h2 { margin-bottom: 8px; font-size: clamp(31px, 9vw, 42px); }
.photo-share-section > .muted { margin: 0 0 20px; }
.photo-share-section input[type="file"] { min-height: 0; padding: 11px; background: white; font-size: 14px; }
.photo-share-section .form-group small { color: var(--muted); font-size: 12px; }
.photo-social-consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 20px; color: var(--text); font-size: 13px; font-weight: normal; line-height: 1.45; }
.photo-social-consent input { width: 22px; min-width: 22px; min-height: 22px; margin: 1px 0 0; accent-color: var(--burgundy); }
.photo-social-consent:has(input:disabled) { color: var(--muted); }
.form-message { margin: 0 0 20px; padding: 13px 15px; border-radius: 10px; font-size: 14px; }
.error-message { border: 1px solid #d7a4a4; background: #fff0f0; color: #7b1f1f; }

/* Confirmation pages shown after submitting a form */
.confirmation-wrap { max-width: 720px; }
.confirmation-wrap.wide-confirmation { max-width: 930px; }
.confirmation-card { padding: 42px 22px; border: 1px solid var(--border); border-radius: 22px; background: white; text-align: center; box-shadow: 0 20px 55px rgba(61,16,16,.08); }
.confirmation-card h1 { font-size: clamp(44px, 13vw, 64px); }
.confirmation-card > p:not(.eyebrow) { max-width: 560px; margin: 22px auto 0; color: var(--muted); }
.confirmation-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; background: var(--cream); color: var(--burgundy); font-size: 34px; font-weight: bold; }
.confirmation-actions { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 30px; }
.confirmation-meta { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
.confirmation-meta div { display: grid; gap: 3px; padding: 13px; border-radius: 12px; background: var(--cream); }
.confirmation-meta span { color: var(--muted); font-size: 11px; }
.confirmation-meta strong { color: var(--burgundy); }
.confirmation-bills { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 22px; text-align: left; }
.confirmation-bill { padding: 17px; border: 1px solid var(--border); border-radius: 14px; }
.confirmation-bill-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.confirmation-bill-heading > strong { color: var(--burgundy); font: 22px Georgia, serif; }
.confirmation-bill-heading > div:first-child { min-width: 0; display: grid; gap: 3px; }
.confirmation-bill-heading h3 { margin: 0; overflow-wrap: anywhere; }
.confirmation-bill-heading small { color: var(--muted); font-size: 11px; }
.confirmation-bill-total { flex: 0 0 auto; display: grid; gap: 2px; text-align: right; }
.confirmation-bill-total strong { color: var(--burgundy); font: 22px Georgia, serif; }
.confirmation-items { display: grid; }
.confirmation-line, .confirmation-delivery-share { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px dotted var(--border); }
.confirmation-line > div { min-width: 0; display: grid; gap: 2px; }
.confirmation-line small { color: var(--muted); font-size: 11px; }
.confirmation-line > span, .confirmation-delivery-share strong { flex: 0 0 auto; color: var(--burgundy); }
.confirmation-delivery-share { align-items: baseline; border-bottom: 0; color: var(--muted); font-size: 12px; }
.confirmation-delivery-allocation { margin: 18px 0 -6px; padding: 12px; border: 1px solid #e8d5b8; border-radius: 11px; background: #fff8eb; color: #72552f; font-size: 12px; line-height: 1.45; text-align: left; }
.confirmation-bill ul { margin: 0; padding: 0; list-style: none; }
.confirmation-bill li { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px dotted var(--border); }
.confirmation-bill li:last-child { border-bottom: 0; }
.confirmation-bill li div { display: grid; }
.confirmation-bill li small { color: var(--muted); }
.confirmation-bill li > span { flex: 0 0 auto; }
.loyalty-recipient { margin: 10px 0 0; padding: 8px 10px; border-radius: 8px; background: #e9efe9; color: var(--green); font-size: 12px; font-weight: bold; }
.loyalty-confirmation { display: grid; gap: 3px; margin-top: 18px; padding: 16px; border-radius: 12px; background: var(--burgundy); color: white; text-align: left; }
.loyalty-confirmation span { color: rgba(255,255,255,.75); font-size: 12px; }
.order-summary { margin: 30px 0 0; padding: 18px; border-radius: 14px; background: var(--cream); text-align: left; }
.order-summary div { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.order-summary div:last-child { border-bottom: 0; }
.order-summary dt { color: var(--muted); font-size: 13px; }
.order-summary dd { margin: 0; color: var(--dark); font-weight: bold; text-align: right; }

/* Loyalty */
.loyalty-layout { display: grid; grid-template-columns: 1fr; gap: 45px; }
.loyalty-layout .button { width: 100%; margin-top: 12px; }
.loyalty-search { margin: 28px 0 10px; padding: 18px; border: 1px solid var(--border); border-radius: 14px; background: white; }
.loyalty-search + .button { width: calc(100% - 38px); margin: 2px 19px 0; }
.stamp-card { padding: 27px 20px; border-radius: 20px; background: var(--burgundy); color: white; box-shadow: 0 25px 60px rgba(61,16,16,.22); }
.stamp-card img { width: 170px; padding: 0; background: transparent; filter: brightness(0) invert(1); }
.loyalty-name { margin: 20px 0 0; color: white; font: 22px Georgia, serif; }
.stamps { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin: 28px 0; }
.stamp { aspect-ratio: 1; display: grid; place-items: center; border: 1px dashed rgba(255,255,255,.55); border-radius: 50%; font-size: 12px; }
.stamp.filled { background: white; color: var(--burgundy); font-weight: bold; }
.reward-balance { display: block; margin-top: 12px; color: rgba(255,255,255,.8); font-size: 13px; }

/* Dashboard and incoming order management */
.dashboard-grid { grid-template-columns: repeat(2,1fr); margin-bottom: 25px; }
.stat-card { min-width: 0; }
.stat-card span { color: var(--muted); font-size: 12px; }
.stat-card strong { display: block; margin-top: 7px; color: var(--burgundy); font: 27px Georgia, serif; overflow-wrap: anywhere; }
.dashboard-section { margin-top: 22px; padding: 22px 16px; border: 1px solid var(--border); border-radius: 18px; background: white; overflow-x: auto; }
table { width: 100%; min-width: 620px; border-collapse: collapse; }
th, td { padding: 13px; border-bottom: 1px solid var(--border); text-align: left; font-size: 14px; }
th { color: var(--burgundy); }
.status { display: inline-block; padding: 5px 9px; border-radius: 999px; background: #e9efe9; color: var(--green); font-size: 12px; font-weight: bold; }
.empty-cell { padding: 30px 13px; color: var(--muted); text-align: center; }
.admin-header .header-content { justify-content: space-between; }
.admin-nav { display: flex; align-items: center; gap: 8px; overflow-x: auto; padding: 8px 0; }
.admin-nav a, .admin-nav button { white-space: nowrap; padding: 8px 10px; border: 0; border-radius: 8px; background: transparent; color: var(--muted); font-size: 12px; font-weight: bold; cursor: pointer; }
.admin-nav a.active, .admin-nav a:hover, .admin-nav button:hover { background: var(--cream); color: var(--burgundy); }
.admin-nav form { margin: 0; }
.admin-page-top { display: flex; align-items: flex-start; justify-content: space-between; flex-direction: column; gap: 18px; }
.admin-page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 35px; }
.dashboard-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.dashboard-section-heading a { color: var(--burgundy); font-size: 13px; font-weight: bold; }
.status-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; padding: 0; }
.status-filters button { flex: 0 0 auto; min-height: 48px; padding: 11px 18px; border: 1px solid var(--border); border-radius: 999px; background: white; color: var(--burgundy); font-size: 14px; font-weight: 700; cursor: pointer; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.status-filters button:hover, .status-filters button:focus-visible { border-color: var(--burgundy); background: var(--cream); transform: translateY(-1px); }
.status-filters button.active { border-color: var(--burgundy); background: var(--cream); box-shadow: inset 0 0 0 1px var(--burgundy); }
.incoming-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.incoming-card { overflow: hidden; border: 1px solid var(--border); border-top: 5px solid var(--burgundy); border-radius: 18px; background: white; box-shadow: 0 12px 32px rgba(61,16,16,.07); }
.incoming-card.status-ready { border-top-color: var(--green); }
.incoming-card.status-completed { border-top-color: #8a8a8a; opacity: .85; }
.incoming-card.status-cancelled { border-top-color: #9f4444; opacity: .75; }
.incoming-card-top, .incoming-customer, .incoming-bills, .incoming-card-footer, .status-form { padding: 16px; }
.incoming-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.incoming-card-top h2 { margin: 0; font-size: 32px; }
.incoming-customer { display: grid; gap: 2px; border-top: 1px solid var(--border); background: var(--cream); }
.incoming-customer a { color: var(--burgundy); font-weight: bold; }
.incoming-customer span { color: var(--muted); font-size: 12px; overflow-wrap: anywhere; }
.incoming-bills { display: grid; gap: 12px; }
.incoming-bills section { padding: 12px; border: 1px solid var(--border); border-radius: 11px; }
.incoming-bill-heading { display: flex; justify-content: space-between; gap: 10px; color: var(--burgundy); }
.incoming-bills ul { margin: 8px 0 0; padding: 0; list-style: none; }
.incoming-bills li { display: grid; padding: 7px 0; border-top: 1px dotted var(--border); }
.incoming-bills li small { color: var(--muted); }
.incoming-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--border); }
.incoming-card-footer div { display: grid; }
.incoming-card-footer span, .incoming-card-footer small { color: var(--muted); font-size: 11px; }
.incoming-card-footer strong { color: var(--burgundy); font: 26px Georgia, serif; }
.status-progress { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 16px; border-top: 1px solid var(--border); background: #fffaf6; }
.status-progress span { color: var(--muted); font-size: 12px; font-weight: 700; }
.status-progress .button { min-height: 44px; padding: 10px 16px; white-space: nowrap; }
.status-form { display: grid; grid-template-columns: 1fr; gap: 8px; border-top: 1px solid var(--border); background: #fffaf6; }
.status-form select { min-height: 44px; }
.status-form .button { min-height: 44px; }
.empty-admin-state { grid-column: 1 / -1; padding: 65px 20px; border: 1px solid var(--border); border-radius: 18px; background: white; text-align: center; }
.empty-admin-state span { display: block; color: var(--green); font-size: 45px; }
.admin-login-page { padding: 0; background: var(--cream); }
.admin-login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 25px; }
.admin-login-card { width: min(100%, 460px); padding: 34px 24px; border: 1px solid var(--border); border-radius: 22px; background: white; box-shadow: 0 24px 70px rgba(61,16,16,.14); }
.login-logo img { width: 190px; margin-bottom: 30px; }
.admin-login-card h1 { font-size: clamp(44px, 12vw, 62px); }
.admin-login-card form { display: grid; gap: 17px; margin-top: 24px; }
.back-link { display: inline-block; margin-top: 22px; color: var(--muted); font-size: 13px; }

/* Customer order tracking */
.tracking-layout { display: grid; grid-template-columns: 1fr; gap: 36px; }
.tracking-form { display: grid; gap: 16px; margin-top: 26px; }
.tracking-result { padding: 26px 20px; border-radius: 20px; background: var(--burgundy); color: white; }
.tracking-result h2, .tracking-result .eyebrow { color: white; }
.tracking-result > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.tracking-status { display: inline-flex; margin-bottom: 20px; padding: 7px 12px; border-radius: 999px; background: white; color: var(--burgundy); font-size: 12px; font-weight: bold; }
.tracking-progress { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; margin: 28px 0; }
.tracking-progress div { position: relative; display: grid; justify-items: center; gap: 7px; color: rgba(255,255,255,.55); font-size: 9px; text-align: center; }
.tracking-progress div::before { content: ""; position: absolute; top: 7px; right: 50%; left: -50%; height: 2px; background: rgba(255,255,255,.25); }
.tracking-progress div:first-child::before { display: none; }
.tracking-progress span { position: relative; z-index: 1; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.55); border-radius: 50%; background: var(--burgundy); }
.tracking-progress .current { color: white; }
.tracking-progress .current span { border-color: white; background: white; }
.tracking-summary { display: grid; gap: 8px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.25); }
.tracking-summary div { display: flex; justify-content: space-between; gap: 12px; }
.tracking-summary span { color: rgba(255,255,255,.75); }
.tracking-total { margin-top: 7px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.25); font-size: 19px; }

/* Footer */
.site-footer { display: block; visibility: visible; opacity: 1; padding: 35px 0 42px; border-top: 1px solid var(--border); }
.footer-content { display: grid; grid-template-columns: 1fr; align-items: start; gap: 24px; color: var(--muted); font-size: 13px; }
.footer-brand img { width: 160px; height: auto; }
.footer-contact { display: grid; gap: 6px; }
.footer-contact a:hover, .footer-contact a:focus-visible { color: var(--burgundy); text-decoration: underline; text-underline-offset: 4px; }
.footer-hours { display: grid; gap: 6px; }
.footer-contact strong, .footer-hours strong, .social-label { color: var(--dark); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.social-links { position: static; display: grid; align-items: start; gap: 10px; }
.social-icons { display: flex; align-items: center; gap: 10px; }
.social-links a { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: white; box-shadow: none; color: var(--burgundy); }
.social-links a:hover, .social-links a:focus-visible { border-color: var(--burgundy); background: var(--cream); }
.social-links svg { width: 20px; height: 20px; }
.hero-hours { display: inline-flex; align-items: center; gap: 8px; margin: 18px 0 0; padding: 8px 12px; border-radius: 999px; background: var(--cream); color: var(--burgundy); font-size: 13px; font-weight: bold; }
.static-order-note { margin: 18px 0 0; padding: 14px 16px; border: 1px solid var(--border); border-radius: 14px; background: var(--cream); color: var(--dark); }
.static-order-note strong { color: var(--burgundy); }
.whatsapp-result { display: grid; gap: 12px; margin-top: 24px; }

/* Tablet enhancements */
@media (min-width: 700px) {
  .container { width: 90%; }
  .hero-buttons { display: flex; flex-wrap: wrap; }
  .events-home-actions, .events-hero-actions, .events-contact-actions { display: flex; flex-wrap: wrap; }
  .event-tag-grid, .event-service-grid { grid-template-columns: repeat(2,1fr); }
  .event-steps { grid-template-columns: repeat(3,1fr); }
  .event-steps li { display: grid; }
  .event-cta-actions { display: flex; flex-wrap: wrap; align-items: center; }
  .hero-buttons .button, .page-intro .button, .loyalty-layout .button { width: auto; }
  .loyalty-layout .loyalty-search + .button { width: auto; margin: 2px 0 0 19px; }
  .feature-list { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .menu-list, .form-grid { grid-template-columns: repeat(2,1fr); gap: 0 32px; }
  .form-grid { gap: 18px; }
  .form-group.full { grid-column: 1 / -1; }
  .choice-list { grid-template-columns: repeat(2,1fr); }
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .addon-category-grid { grid-template-columns: repeat(2,1fr); }
  .builder-controls { grid-template-columns: minmax(150px, .35fr) 1fr; align-items: end; }
  .bills-board { grid-template-columns: repeat(auto-fit,minmax(310px,1fr)); }
  .confirmation-meta { grid-template-columns: repeat(3,1fr); }
  .confirmation-bills { grid-template-columns: repeat(2,1fr); }
  .confirmation-card { padding: 58px 45px; }
  .confirmation-actions { display: flex; justify-content: center; }
  .loyalty-layout { grid-template-columns: .8fr 1.2fr; align-items: center; }
  .dashboard-grid { grid-template-columns: repeat(5,1fr); }
  .status-form { grid-template-columns: 1fr auto; align-items: end; }
  .status-form > label { grid-column: 1 / -1; }
  .tracking-layout { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .footer-content { grid-template-columns: 1.2fr 1fr 1fr auto; align-items: center; }
}

/* Tablet header: keep all navigation and the Order button at the top */
@media (min-width: 760px) and (max-width: 979px) {
  body { padding-bottom: 0; }
  .header-content { min-height: 78px; justify-content: space-between; }
  .logo img { width: 155px; height: 62px; }
  .main-nav { position: static; min-height: auto; align-items: center; justify-content: flex-end; gap: 14px; margin-left: auto; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .main-nav a { min-width: auto; min-height: auto; padding: 7px 2px; border-radius: 0; font-size: 12px; }
  .main-nav a:hover, .main-nav a.active { background: transparent; text-decoration: underline; text-underline-offset: 6px; }
  .bag-button { position: static; order: 3; min-width: 86px; min-height: 46px; flex-direction: row; gap: 7px; margin-left: 18px; padding: 8px 12px; border: 1px solid var(--border); font-size: 13px; font-weight: 800; transform: none; }
}

/* Desktop enhancements */
@media (min-width: 980px) {
  body { padding-bottom: 0; }
  .header-content { min-height: 82px; justify-content: space-between; }
  .logo img { width: 180px; height: 66px; }
  .main-nav { position: static; min-height: auto; align-items: center; justify-content: flex-end; gap: 26px; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .main-nav a { min-width: auto; min-height: auto; padding: 7px 0; border-radius: 0; font-size: 14px; }
  .main-nav a:hover, .main-nav a.active { background: transparent; text-decoration: underline; text-underline-offset: 6px; }
  .bag-button { position: static; order: 3; min-width: 88px; min-height: 46px; flex-direction: row; gap: 8px; margin-left: 32px; padding: 8px 14px; border: 1px solid var(--border); font-size: 14px; font-weight: 800; transform: none; }
  .main-nav { margin-left: auto; }
  .order-bar { right: 28px; bottom: 28px; left: auto; width: 360px; padding: 12px; border: 1px solid var(--border); border-radius: 18px; }
  .order-bar-content { width: 100%; }
  .has-order-bar { padding-bottom: 0; }
  .hero { min-height: 680px; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; padding: 75px 0; }
  .events-home-layout { grid-template-columns: .8fr 1.2fr; gap: 70px; }
  .events-hero { min-height: 610px; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 75px; padding: 80px 0; }
  .event-service-grid { grid-template-columns: repeat(4,1fr); }
  .events-process { grid-template-columns: .7fr 1.3fr; align-items: start; gap: 70px; padding-top: 90px; padding-bottom: 90px; }
  .event-cta-content { grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
  .hero-card { min-height: 520px; padding: 48px; border-radius: 220px 220px 24px 24px; }
  .hero-card .crepe-circle { width: 250px; height: 250px; margin-bottom: 55px; }
  .crepe-photo-frame { width: 300px; height: 300px; margin-bottom: 55px; }
  .feature-list, .card-grid { grid-template-columns: repeat(3,1fr); }
  .section-top { align-items: end; flex-direction: row; justify-content: space-between; }
  .menu-category-heading { align-items: end; flex-direction: row; justify-content: space-between; }
  .form-card { max-width: 850px; padding: 35px; }
  .choice-list { display: flex; flex-wrap: wrap; }
  .choice-list label { min-width: 180px; }
  .catalog-grid { grid-template-columns: repeat(3,1fr); }
  .addon-category-grid { grid-template-columns: repeat(3,1fr); }
  .addon-group .choice-list { display: grid; grid-template-columns: 1fr; }
  .addon-group .choice-list label { min-width: 0; }
  .order-form { gap: 72px; }
  .item-builder .builder-scroll { padding: 20px 22px 32px 32px; }
  .builder-footer { padding: 16px 32px; }
  .incoming-grid { grid-template-columns: repeat(2,1fr); }
  .admin-page-top { align-items: flex-start; flex-direction: row; }
  .admin-page-actions { justify-content: flex-end; padding-top: 12px; }
  .dashboard-section { padding: 30px; }
}

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

/* Customer header: logo and order stay visible; other pages live in a left drawer. */
body { padding-bottom: 0; }
.site-header:not(.admin-header) .header-content { min-height: 72px; justify-content: flex-start; gap: 8px; }
.site-header:not(.admin-header) .logo { flex: 0 1 auto; min-width: 0; }
.site-header:not(.admin-header) .logo img { width: 138px; height: 58px; object-position: left center; }
.menu-toggle { order: 2; width: 46px; height: 46px; display: grid; align-content: center; gap: 5px; padding: 0 11px; border: 0; border-radius: 12px; background: transparent; color: var(--burgundy); cursor: pointer; }
.menu-toggle:hover, .menu-toggle:focus-visible { background: var(--cream); }
.menu-toggle span { display: block; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header:not(.admin-header) .bag-button { position: static; order: 3; min-width: 72px; min-height: 46px; flex-direction: row; gap: 5px; margin-left: auto; padding: 6px 10px; border: 1px solid var(--border); transform: none; }
.site-header:not(.admin-header) .bag-icon { flex: 0 0 20px; width: 20px; height: 20px; }
.site-header:not(.admin-header) .main-nav { position: fixed; top: 72px; right: auto; bottom: 0; left: 0; z-index: 50; width: min(82vw, 320px); min-height: 0; display: flex; align-items: stretch; flex-direction: column; gap: 6px; margin: 0; padding: 22px 18px; background: var(--white); border: 0; border-right: 1px solid var(--border); box-shadow: 14px 18px 35px rgba(61,16,16,.16); visibility: hidden; transform: translateX(-105%); transition: transform .22s ease, visibility .22s; }
.site-header.menu-open .main-nav { visibility: visible; transform: translateX(0); }
.site-header:not(.admin-header) .main-nav a { min-width: 0; min-height: 50px; display: flex; align-items: center; justify-content: flex-start; padding: 10px 14px; border-radius: 12px; color: var(--muted); font-size: 15px; text-align: left; }
.site-header:not(.admin-header) .main-nav a:hover, .site-header:not(.admin-header) .main-nav a.active { background: var(--cream); color: var(--burgundy); text-decoration: none; }
.order-bar { bottom: 0; }

@media (min-width: 980px) {
  .site-header:not(.admin-header) .header-content { min-height: 82px; }
  .site-header:not(.admin-header) .logo img { width: 180px; height: 66px; }
  .site-header:not(.admin-header) .main-nav { top: 82px; }
}

/* Full-system additions: these extend the existing design without replacing it. */
.privacy-consent { margin-top: 18px; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: var(--cream); }
.privacy-check { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-weight: 700; line-height: 1.5; }
.privacy-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--burgundy); flex: 0 0 auto; }
.catalog-item-unavailable { opacity: .5; cursor: not-allowed; filter: grayscale(.35); }
.availability-label { display: block; margin-top: 5px; color: #a12626; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.catalog-price { max-width: none; }
.tracking-result { margin-top: 20px; }
.tracking-status-card h2 { margin-bottom: 8px; color: var(--burgundy); }
.tracking-auto-update, .confirmation-live-status { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.rewards-live-summary { margin-top: 16px; padding: 14px; border-radius: 14px; background: rgba(255,255,255,.68); text-align: center; }
.stamps .stamp.earned { background: var(--burgundy); color: white; border-color: var(--burgundy); }

.admin-toast { position: sticky; z-index: 40; top: 92px; margin: 0 auto 18px; padding: 14px 18px; border-radius: 12px; background: #e8f6ec; color: #174d28; box-shadow: 0 10px 32px rgba(0,0,0,.12); font-weight: 800; }
.admin-toast.is-error { background: #ffe8e8; color: #8a1717; }
.admin-control-strip { display: flex; justify-content: space-between; align-items: center; gap: 28px; margin: 25px 0; padding: 22px; border-radius: 18px; background: #601d1d; color: white; }
.admin-control-strip h2, .admin-control-strip p { margin: 0; color: inherit; }
.admin-control-strip .eyebrow { color: #f1c9bd; }
.admin-switch { display: flex; align-items: center; gap: 10px; cursor: pointer; white-space: nowrap; }
.admin-switch input { position: absolute; opacity: 0; pointer-events: none; }
.admin-switch span { position: relative; width: 54px; height: 30px; border-radius: 999px; background: #a47676; transition: .2s ease; }
.admin-switch span::after { content: ""; position: absolute; top: 4px; left: 4px; width: 22px; height: 22px; border-radius: 50%; background: white; transition: .2s ease; }
.admin-switch input:checked + span { background: #62ad75; }
.admin-switch input:checked + span::after { transform: translateX(24px); }
.admin-table-wrap { max-width: 100%; overflow-x: auto; }
.dashboard-two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.product-control-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.product-control-group { overflow: hidden; border: 1px solid var(--border); border-radius: 15px; background: white; }
.product-control-group h3 { margin: 0; padding: 14px; background: var(--cream); font-size: 17px; }
.product-availability { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 10px; padding: 11px 14px; border-top: 1px solid var(--border); cursor: pointer; }
.product-availability span { display: grid; font-weight: 700; }
.product-availability small { color: var(--muted); font-weight: 400; }
.product-availability input { width: 20px; height: 20px; accent-color: var(--burgundy); }
.product-availability strong { min-width: 58px; color: var(--muted); font-size: 11px; text-align: right; }
.admin-stack-form { display: grid; gap: 13px; }
.backup-list { display: grid; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.backup-list li { display: grid; gap: 2px; padding: 10px; border-radius: 10px; background: var(--cream); word-break: break-word; }
.backup-list span { color: var(--muted); font-size: 12px; }
.status-filters button { font: inherit; cursor: pointer; }
.order-editor { border-top: 1px solid var(--border); }
.order-editor summary { padding: 16px; color: var(--burgundy); font-weight: 800; cursor: pointer; }
.order-edit-form { display: grid; gap: 18px; padding: 0 16px 18px; }
.admin-bills-editor { display: grid; gap: 12px; }
.admin-bill-editor { padding: 13px; border: 1px solid var(--border); border-radius: 12px; background: #fffdfa; }
.admin-bill-editor .incoming-bill-heading { padding: 0 0 10px; }
.admin-bill-editor .edit-guest-name { max-width: 230px; font-weight: 800; }
.admin-items-editor { display: grid; gap: 8px; }
.admin-item-editor { display: grid; grid-template-columns: minmax(0, 1fr) 90px auto; align-items: end; gap: 8px; padding: 8px; border-radius: 9px; background: var(--cream); }
.admin-item-editor label { display: grid; gap: 4px; color: var(--muted); font-size: 11px; font-weight: 700; }
.admin-item-editor .remove-item { display: flex; align-items: center; gap: 5px; padding-bottom: 11px; }
.button-link { padding: 9px 0; border: 0; background: transparent; color: var(--burgundy); font-weight: 800; cursor: pointer; }
.order-edit-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button-danger { border-color: #9e2929; background: #9e2929; }

@media (max-width: 900px) {
  .product-control-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-two-column { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .admin-control-strip { align-items: flex-start; flex-direction: column; }
  .product-control-grid { grid-template-columns: 1fr; }
  .admin-item-editor { grid-template-columns: 1fr 80px; }
  .admin-item-editor .remove-item { grid-column: 1 / -1; padding: 0; }
  .status-filters { flex-wrap: nowrap; padding-bottom: 8px; overflow-x: auto; }
  .status-filters button { min-height: 44px; padding: 9px 14px; font-size: 13px; }
  .status-progress { align-items: stretch; flex-direction: column; }
  .status-progress .button { width: 100%; }
}

/* Final customer navigation layout: menu, logo, and order in one calm row. */
.site-header:not(.admin-header) { isolation: isolate; }
.site-header:not(.admin-header) { background: var(--white); backdrop-filter: none; }
.site-header:not(.admin-header)::after { content: none; }
.site-header:not(.admin-header).menu-open::after { content: ""; position: fixed; inset: 0; z-index: 10; background: rgba(38,18,16,.45); }
.site-header:not(.admin-header) .header-content { position: relative; z-index: 30; min-height: 70px; justify-content: flex-start; gap: 7px; }
.site-header:not(.admin-header) .menu-toggle { order: 1; }
.site-header:not(.admin-header) .logo { order: 2; }
.site-header:not(.admin-header) .logo img { width: 118px; height: 52px; object-position: left center; }
.site-header:not(.admin-header) .bag-button { order: 3; min-width: 82px; min-height: 46px; margin-left: auto; }
.site-header:not(.admin-header) .main-nav { top: 0; right: auto; bottom: 0; left: 0; z-index: 20; width: min(82vw, 304px); min-height: 0; display: flex; align-items: stretch; flex-direction: column; justify-content: flex-start; gap: 6px; margin: 0; padding: 86px 18px 24px; background: var(--white); border: 0; border-right: 1px solid var(--border); box-shadow: 14px 18px 35px rgba(61,16,16,.2); visibility: hidden; transform: translateX(-105%); transition: transform .22s ease, visibility .22s; }
.site-header:not(.admin-header).menu-open .main-nav { visibility: visible; transform: translateX(0); }
.site-header:not(.admin-header) .main-nav::before { content: none; }
@media (min-width: 980px) {
  .site-header:not(.admin-header) .header-content { min-height: 82px; }
  .site-header:not(.admin-header) .logo img { width: 142px; height: 62px; }
}

/* Homepage: editorial food-first introduction. */
.home-page .site-header:not(.admin-header) .header-content { min-height: 112px; }
.home-page .site-header:not(.admin-header) .logo img { width: 128px; height: 76px; }
.home-page .site-header:not(.admin-header) .bag-button { min-width: 88px; min-height: 58px; padding: 8px 12px; border-color: var(--burgundy); border-radius: 8px; font-size: 15px; font-weight: 500; }
.home-page .site-header:not(.admin-header) .bag-icon { display: none; }
.home-page .site-header:not(.admin-header) .menu-toggle { width: 52px; height: 52px; padding-inline: 10px; }
.home-page .site-header:not(.admin-header) .menu-toggle span { height: 3px; }

.home-hero { overflow: hidden; border-top: 1px solid var(--border); background: var(--white); }
.home-hero-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; padding-top: 78px; }
.home-hero-copy { min-width: 0; }
.home-hero-copy .eyebrow { margin-bottom: 30px; color: #bd8958; font-size: 12px; letter-spacing: .19em; }
.home-hero-copy h1 { max-width: 10.5ch; color: var(--burgundy); font-size: clamp(58px, 17vw, 78px); line-height: .98; letter-spacing: -3.5px; }
.home-hero-description { max-width: 31ch; margin: 32px 0 42px; color: #715d48; font-size: clamp(18px, 4.7vw, 22px); line-height: 1.42; }
.home-hero-copy .hero-hours { display: none; }
.home-hero-copy .hero-buttons { display: grid; grid-template-columns: 1fr; gap: 12px; }
.home-hero-copy .button { width: 100%; min-height: 61px; border-radius: 8px; font-size: 20px; font-weight: 500; }
.home-hero-copy .button-outline { background: transparent; color: var(--burgundy); }
.home-hero-feature { position: relative; height: clamp(430px, 122vw, 540px); margin: 0; padding: 8px 8px 0; overflow: hidden; border: 2px solid #d8b17b; border-bottom: 0; border-radius: 220px 220px 0 0; background: var(--burgundy); }
.home-hero-feature .crepe-photo-frame { width: 100%; height: 100%; margin: 0; overflow: hidden; border: 2px solid rgba(255,253,249,.86); border-bottom: 0; border-radius: 212px 212px 0 0; box-shadow: none; background: var(--burgundy); }
.home-hero-feature .crepe-photo { width: 100%; height: 100%; transform: scale(1.14); object-position: center; }
.home-hero-feature .hero-card-row { display: none; }

@media (min-width: 700px) {
  .home-hero-layout { padding-top: 96px; }
  .home-hero-copy .hero-buttons { display: flex; }
  .home-hero-copy .button { width: auto; min-width: 190px; }
  .home-hero-feature { width: min(100%, 620px); justify-self: center; height: 600px; border-radius: 310px 310px 0 0; }
  .home-hero-feature .crepe-photo-frame { border-radius: 302px 302px 0 0; }
}

@media (min-width: 980px) {
  .home-page .site-header:not(.admin-header) .header-content { min-height: 100px; }
  .home-page .site-header:not(.admin-header) .logo img { width: 158px; height: 74px; }
  .home-hero-layout { min-height: 780px; grid-template-columns: minmax(0, .92fr) minmax(420px, .82fr); align-items: center; gap: clamp(54px, 7vw, 115px); padding: 72px 0; }
  .home-hero-copy h1 { font-size: clamp(68px, 6.8vw, 108px); }
  .home-hero-feature { width: 100%; height: 620px; }
}

/* Let the hero image resolve into the following content rather than ending abruptly. */
.home-page .home-hero { padding-bottom: 38px; }
.home-page .home-hero-feature { border-bottom: 2px solid #d8b17b; border-radius: 220px 220px 28px 28px; box-shadow: 0 22px 46px rgba(61,16,16,.14); }
.home-page .home-hero-feature .crepe-photo-frame { border-bottom: 2px solid rgba(255,253,249,.86); border-radius: 212px 212px 20px 20px; }
.home-page .feature-strip { padding: 66px 0 48px; background: linear-gradient(180deg, var(--white) 0, var(--cream) 145px); }
.home-page .feature-list { padding: 22px 20px; border: 1px solid var(--border); border-radius: 22px; background: rgba(255,253,249,.96); box-shadow: 0 18px 38px rgba(61,16,16,.08); }

@media (min-width: 700px) {
  .home-page .home-hero-feature { border-radius: 310px 310px 30px 30px; }
  .home-page .home-hero-feature .crepe-photo-frame { border-radius: 302px 302px 22px 22px; }
}

/* Homepage hero: a quiet burgundy bookmark behind the round plate. */
.home-page .home-hero-feature { position: relative; width: min(86vw, 360px); height: clamp(370px, 98vw, 410px); justify-self: center; padding: 0; overflow: hidden; border: 0; border-radius: 190px 190px 18px 18px; background: var(--burgundy); box-shadow: 0 18px 38px rgba(61,16,16,.14); }
.home-page .home-hero-feature .crepe-photo-frame { position: absolute; right: 8px; bottom: 20px; width: calc(100% - 28px); height: auto; aspect-ratio: 1; margin: 0; overflow: hidden; border: 0; border-radius: 50%; background: transparent; }
.home-page .home-hero-feature .crepe-photo { width: 100%; height: 100%; transform: scale(1.1); object-fit: cover; object-position: center; }

@media (min-width: 980px) {
  .home-page .home-hero-feature { width: min(100%, 520px); height: 560px; border-radius: 270px 270px 24px 24px; }
  .home-page .home-hero-feature .crepe-photo-frame { right: 12px; bottom: 28px; width: calc(100% - 42px); }
}

/* Refreshed customer header: full links at rest, compact menu after scrolling. */
.site-header:not(.admin-header) .header-content { min-height: 68px; gap: 6px; }
.site-header:not(.admin-header) .logo img { width: 102px; height: 46px; }
.site-header:not(.admin-header) .menu-toggle { width: 42px; height: 42px; }
.site-header:not(.admin-header) .bag-button { min-width: 72px; min-height: 42px; padding: 6px 9px; font-size: 13px; }

@media (max-width: 979px) {
  .site-header:not(.admin-header).is-scrolled .header-content { min-height: 56px; }
  .site-header:not(.admin-header).is-scrolled .menu-toggle { width: 36px; height: 36px; gap: 3px; padding: 0 9px; border: 1px solid var(--border); border-radius: 50%; background: var(--cream); }
  .site-header:not(.admin-header).is-scrolled .menu-toggle span { height: 2px; }
  .site-header:not(.admin-header).is-scrolled .logo img { width: 84px; height: 40px; }
  .site-header:not(.admin-header).is-scrolled .bag-button { min-width: 65px; min-height: 36px; padding: 5px 8px; font-size: 12px; }
  .site-header:not(.admin-header).is-scrolled .main-nav { padding-top: 70px; }
}

@media (min-width: 980px) {
  .site-header:not(.admin-header) .header-content { min-height: 76px; gap: 26px; }
  .site-header:not(.admin-header) .logo { order: 1; }
  .site-header:not(.admin-header) .logo img { width: 126px; height: 54px; }
  .site-header:not(.admin-header) .menu-toggle { display: none; }
  .site-header:not(.admin-header) .main-nav { position: static; order: 2; width: auto; min-height: auto; display: flex; align-items: center; flex-direction: row; justify-content: center; gap: 24px; margin: 0 auto; padding: 0; background: transparent; border: 0; box-shadow: none; visibility: visible; transform: none; }
  .site-header:not(.admin-header) .main-nav a { min-width: auto; min-height: auto; padding: 6px 0; border-radius: 0; color: var(--muted); font-size: 14px; text-align: center; }
  .site-header:not(.admin-header) .main-nav a:hover, .site-header:not(.admin-header) .main-nav a.active { background: transparent; color: var(--burgundy); text-decoration: underline; text-underline-offset: 6px; }
  .site-header:not(.admin-header) .bag-button { order: 3; min-width: 78px; min-height: 44px; }

  .site-header:not(.admin-header).is-scrolled .header-content { min-height: 58px; gap: 10px; }
  .site-header:not(.admin-header).is-scrolled .menu-toggle { order: 1; width: 38px; height: 38px; display: grid; gap: 3px; padding: 0 10px; border: 1px solid var(--border); border-radius: 50%; background: var(--cream); }
  .site-header:not(.admin-header).is-scrolled .menu-toggle span { height: 2px; }
  .site-header:not(.admin-header).is-scrolled .logo { order: 2; }
  .site-header:not(.admin-header).is-scrolled .logo img { width: 92px; height: 40px; }
  .site-header:not(.admin-header).is-scrolled .bag-button { min-width: 68px; min-height: 38px; margin-left: auto; font-size: 12px; }
  .site-header:not(.admin-header).is-scrolled .main-nav { position: fixed; top: 58px; right: auto; bottom: 0; left: 0; z-index: 20; width: min(304px, 82vw); min-height: 0; display: flex; align-items: stretch; flex-direction: column; justify-content: flex-start; gap: 6px; margin: 0; padding: 20px 18px; background: var(--white); border: 0; border-right: 1px solid var(--border); box-shadow: 14px 18px 35px rgba(61,16,16,.2); visibility: hidden; transform: translateX(-105%); }
  .site-header:not(.admin-header).is-scrolled .main-nav a { min-height: 50px; display: flex; align-items: center; justify-content: flex-start; padding: 10px 14px; border-radius: 12px; font-size: 15px; text-align: left; text-decoration: none; }
  .site-header:not(.admin-header).is-scrolled .main-nav a:hover, .site-header:not(.admin-header).is-scrolled .main-nav a.active { background: var(--cream); color: var(--burgundy); }
  .site-header:not(.admin-header).is-scrolled.menu-open .main-nav { visibility: visible; transform: translateX(0); }
}

/* Homepage rebuild: food first, short copy, then clear ways to order. */
.home-page .site-header:not(.admin-header) .header-content { min-height: 68px; }
.home-page .site-header:not(.admin-header) .logo img { width: 102px; height: 46px; }
.home-page .site-header:not(.admin-header) .bag-button { min-width: 72px; min-height: 42px; padding: 6px 9px; border-radius: 8px; font-size: 13px; }
.home-page .site-header:not(.admin-header) .bag-icon { display: none; }
.home-page .site-header:not(.admin-header) .menu-toggle { width: 42px; height: 42px; padding-inline: 9px; }
.home-page .site-header:not(.admin-header) .menu-toggle span { height: 2px; }

.home-page .home-hero { overflow: hidden; border: 0; background: var(--white); }
.home-page .home-hero-layout { display: grid; grid-template-columns: 1fr; gap: 22px; padding: 24px 0 40px; }
.home-page .home-hero-feature { order: 1; position: relative; width: 100%; height: auto; aspect-ratio: 4 / 3; margin: 0; padding: 0; overflow: hidden; border: 0; border-radius: 22px; background: var(--cream); box-shadow: 0 16px 32px rgba(61,16,16,.1); }
.home-page .home-hero-feature .crepe-photo-frame { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; overflow: hidden; border: 0; border-radius: inherit; background: transparent; }
.home-page .home-hero-feature .crepe-photo { width: 100%; height: 100%; transform: none; object-fit: cover; object-position: center; }
.home-hero-image-label { position: absolute; right: 14px; bottom: 14px; z-index: 1; display: inline-flex; align-items: center; gap: 8px; margin: 0; padding: 8px 11px; border-radius: 999px; background: rgba(96,29,29,.94); color: white; font-size: 12px; font-weight: 700; line-height: 1.2; box-shadow: 0 8px 18px rgba(61,16,16,.18); }
.home-hero-image-label span { color: #f2d3a5; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.home-page .home-hero-feature .hero-card-row { display: none; }
.home-page .home-hero-copy { order: 2; min-width: 0; }
.home-page .home-hero-copy .eyebrow { margin: 0 0 10px; color: #bd8958; font-size: 10px; letter-spacing: .18em; }
.home-page .home-hero-copy h1 { max-width: 11ch; color: var(--burgundy); font-size: clamp(45px, 12.5vw, 54px); line-height: 1; letter-spacing: -2.4px; }
.home-page .home-hero-description { max-width: 29ch; margin: 15px 0 23px; color: #715d48; font-size: 16px; line-height: 1.45; }
.home-page .home-hero-copy .hero-hours { display: none; }
.home-page .home-hero-copy .hero-buttons { display: block; }
.home-page .home-hero-copy .button { width: 100%; min-height: 56px; border-radius: 8px; font-size: 18px; font-weight: 600; }
.home-page .home-hero-copy .button-outline { display: none; }

.home-signature { padding: 0 0 26px; background: var(--white); }
.signature-card { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: var(--cream); }
.signature-card .eyebrow { margin-bottom: 7px; color: #bd8958; font-size: 10px; }
.signature-card h2 { margin: 0; color: var(--burgundy); font-size: clamp(28px, 8vw, 36px); letter-spacing: -1.5px; }
.signature-card p:not(.eyebrow) { max-width: 28ch; margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.signature-link { flex: 0 0 auto; color: var(--burgundy); font-size: 13px; font-weight: 800; white-space: nowrap; }
.signature-link span { padding-left: 3px; }

.home-page .feature-strip { padding: 20px 0 42px; background: linear-gradient(180deg, var(--white) 0, var(--cream) 100%); }
.home-page .feature-list { gap: 0; padding: 10px 18px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: none; }
.home-page .feature-item { padding: 12px 0; border-left: 0; border-bottom: 1px solid var(--border); }
.home-page .feature-item:last-child { border-bottom: 0; }
.home-page .feature-item strong { font-size: 14px; }
.home-page .feature-item span { font-size: 12px; }

.home-page .home-section.cream { display: none; }
.home-categories { padding: 54px 0 66px; background: var(--white); }
.home-categories-heading { margin-bottom: 20px; }
.home-categories-heading .eyebrow { margin-bottom: 8px; color: #bd8958; font-size: 10px; }
.home-categories-heading h2 { margin: 0; color: var(--burgundy); font-size: clamp(34px, 10vw, 44px); letter-spacing: -2px; }
.home-category-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.home-category-card { display: grid; grid-template-columns: 104px minmax(0, 1fr); align-items: stretch; overflow: hidden; min-height: 112px; border: 1px solid var(--border); border-radius: 17px; background: var(--white); box-shadow: 0 8px 20px rgba(61,16,16,.05); }
.home-category-card img { width: 104px; height: 100%; object-fit: cover; }
.home-category-card > span { display: grid; align-content: center; gap: 4px; padding: 16px; }
.home-category-card strong { color: var(--burgundy); font-size: 18px; }
.home-category-card small { color: var(--muted); font-size: 12px; }
.home-page .events-home h2 { font-size: clamp(34px, 10vw, 44px); }
.home-page .events-home-copy > p:not(.eyebrow) { font-size: 15px; }

@media (min-width: 700px) {
  .home-page .home-hero-layout { padding: 34px 0 48px; }
  .home-page .home-hero-feature { max-width: 720px; justify-self: center; }
  .home-category-grid { grid-template-columns: repeat(3, 1fr); }
  .home-category-card { grid-template-columns: 1fr; }
  .home-category-card img { width: 100%; height: 174px; }
}

@media (min-width: 980px) {
  .home-page .site-header:not(.admin-header) .header-content { min-height: 76px; }
  .home-page .site-header:not(.admin-header) .logo img { width: 126px; height: 54px; }
  .home-page .home-hero-layout { min-height: 0; grid-template-columns: minmax(0, .8fr) minmax(460px, 1fr); align-items: center; gap: clamp(50px, 7vw, 100px); padding: 58px 0 66px; }
  .home-page .home-hero-copy { order: 1; }
  .home-page .home-hero-feature { order: 2; width: 100%; max-width: none; }
  .home-page .home-hero-copy h1 { font-size: clamp(62px, 6.7vw, 96px); }
  .home-page .home-hero-description { font-size: 18px; }
  .home-page .home-hero-copy .button { width: auto; min-width: 210px; }
  .signature-card { padding: 28px 34px; }
  .home-category-card img { height: 190px; }
}

@media (max-width: 979px) {
  .home-page .site-header:not(.admin-header).is-scrolled .menu-toggle { width: 36px; height: 36px; padding-inline: 9px; border-radius: 50%; }
  .home-page .site-header:not(.admin-header).is-scrolled .logo img { width: 84px; height: 40px; }
  .home-page .site-header:not(.admin-header).is-scrolled .bag-button { min-width: 65px; min-height: 36px; font-size: 12px; }
}

@media (min-width: 980px) {
  .home-page .site-header:not(.admin-header).is-scrolled .menu-toggle { width: 38px; height: 38px; padding-inline: 10px; border-radius: 50%; }
  .home-page .site-header:not(.admin-header).is-scrolled .logo img { width: 92px; height: 40px; }
  .home-page .site-header:not(.admin-header).is-scrolled .bag-button { min-width: 68px; min-height: 38px; font-size: 12px; }
}

/* Use the order-page treatment for the persistent Order action everywhere. */
.site-header:not(.admin-header) .bag-button { background: var(--cream); border-color: var(--border); }
.home-page .site-header:not(.admin-header) .bag-button { min-height: 44px; border-color: var(--border); border-radius: 13px; background: var(--cream); font-size: 13px; }

/* Keep the Holy Crêpe recommendation with the photograph it describes. */
.home-hero-image-label { display: none; }
.home-page .home-hero-signature { position: absolute; right: 14px; bottom: 14px; left: 14px; z-index: 1; padding: 11px 13px 12px; border: 1px solid rgba(255,253,249,.9); border-radius: 14px; background: rgba(255,253,249,.94); color: var(--text); box-shadow: 0 10px 22px rgba(61,16,16,.16); }
.home-page .home-hero-signature .eyebrow { margin: 0 0 3px; color: #a46f42; font-size: 9px; letter-spacing: .15em; }
.home-hero-signature-main { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.home-hero-signature h2 { margin: 0; color: var(--burgundy); font-size: clamp(21px, 6vw, 27px); letter-spacing: -1px; }
.home-hero-signature a { flex: 0 0 auto; color: var(--burgundy); font-size: 12px; font-weight: 800; white-space: nowrap; }
.home-hero-signature > p:not(.eyebrow) { margin: 3px 0 0; color: var(--muted); font-size: 11px; line-height: 1.3; }

@media (min-width: 980px) {
  .home-page .home-hero-signature { right: 20px; bottom: 20px; left: 20px; padding: 15px 17px; }
  .home-hero-signature h2 { font-size: 30px; }
  .home-hero-signature a { font-size: 13px; }
  .home-hero-signature > p:not(.eyebrow) { font-size: 12px; }
}

/* Approved Holy Crepe homepage design: compact mobile shop header and food-first hero. */
.home-page { padding-bottom: 0; }
.home-page .site-header {
  position: sticky;
  background: rgba(255, 253, 249, .98);
  border-bottom: 1px solid #e6dfd8;
  box-shadow: none;
}
.home-page .site-header .header-content {
  /* Match the shared header inset so the cart aligns on every page. */
  width: 92%;
  max-width: 1160px;
  min-height: 72px;
  justify-content: center;
}
.home-page .site-header .menu-toggle {
  position: absolute;
  left: 0;
  order: initial;
  width: 48px;
  height: 48px;
  padding: 0 8px;
  gap: 6px;
  color: var(--text);
}
.home-page .site-header .menu-toggle span { height: 2px; }
.home-page .site-header .logo {
  position: absolute;
  left: 50%;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
}
.home-page .site-header .logo img { width: 118px; height: 52px; }
.home-page .site-header .bag-button {
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  min-width: 46px;
  height: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--burgundy);
  transform: translateY(-50%);
}
.home-page .site-header .bag-button:hover,
.home-page .site-header .bag-button:focus-visible { background: var(--cream); }
.home-page .site-header .bag-icon { width: 28px; height: 31px; }
.home-page .site-header .bag-icon::before { top: 9px; left: 2px; width: 24px; height: 19px; border-width: 2px; border-radius: 3px; }
.home-page .site-header .bag-icon::after { top: 2px; left: 8px; width: 12px; height: 11px; border-width: 2px; }
.home-page .site-header .bag-count { position: absolute; top: 19px; left: 0; right: 0; font-size: 12px; font-weight: 800; line-height: 1; }

@media (max-width: 979px) {
  .home-page .site-header .main-nav,
  .home-page .site-header.is-scrolled .main-nav {
    position: fixed;
    top: 72px;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 19;
    width: min(84vw, 340px);
    min-height: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    margin: 0;
    padding: 22px 18px;
    background: var(--white);
    border: 0;
    border-right: 1px solid var(--border);
    box-shadow: 14px 18px 35px rgba(61, 16, 16, .16);
    visibility: hidden;
    transform: translateX(-105%);
    transition: transform .22s ease, visibility .22s;
  }
  .home-page .site-header.menu-open .main-nav,
  .home-page .site-header.is-scrolled.menu-open .main-nav { visibility: visible; transform: translateX(0); }
  .home-page .site-header .main-nav a,
  .home-page .site-header.is-scrolled .main-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--muted);
    font-size: 15px;
    text-align: left;
    text-decoration: none;
  }
  .home-page .site-header .main-nav a:hover,
  .home-page .site-header .main-nav a.active { background: var(--cream); color: var(--burgundy); }
}

.home-page .home-hero { overflow: hidden; border: 0; background: var(--white); }
.home-page .home-hero-layout { display: grid; grid-template-columns: 1fr; gap: 26px; padding: 48px 0 30px; }
.home-page .home-hero-copy { order: 1; min-width: 0; }
.home-page .home-hero-copy .eyebrow { margin: 0 0 17px; color: var(--burgundy); font-size: 11px; letter-spacing: .17em; }
.home-page .home-hero-copy .eyebrow::after { content: ""; display: block; width: 144px; height: 1px; margin-top: 13px; background: var(--gold); }
.home-page .home-hero-copy h1 { max-width: 10.5ch; color: var(--dark); font-size: clamp(46px, 12.8vw, 57px); line-height: .98; letter-spacing: -2.5px; }
.home-page .home-hero-description { max-width: 29ch; margin: 18px 0 27px; color: var(--text); font-size: 17px; line-height: 1.45; }
.home-page .home-hero-copy .hero-hours { display: none; }
.home-page .home-hero-copy .hero-buttons { display: block; }
.home-page .home-hero-copy .button { width: 100%; min-height: 58px; border-radius: 10px; font-size: 18px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-page .home-hero-feature {
  order: 2;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 16px 32px rgba(61, 16, 16, .1);
}
.home-page .home-hero-feature .crepe-photo-frame { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; overflow: hidden; border: 0; border-radius: inherit; background: transparent; }
.home-page .home-hero-feature .crepe-photo { width: 100%; height: 100%; transform: none; object-fit: cover; object-position: center; }
.home-page .home-hero-feature .hero-card-row { display: none; }
.home-page .home-hero-signature {
  position: absolute;
  top: 17px;
  right: auto;
  bottom: auto;
  left: 17px;
  z-index: 1;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid rgba(222, 212, 203, .9);
  border-radius: 10px;
  background: rgba(255, 253, 249, .96);
  color: var(--burgundy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(61, 16, 16, .11);
}

.home-page .feature-strip { padding: 20px 0 46px; background: linear-gradient(180deg, var(--white) 0, var(--cream) 100%); }
.home-page .feature-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; padding: 14px 10px; border: 0; border-radius: 18px; background: rgba(255, 253, 249, .82); box-shadow: none; }
.home-page .feature-item { position: relative; display: grid; grid-template-columns: 1fr; align-items: start; gap: 7px; padding: 10px 9px; border: 0; }
.home-page .feature-item + .feature-item { border-left: 1px solid var(--gold); }
.home-page .feature-item strong { display: block; color: var(--burgundy); font-size: 11px; letter-spacing: .035em; line-height: 1.2; text-transform: uppercase; }
.home-page .feature-item span:not(.service-icon) { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.25; }
.service-icon { width: 28px; height: 28px; display: block; color: var(--burgundy); stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.home-page .feature-item:nth-child(3) { grid-column: auto; border-top: 0; border-left: 1px solid var(--gold); }

@media (min-width: 700px) {
  .home-page .home-hero-layout { padding: 58px 0 40px; }
  .home-page .home-hero-feature { max-width: 660px; justify-self: center; }
  .home-page .feature-list { max-width: 660px; }
}

@media (min-width: 980px) {
  .home-page .site-header .header-content { min-height: 76px; display: flex; justify-content: flex-start; }
  .home-page .site-header .menu-toggle { display: none; }
  .home-page .site-header .logo { position: static; order: 1; transform: none; }
  .home-page .site-header .logo img { width: 128px; height: 54px; }
  .home-page .site-header .main-nav { position: static; order: 2; width: auto; min-height: auto; display: flex; align-items: center; flex-direction: row; justify-content: center; gap: 26px; margin: 0 auto; padding: 0; background: transparent; border: 0; box-shadow: none; visibility: visible; transform: none; }
  .home-page .site-header .main-nav a { min-height: auto; padding: 6px 0; border-radius: 0; color: var(--muted); font-size: 14px; text-align: center; }
  .home-page .site-header .main-nav a:hover,
  .home-page .site-header .main-nav a.active { background: transparent; color: var(--burgundy); text-decoration: underline; text-underline-offset: 6px; }
  .home-page .site-header .bag-button { position: static; order: 3; margin-left: 0; transform: none; }
  .home-page .home-hero-layout { grid-template-columns: minmax(0, .78fr) minmax(480px, 1fr); align-items: center; gap: clamp(48px, 7vw, 110px); padding: 22px 0 70px; }
  .home-page .home-hero-copy h1 { font-size: clamp(66px, 6.5vw, 98px); }
  .home-page .home-hero-description { font-size: 19px; }
  .home-page .home-hero-copy .button { width: auto; min-width: 220px; }
  .home-page .home-hero-feature { max-width: none; }
  .home-page .feature-list { max-width: 100%; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-page .feature-item { grid-template-columns: 38px minmax(0, 1fr); align-items: center; gap: 12px; padding: 10px 12px; }
  .home-page .feature-item strong { font-size: 13px; }
  .home-page .feature-item span:not(.service-icon) { margin-top: 4px; font-size: 12px; }
  .service-icon { width: 34px; height: 34px; }
  .home-page .feature-item:nth-child(3) { grid-column: auto; border-top: 0; border-left: 1px solid var(--gold); }
}

/* Shared cart control: a single bag icon whose count reflects the live order. */
.site-header:not(.admin-header) .bag-button,
.home-page .site-header:not(.admin-header) .bag-button {
  position: relative;
  width: 46px;
  min-width: 46px;
  height: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--burgundy);
}
.site-header:not(.admin-header) .bag-button:hover,
.site-header:not(.admin-header) .bag-button:focus-visible { background: var(--cream); }
.site-header:not(.admin-header) .bag-icon,
.home-page .site-header:not(.admin-header) .bag-icon {
  display: block;
  width: 28px;
  height: 31px;
  flex: 0 0 28px;
}
.site-header:not(.admin-header) .bag-icon::before { top: 9px; left: 2px; width: 24px; height: 19px; border-width: 2px; border-radius: 3px; }
.site-header:not(.admin-header) .bag-icon::after { top: 2px; left: 8px; width: 12px; height: 11px; border-width: 2px; }
.site-header:not(.admin-header) .bag-count,
.home-page .site-header:not(.admin-header) .bag-count {
  position: absolute;
  top: 19px;
  right: 0;
  left: 0;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 979px) {
  .site-header:not(.admin-header) .header-content,
  .home-page .site-header:not(.admin-header) .header-content {
    min-height: 72px;
    justify-content: center;
    gap: 0;
  }
  .site-header:not(.admin-header) .menu-toggle,
  .home-page .site-header:not(.admin-header) .menu-toggle {
    position: absolute;
    left: 0;
    order: initial;
    width: 48px;
    height: 48px;
    padding: 0 8px;
    gap: 6px;
    color: var(--text);
  }
  .site-header:not(.admin-header) .menu-toggle span,
  .home-page .site-header:not(.admin-header) .menu-toggle span { height: 2px; }
  .site-header:not(.admin-header) .logo,
  .home-page .site-header:not(.admin-header) .logo {
    position: absolute;
    left: 50%;
    display: grid;
    place-items: center;
    transform: translateX(-50%);
  }
  .site-header:not(.admin-header) .logo img,
  .home-page .site-header:not(.admin-header) .logo img { width: 118px; height: 52px; object-position: center; }
  .site-header:not(.admin-header) .bag-button,
  .home-page .site-header:not(.admin-header) .bag-button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .site-header:not(.admin-header) .main-nav,
  .site-header:not(.admin-header).is-scrolled .main-nav,
  .home-page .site-header:not(.admin-header) .main-nav,
  .home-page .site-header:not(.admin-header).is-scrolled .main-nav {
    top: 72px;
    padding-top: 22px;
  }
  .home-page .home-hero-layout { padding: 26px 0 30px; }
}

@media (min-width: 980px) {
  .site-header:not(.admin-header) .bag-button,
  .home-page .site-header:not(.admin-header) .bag-button { position: relative; top: auto; right: auto; transform: none; }
}

/* Temporary event image to give the homepage events section more visual energy. */
.events-home-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, .3);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: 0 18px 38px rgba(61, 16, 16, .22);
}
.events-home-image img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }

/* Real Holy Crepe event moments. */
.events-gallery { padding: 64px 0; background: var(--white); }
.events-gallery-heading { display: grid; gap: 16px; margin-bottom: 26px; }
.events-gallery-heading h2 { margin: 0; }
.events-gallery-heading > p { max-width: 590px; margin: 0; color: var(--muted); }
.events-gallery-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.events-gallery-card { margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 20px; background: var(--cream); box-shadow: 0 15px 34px rgba(61, 16, 16, .1); }
.events-gallery-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.events-gallery-card-cart img { object-position: center 60%; }
.events-gallery-card-gathering img { object-position: center; }
.events-gallery-card figcaption { padding: 14px 16px 16px; color: var(--burgundy); font-size: 14px; font-weight: 700; }

@media (min-width: 700px) {
  .events-gallery-heading { grid-template-columns: minmax(0, 1fr) minmax(250px, .7fr); align-items: end; gap: 38px; }
  .events-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (min-width: 980px) {
  .events-home-layout {
    grid-template-columns: minmax(0, .8fr) minmax(360px, .9fr);
    grid-template-areas:
      "copy image"
      "tags image";
    gap: 34px 64px;
  }
  .events-home-copy { grid-area: copy; }
  .events-home-image { grid-area: image; align-self: stretch; }
  .events-home-image img { height: 100%; aspect-ratio: auto; }
  .event-tag-grid { grid-area: tags; grid-template-columns: repeat(2, 1fr); }
}

/* Order review and optional split-bill flow. */
.order-cart { min-width: 0; padding: 16px; border: 1px solid var(--border); border-radius: 18px; background: var(--cream); }
.order-cart-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 2px 4px 14px; border-bottom: 1px solid var(--border); }
.order-cart-heading span { color: var(--burgundy); font: 25px Georgia, serif; }
.order-cart-heading strong { color: var(--muted); font-size: 12px; }
.order-cart-items { display: grid; gap: 10px; padding: 14px 0; }
.empty-cart-message { margin: 0; padding: 10px 4px; color: var(--muted); font-size: 14px; text-align: center; }
.order-cart .bill-item { grid-template-columns: minmax(0, 1fr) 28px; cursor: default; }
.order-cart .edit-line { width: 100%; min-width: 0; padding: 0; border: 0; background: transparent; color: inherit; font: inherit; text-align: left; cursor: pointer; }
.order-cart .edit-line:hover .bill-item-title strong { color: var(--burgundy); }
.order-cart .edit-line:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 4px; border-radius: 8px; }
.order-cart .edit-item-hint { display: block; margin-top: 5px; color: var(--burgundy); font-size: 11px; font-weight: 700; }
.order-cart-total { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 4px 2px; border-top: 1px solid var(--border); }
.order-cart-total span { color: var(--muted); font-size: 13px; }
.order-cart-total strong { color: var(--burgundy); font: 25px Georgia, serif; }

.split-bill { margin-top: 18px; border: 1px solid var(--border); border-radius: 18px; background: white; overflow: hidden; }
.split-bill > summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px; color: var(--dark); cursor: pointer; list-style: none; }
.split-bill > summary::-webkit-details-marker, .complete-order > summary::-webkit-details-marker, .split-person > summary::-webkit-details-marker { display: none; }
.split-bill > summary:hover { background: #fffaf6; }
.split-bill > summary:focus-visible { background: #fffaf6; outline: 2px solid var(--burgundy); outline-offset: -2px; }
.split-bill-summary-copy { min-width: 0; display: flex; align-items: center; gap: 12px; }
.split-bill-document { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border-radius: 11px; background: var(--cream); color: var(--burgundy); font-size: 22px; }
.split-bill-summary-copy > span:last-child { min-width: 0; display: grid; gap: 1px; }
.split-bill-summary-copy strong { color: var(--burgundy); font-size: 16px; }
.split-bill-summary-copy small { color: var(--muted); font-size: 12px; line-height: 1.35; }
.split-bill-chevron { flex: 0 0 auto; color: var(--burgundy); font-size: 24px; line-height: 1; transition: transform .18s ease; }
.split-bill[open] .split-bill-chevron { transform: rotate(180deg); }
.split-bill-panel { display: grid; gap: 18px; padding: 20px 16px; border-top: 1px solid var(--border); background: #fffdfa; }
.split-bill-intro { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.split-bill-intro .eyebrow { margin-bottom: 5px; font-size: 10px; }
.split-bill-intro h3 { font-size: 25px; }
.split-bill-intro p:not(.eyebrow) { margin: 7px 0 0; font-size: 13px; line-height: 1.45; }
.split-bill-intro .button-link { flex: 0 0 auto; }
.split-bill-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 14px; border: 1px solid var(--border); border-radius: 13px; background: var(--cream); }
.split-bill-actions .button { min-height: 42px; padding: 9px 15px; }
.split-bill-actions p { margin: 0; }
.split-people { display: grid; gap: 12px; }
.split-empty-people { margin: 0; padding: 18px; border: 1px dashed var(--border); border-radius: 13px; color: var(--muted); font-size: 13px; text-align: center; }
.split-person { overflow: hidden; border: 1px solid var(--border); border-radius: 15px; background: white; }
.split-person.is-active { border-color: var(--burgundy); box-shadow: 0 0 0 1px var(--burgundy); }
.split-person > summary { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 14px; cursor: pointer; list-style: none; }
.split-person > summary:hover { background: #fffaf6; }
.split-person > summary:focus-visible { background: #fffaf6; outline: 2px solid var(--burgundy); outline-offset: -2px; }
.split-person > summary > span:first-child { min-width: 0; display: grid; gap: 2px; }
.split-person > summary > span:first-child strong { color: var(--burgundy); font: 22px Georgia, serif; overflow-wrap: anywhere; }
.split-person > summary small { color: var(--muted); font-size: 11px; line-height: 1.35; }
.split-person-total { flex: 0 0 auto; display: grid; gap: 1px; text-align: right; }
.split-person-total small { max-width: 152px; }
.split-person-total strong { color: var(--burgundy); font: 22px Georgia, serif; }
.split-person-body { display: grid; gap: 14px; padding: 14px; border-top: 1px solid var(--border); background: #fffdfa; }
.split-person-name-label { display: grid; gap: 5px; color: var(--muted); font-size: 11px; font-weight: 700; }
.split-person-name { min-height: 42px; padding: 9px 11px; border: 1px solid var(--border); border-radius: 10px; background: white; color: var(--dark); }
.split-person-name:focus { border-color: var(--burgundy); outline: none; }
.split-person-items { display: grid; gap: 7px; }
.split-person-items h4 { margin: 0; color: var(--dark); font-size: 13px; }
.split-person-items p { margin: 0; }
.split-person-items > div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-top: 1px dotted var(--border); color: var(--dark); font-size: 13px; }
.split-person-items > div strong { flex: 0 0 auto; color: var(--burgundy); }
.split-person-fee { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px dotted var(--border); color: var(--muted); font-size: 12px; }
.split-person-fee strong { flex: 0 0 auto; color: var(--burgundy); }
.split-person-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.split-person-actions .mini-button { min-height: 38px; }
.split-remove-person, .split-remove-item { color: #8b3434; }
.split-person-due { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.split-person-due span { color: var(--muted); font-size: 12px; }
.split-person-due strong { color: var(--burgundy); font: 25px Georgia, serif; }
.split-order-cart { padding: 0; background: white; }
.complete-order > summary { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 16px; cursor: pointer; list-style: none; }
.complete-order > summary:hover { background: #fffaf6; }
.complete-order > summary:focus-visible { background: #fffaf6; outline: 2px solid var(--burgundy); outline-offset: -2px; }
.complete-order > summary > span { display: grid; gap: 1px; }
.complete-order > summary > span strong { color: var(--burgundy); font: 24px Georgia, serif; }
.complete-order > summary small { color: var(--muted); font-size: 11px; line-height: 1.35; }
.complete-order > summary > strong { flex: 0 0 auto; color: var(--burgundy); font: 24px Georgia, serif; }
.complete-order-items { display: grid; gap: 10px; padding: 0 14px 14px; border-top: 1px solid var(--border); }
.split-order-item { display: grid; gap: 10px; padding: 13px; border: 1px solid var(--border); border-radius: 12px; background: var(--cream); }
.split-order-item-copy { min-width: 0; display: grid; gap: 3px; }
.split-order-item-copy .bill-item-title { display: flex; justify-content: space-between; gap: 10px; }
.split-order-item-copy .bill-item-title strong { min-width: 0; color: var(--dark); }
.split-order-item-copy .bill-item-title span { flex: 0 0 auto; color: var(--burgundy); font-weight: 700; }
.split-order-item-copy small { color: var(--muted); font-size: 11px; }
.split-order-item-copy .split-assignment-state { color: var(--burgundy); font-weight: 700; }
.split-order-item-controls { display: grid; gap: 7px; }
.split-item-assign { display: flex; align-items: end; flex-wrap: wrap; gap: 7px; }
.split-item-quantity { display: grid; gap: 2px; color: var(--muted); font-size: 10px; font-weight: 700; }
.split-item-quantity-input { width: 64px; min-height: 36px; padding: 4px 7px; border: 1px solid var(--border); border-radius: 8px; background: white; }
.split-item-assign .mini-button { flex: 1 1 160px; min-height: 36px; }
.split-item-hint { margin: 0; color: var(--muted); font-size: 12px; }
.split-item-line-actions { display: flex; align-items: center; gap: 12px; }
.split-item-line-actions .button-link { padding: 0; }
.split-delivery-note { margin: 0; padding: 12px; border: 1px solid #e8d5b8; border-radius: 11px; background: #fff8eb; color: #72552f; font-size: 12px; line-height: 1.45; }

@media (min-width: 700px) {
  .split-bill-panel { padding: 22px; }
  .split-order-item { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
  .split-order-item-controls { justify-items: end; }
  .split-item-line-actions { justify-content: flex-end; }
}

/* Keep the cart number precisely centered inside the shopping-bag outline. */
.site-header:not(.admin-header) .bag-count,
.home-page .site-header:not(.admin-header) .bag-count {
  /* The bag's handle sits above its body, so its visual centre is slightly lower. */
  top: calc(50% + 4px);
  right: auto;
  bottom: auto;
  left: 50%;
  width: 22px;
  height: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  transform: translate(-50%, -50%);
}

/* Item customization opens above the menu, without moving the shopper down the page. */
body.customizer-open { overflow: hidden; }
body.customizer-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(38, 20, 18, .44);
  backdrop-filter: blur(3px);
}
.item-builder {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: 16px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 16px;
  z-index: 60;
  width: auto;
  max-width: 760px;
  max-height: none;
  margin: auto;
  overflow: hidden;
  scroll-margin: 0;
}
.item-builder .builder-footer { bottom: 0; }
#order-heading { scroll-margin-top: 96px; }

@media (min-width: 768px) {
  .item-builder {
    top: 28px;
    right: 24px;
    bottom: 28px;
    left: 24px;
  }
}

/* Full navigation starts at laptop width; tablets keep the phone-style drawer. */
@media (min-width: 980px) {
  .site-header:not(.admin-header) .header-content,
  .site-header:not(.admin-header).is-scrolled .header-content,
  .home-page .site-header:not(.admin-header) .header-content,
  .home-page .site-header:not(.admin-header).is-scrolled .header-content {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 24px;
  }

  .site-header:not(.admin-header) .menu-toggle,
  .site-header:not(.admin-header).is-scrolled .menu-toggle,
  .home-page .site-header:not(.admin-header) .menu-toggle,
  .home-page .site-header:not(.admin-header).is-scrolled .menu-toggle {
    display: none;
  }

  .site-header:not(.admin-header) .logo,
  .site-header:not(.admin-header).is-scrolled .logo,
  .home-page .site-header:not(.admin-header) .logo,
  .home-page .site-header:not(.admin-header).is-scrolled .logo {
    position: static;
    order: 1;
    transform: none;
  }

  .site-header:not(.admin-header) .logo img,
  .site-header:not(.admin-header).is-scrolled .logo img,
  .home-page .site-header:not(.admin-header) .logo img,
  .home-page .site-header:not(.admin-header).is-scrolled .logo img {
    width: 126px;
    height: 54px;
    object-position: left center;
  }

  .site-header:not(.admin-header) .main-nav,
  .site-header:not(.admin-header).is-scrolled .main-nav,
  .home-page .site-header:not(.admin-header) .main-nav,
  .home-page .site-header:not(.admin-header).is-scrolled .main-nav {
    position: static;
    z-index: auto;
    display: flex;
    width: auto;
    min-height: auto;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    visibility: visible;
    transform: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    transition: none;
  }

  .site-header:not(.admin-header) .main-nav a,
  .site-header:not(.admin-header).is-scrolled .main-nav a,
  .home-page .site-header:not(.admin-header) .main-nav a,
  .home-page .site-header:not(.admin-header).is-scrolled .main-nav a {
    display: block;
    min-width: auto;
    min-height: auto;
    padding: 6px 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
  }

  .site-header:not(.admin-header) .main-nav a:hover,
  .site-header:not(.admin-header) .main-nav a.active,
  .site-header:not(.admin-header).is-scrolled .main-nav a:hover,
  .site-header:not(.admin-header).is-scrolled .main-nav a.active {
    background: transparent;
    color: var(--burgundy);
    text-decoration: underline;
    text-underline-offset: 6px;
  }

  .site-header:not(.admin-header) .bag-button,
  .site-header:not(.admin-header).is-scrolled .bag-button,
  .home-page .site-header:not(.admin-header) .bag-button,
  .home-page .site-header:not(.admin-header).is-scrolled .bag-button {
    position: relative;
    top: auto;
    right: auto;
    order: 3;
    margin-left: 0;
    transform: none;
  }
}

/* Homepage hero enhancement: a warmer opening with a clear product moment. */
.home-page .home-hero {
  background: var(--white);
}
.home-page .hero-buttons-home { display: grid; gap: 10px; }
.home-page .home-hero-copy .hero-buttons-home .button-outline {
  display: inline-flex;
  min-height: 50px;
  border-color: #c99c69;
  background: rgba(255, 253, 249, .72);
  color: var(--burgundy);
  font-size: 14px;
  letter-spacing: .05em;
}
.home-page .home-hero-copy .hero-buttons-home .button-outline:hover,
.home-page .home-hero-copy .hero-buttons-home .button-outline:focus-visible {
  background: var(--cream);
  color: var(--dark);
}
.home-page .home-hero-signature {
  top: auto;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 15px;
  border-radius: 15px;
  background: rgba(255, 253, 249, .95);
  color: var(--text);
  font-weight: normal;
  letter-spacing: 0;
  line-height: normal;
  text-transform: none;
}
.home-page .home-hero-signature .eyebrow { margin: 0 0 4px; color: #a66f42; font-size: 9px; letter-spacing: .14em; }
.home-page .home-hero-signature .eyebrow::after { display: none; }
.home-page .home-hero-signature-main { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.home-page .home-hero-signature h2 { margin: 0; color: var(--burgundy); font-size: clamp(22px, 6vw, 28px); letter-spacing: -1px; }
.home-page .home-hero-signature strong { flex: 0 0 auto; color: var(--burgundy); font: 22px Georgia, serif; }
.home-page .home-hero-signature > p:not(.eyebrow) { margin: 4px 0 7px; color: var(--muted); font-size: 11px; line-height: 1.3; }
.home-page .home-hero-signature a { color: var(--burgundy); font-size: 12px; font-weight: 800; text-decoration: none; }
.home-page .home-hero-signature a:hover, .home-page .home-hero-signature a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

@media (min-width: 700px) {
  .home-page .hero-buttons-home { display: flex; flex-wrap: wrap; align-items: center; }
  .home-page .home-hero-copy .hero-buttons-home .button-outline { width: auto; min-width: 180px; }
}

@media (max-width: 979px) {
  .home-page .home-hero-layout { padding-bottom: 18px; }
  .home-page .home-hero-description { margin-bottom: 17px; }
  .home-page .feature-strip { padding-top: 10px; }
}

/* Tablets use the wider homepage composition while retaining the phone drawer. */
@media (min-width: 768px) and (max-width: 979px) {
  .home-page .home-hero-layout {
    grid-template-columns: minmax(0, .68fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 44px);
    padding: 38px 0 42px;
  }
  .home-page .home-hero-copy h1 { font-size: clamp(52px, 7vw, 66px); }
  .home-page .home-hero-description { margin: 16px 0 22px; font-size: 18px; }
  .home-page .home-hero-copy .button { width: auto; min-width: 190px; }
  .home-page .home-hero-feature { width: 100%; max-width: none; }
  .home-page .feature-list { max-width: 100%; }
}

.customer-reviews { padding-top: 44px; padding-bottom: 44px; background: var(--white); }
.customer-review-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.customer-review-card { min-height: 160px; padding: 18px 18px; border: 1px solid var(--border); border-radius: 16px; background: #fffaf4; box-shadow: 0 10px 22px rgba(61, 16, 16, .05); }
.customer-review-rating { color: var(--gold); font-size: 15px; letter-spacing: .07em; }
.customer-review-rating span { color: #e7ded5; }
.customer-review-card > p { margin: 12px 0 14px; color: var(--text); font: 18px/1.35 Georgia, serif; }
.customer-review-card > strong { color: var(--burgundy); font-size: 12px; }
.review-public-consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 25px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.review-public-consent input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; accent-color: var(--burgundy); }

@media (min-width: 700px) {
  .customer-review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Keep all customer navigation targets above decorative homepage layers. */
.home-page .home-hero-copy { position: relative; z-index: 2; }
.home-page .hero-buttons-home,
.home-page .hero-buttons-home .button,
.home-page .home-hero-signature a,
.home-page .site-header .bag-button { position: relative; z-index: 4; pointer-events: auto; }

/* Customer accounts — passwordless sign-in, rewards, and personal order history. */
.account-layout { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
.account-intro { max-width: 550px; }
.account-intro h1 { margin-bottom: 19px; font-size: clamp(44px, 12vw, 66px); }
.account-intro > .muted { max-width: 500px; margin: 0; font-size: 16px; }
.account-benefits { display: grid; gap: 10px; margin-top: 28px; }
.account-benefits > div { display: grid; grid-template-columns: 31px minmax(0, 1fr); column-gap: 10px; align-items: center; min-height: 62px; padding: 11px 13px; border: 1px solid var(--border); border-radius: 14px; background: #fffaf4; }
.account-benefits > div > span { grid-row: 1 / span 2; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--burgundy); font-size: 16px; font-weight: 800; }
.account-benefits strong { color: var(--dark); font-size: 14px; line-height: 1.25; }
.account-benefits small { color: var(--muted); font-size: 12px; line-height: 1.3; }
.account-card { min-width: 0; padding: 23px 18px; border: 1px solid var(--border); border-radius: 20px; background: white; box-shadow: 0 16px 36px rgba(61, 16, 16, .07); }
.account-card h2 { margin-bottom: 9px; font-size: clamp(36px, 9vw, 48px); }
.account-feedback { margin: 0 0 18px; padding: 12px 13px; border: 1px solid #c4d7c6; border-radius: 11px; background: #edf6ee; color: #285934; font-size: 13px; font-weight: 700; line-height: 1.45; }
.account-feedback.is-error { border-color: #d7a4a4; background: #fff0f0; color: #7b1f1f; }
.account-mode { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; margin: 22px 0 18px; padding: 4px; border-radius: 13px; background: var(--cream); }
.account-mode button { min-height: 43px; padding: 8px 10px; border: 1px solid transparent; border-radius: 9px; background: transparent; color: var(--muted); font-weight: 800; cursor: pointer; }
.account-mode button:hover { color: var(--burgundy); }
.account-mode button.active { border-color: var(--border); background: white; color: var(--burgundy); box-shadow: 0 3px 9px rgba(61,16,16,.07); }
.account-mode button:focus-visible, .account-channel label:has(input:focus-visible), .account-form input:focus-visible, .account-card .button-link:focus-visible { outline: 3px solid rgba(190,139,72,.48); outline-offset: 3px; }
.account-form { display: grid; gap: 16px; }
.account-card [hidden] { display: none !important; }
.account-form .button { width: 100%; margin-top: 2px; }
.account-form input:focus { border-color: var(--burgundy); outline: none; box-shadow: 0 0 0 3px rgba(96,29,29,.09); }
.account-channel { display: grid; gap: 8px; }
.account-channel > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.account-channel label { min-height: 49px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 8px; border: 1px solid var(--border); border-radius: 11px; background: var(--white); color: var(--muted); font-size: 13px; font-weight: 800; cursor: pointer; }
.account-channel label:hover { border-color: #b88b61; background: #fffaf4; }
.account-channel label:has(input:checked) { border-color: var(--burgundy); background: var(--cream); color: var(--burgundy); }
.account-channel input { width: 18px; min-width: 18px; min-height: 18px; margin: 0; padding: 0; accent-color: var(--burgundy); }
.account-code-form { margin-top: 2px; padding: 16px; border: 1px dashed #c9aa8a; border-radius: 14px; background: #fffaf4; }
.account-code-form .muted { margin: 0; font-size: 13px; }
.account-code-form input { letter-spacing: .18em; font-size: 20px; font-weight: 800; text-align: center; }
.account-privacy { margin: 18px 1px 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.account-member-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.account-member-heading .button-link { flex: 0 0 auto; padding-top: 3px; }
.account-member-heading h2 { font-size: clamp(31px, 8vw, 43px); }
.account-member-heading .eyebrow { margin-bottom: 6px; }
.account-reward-card { display: grid; gap: 18px; margin-top: 22px; padding: 19px; border: 1px solid #ddc49f; border-radius: 16px; background: linear-gradient(135deg, #fff8e9, #f6eee0); }
.account-reward-card .eyebrow { margin-bottom: 7px; color: #9c6428; }
.account-reward-card h3 { color: var(--burgundy); font-size: 29px; }
.account-reward-card p:not(.eyebrow) { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.account-reward-card .button { width: 100%; }
.account-orders { margin-top: 27px; }
.account-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 13px; }
.account-section-heading .eyebrow { margin-bottom: 5px; }
.account-section-heading h3 { font-size: 25px; }
.account-section-heading > a { flex: 0 0 auto; color: var(--burgundy); font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.account-order-list { display: grid; gap: 10px; }
.account-order { display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 15px; border: 1px solid var(--border); border-radius: 14px; background: #fffdfa; }
.account-order-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.account-order h4 { min-width: 0; margin: 0; color: var(--dark); font: 21px/1.15 Georgia, "Times New Roman", serif; overflow-wrap: anywhere; }
.account-order-status { flex: 0 0 auto; padding: 5px 8px; border-radius: 999px; background: var(--cream); color: var(--burgundy); font-size: 11px; font-weight: 800; white-space: nowrap; }
.account-order-status.status-completed { background: #eaf4eb; color: #347043; }
.account-order-status.status-cancelled { background: #fff0f0; color: #8b3434; }
.account-order-status.status-out-for-delivery, .account-order-status.status-ready { background: #fff4df; color: #865719; }
.account-order-details { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.account-order-track { width: fit-content; color: var(--burgundy); font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.account-empty-orders { display: grid; gap: 13px; padding: 20px 17px; border: 1px dashed #cbb9a8; border-radius: 14px; background: #fffaf4; color: var(--muted); text-align: center; }
.account-empty-orders p { margin: 0; font-size: 13px; }
.account-empty-orders .button { justify-self: center; min-height: 42px; padding: 9px 15px; font-size: 13px; }
.account-checkout-note { margin: -1px 0 3px; padding: 10px 12px; border: 1px solid #c4d7c6; border-radius: 10px; background: #edf6ee; color: #285934; font-size: 13px; font-weight: 700; line-height: 1.4; }

@media (min-width: 700px) {
  .account-layout { grid-template-columns: minmax(0, .76fr) minmax(400px, 1fr); gap: clamp(36px, 7vw, 82px); }
  .account-card { padding: 31px; }
  .account-reward-card { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
  .account-reward-card .button { width: auto; min-width: 145px; }
}

@media (min-width: 980px) {
  .account-layout { grid-template-columns: minmax(290px, .72fr) minmax(480px, 1fr); }
}


/* Saved delivery places */
.saved-address-row { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.saved-address-row select { flex:1 1 280px; min-width:0; }
.account-order-top .button-link { margin-left:auto; }


/* Account side button */
.site-header:not(.admin-header) .account-button { order: 4; display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 44px; min-width: 92px; padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--cream); color: var(--burgundy); font-size: 13px; font-weight: 700; text-decoration: none; }
.site-header:not(.admin-header) .account-button:hover { border-color: var(--burgundy); text-decoration: none; }
.account-icon { width: 20px; height: 20px; display: inline-flex; }
.account-icon svg { width: 100%; height: 100%; stroke: currentColor; }
.account-label { white-space: nowrap; }
.payment-choice-list { margin-top: 18px; }
.payment-choice-list label { cursor: pointer; }
.payment-page { padding-top: 70px; padding-bottom: 90px; }
.payment-layout { max-width: 760px; }
.payment-card { padding: clamp(28px, 6vw, 52px); border: 1px solid var(--border); border-radius: 24px; background: white; box-shadow: 0 18px 45px rgba(61,16,16,.08); }
.payment-card h1 { margin-bottom: 12px; }
.payment-lead { max-width: 600px; color: var(--muted); line-height: 1.6; }
.payment-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: var(--cream); }
.payment-summary div { display: grid; gap: 4px; }
.payment-summary span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.payment-summary strong { color: var(--burgundy); font-size: 17px; }
.payment-button { width: 100%; margin-top: 12px; }
.payment-security { margin: 14px 0 22px; }
.payment-state { display: grid; gap: 7px; margin: 24px 0; padding: 18px; border-radius: 16px; }
.payment-state strong { color: var(--burgundy); }
.success-state { background: #eef7ef; border: 1px solid #b7d5bc; }
.cancelled-state { background: #fff7e9; border: 1px solid #e5cf9c; }
.payment-state .button { width: fit-content; margin-top: 8px; }
@media (max-width: 700px) {
  .payment-summary { grid-template-columns: 1fr; }
  .site-header:not(.admin-header) .account-button { min-width: 44px; width: 44px; padding: 8px; }
  .site-header:not(.admin-header) .account-label { display: none; }
}
@media (min-width: 980px) {
  .site-header:not(.admin-header) .account-button { order: 3; }
  .site-header:not(.admin-header) .bag-button { order: 4; }
}


/* Legal and saved-card additions */
.legal-page { padding: 64px 0 100px; }
.legal-card { max-width: 900px; background: #fff; border: 1px solid #e7dfd8; border-radius: 24px; padding: 48px; box-shadow: 0 20px 60px rgba(67, 32, 27, .06); }
.legal-card h2 { margin: 32px 0 10px; }
.legal-card p { line-height: 1.75; }
.legal-consent { margin: 18px 0; }
.privacy-check { display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.privacy-check input { margin-top: 4px; flex: 0 0 auto; }
.stripe-card-element { border: 1px solid #d9d0c9; border-radius: 12px; padding: 14px; background: #fff; margin: 12px 0; min-height: 20px; }
.payment-save-card { margin: 14px 0; }
@media (max-width: 700px) { .legal-card { padding: 28px 20px; border-radius: 18px; } }

     
/* Phone-only account access: keep the profile icon visible at the far right
   and add a labelled Login destination inside the slide-out menu. */
@media (max-width: 699px) {
  body .site-header:not(.admin-header) .header-content {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) 38px 38px;
    column-gap: 6px;
  }
  body .site-header:not(.admin-header) .menu-toggle { grid-column: 1; grid-row: 1; order: initial; }
  body .site-header:not(.admin-header) .logo { grid-column: 2; grid-row: 1; justify-self: center; order: initial; }
  body .site-header:not(.admin-header) .bag-button { grid-column: 3; grid-row: 1; margin: 0 !important; order: initial; }
  body .site-header:not(.admin-header) .account-button { grid-column: 4; grid-row: 1; display: inline-flex; margin: 0 !important; order: initial; }
  body .site-header:not(.admin-header) .main-nav .mobile-login-link { display: flex; }
}
@media (min-width: 700px) {
  body .site-header:not(.admin-header) .main-nav .mobile-login-link { display: none !important; }
}

     
@media (max-width: 699px) {
  body .site-header:not(.admin-header) .menu-toggle,
  body .site-header:not(.admin-header) .logo,
  body .site-header:not(.admin-header) .bag-button,
  body .site-header:not(.admin-header) .account-button {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
  }
  body .site-header:not(.admin-header) .menu-toggle,
  body .site-header:not(.admin-header) .bag-button,
  body .site-header:not(.admin-header) .account-button {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
  }
}

@media (max-width: 699px) {
  body .site-header:not(.admin-header) .bag-button { width: 38px !important; min-width: 38px !important; }
}


/* Keep the cart quantity attached to the bag at every screen size. */
.site-header .bag-button {
  position: relative !important;
  overflow: visible !important;
}

.site-header .bag-count {
  position: absolute !important;
  inset: 1px 0 auto auto !important;
  z-index: 2;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border: 2px solid #fffaf4;
  border-radius: 999px;
  background: #741f23;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  transform: none !important;
}
