/* Ti Tha Fame Corfu - customer theme v7 */
.customer-ui {
    --food-bg: #fff8f1;
    --food-surface: #ffffff;
    --food-ink: #211914;
    --food-muted: #786b62;
    --food-dark: #17120f;
    --food-primary: #ff5a32;
    --food-primary-dark: #e9421d;
    --food-yellow: #ffc84a;
    --food-green: #1da85b;
    --food-line: #eadfd6;
    --food-soft: #fff0e5;
    --food-shadow: 0 20px 55px rgba(53, 34, 22, .10);
    --food-shadow-small: 0 10px 30px rgba(53, 34, 22, .08);
    background: var(--food-bg);
    color: var(--food-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
.customer-ui *, .customer-ui *::before, .customer-ui *::after { box-sizing: border-box; }
.customer-ui body { background: var(--food-bg); }
.customer-ui main { min-height: calc(100vh - 180px); }
.customer-ui a { color: inherit; }
.customer-ui .container { width: min(1180px, calc(100% - 40px)); }
.customer-ui .hidden { display: none !important; }
.customer-ui .muted { color: var(--food-muted); }

/* Header */
.customer-ui .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(23, 18, 15, .94);
    color: #fff;
    border: 0;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(23, 18, 15, .13);
}
.customer-ui .nav-row { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.customer-ui .brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; text-decoration: none; }
.customer-ui .brand-mark {
    width: 43px; height: 43px; display: grid; place-items: center; position: relative;
    background: var(--food-primary); color: #fff; border-radius: 50% 50% 50% 14px;
    transform: rotate(-8deg); box-shadow: 0 8px 18px rgba(255, 90, 50, .32);
}
.customer-ui .brand-mark span { transform: rotate(8deg); font-size: 1.6rem; line-height: 1; font-weight: 950; }
.customer-ui .brand-copy { display: flex; align-items: baseline; gap: 7px; font-size: 1.28rem; font-weight: 950; letter-spacing: -.04em; }
.customer-ui .brand-copy small { color: var(--food-yellow); font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }
.customer-ui .top-nav { display: flex; align-items: center; gap: 8px; }
.customer-ui .top-nav a {
    display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 8px 13px;
    border-radius: 999px; color: rgba(255,255,255,.82); font-weight: 800; text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.customer-ui .top-nav a:hover { background: rgba(255,255,255,.10); color: #fff; transform: translateY(-1px); }
.customer-ui .top-nav .nav-cart { background: rgba(255,255,255,.08); }
.customer-ui .top-nav .language-switch { min-width: 44px; justify-content: center; background: #fff; color: var(--food-dark); }
.customer-ui .top-nav .language-switch:hover { background: var(--food-yellow); color: var(--food-dark); }
.customer-ui .badge { min-width: 22px; height: 22px; padding: 0 6px; display: inline-grid; place-items: center; background: var(--food-primary); color: #fff; border: 2px solid var(--food-dark); border-radius: 999px; font-size: .72rem; font-weight: 950; }

/* Shared UI */
.customer-ui .btn {
    border: 0; border-radius: 14px; min-height: 46px; padding: 12px 17px;
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-weight: 900; text-decoration: none; cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.customer-ui .btn:hover { transform: translateY(-2px); }
.customer-ui .btn-primary { background: var(--food-primary); color: #fff; box-shadow: 0 10px 24px rgba(255, 90, 50, .23); }
.customer-ui .btn-primary:hover { background: var(--food-primary-dark); box-shadow: 0 14px 30px rgba(255, 90, 50, .28); }
.customer-ui .btn-dark { background: var(--food-dark); color: #fff; }
.customer-ui .btn-light { background: #fff; color: var(--food-dark); border: 1px solid var(--food-line); }
.customer-ui .btn-large { min-height: 54px; padding: 14px 21px; border-radius: 16px; font-size: 1rem; }
.customer-ui .btn-block { width: 100%; }
.customer-ui .section { padding: 74px 0; }
.customer-ui .section-kicker, .customer-ui .eyebrow {
    color: var(--food-primary); font-size: .78rem; font-weight: 950; letter-spacing: .11em; text-transform: uppercase;
}
.customer-ui .eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #fff; background: rgba(255,255,255,.07); }
.customer-ui .eyebrow span { color: var(--food-yellow); font-size: .68rem; }
.customer-ui .back-link { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 20px; color: rgba(255,255,255,.85); font-weight: 850; text-decoration: none; }
.customer-ui .back-link:hover { color: #fff; }
.customer-ui .back-link.dark { color: var(--food-muted); }
.customer-ui .back-link.dark:hover { color: var(--food-primary); }
.customer-ui input, .customer-ui select, .customer-ui textarea {
    width: 100%; min-height: 50px; border: 1px solid var(--food-line); border-radius: 13px;
    background: #fff; color: var(--food-ink); padding: 12px 14px; font: inherit; outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.customer-ui textarea { min-height: 100px; resize: vertical; }
.customer-ui input:focus, .customer-ui select:focus, .customer-ui textarea:focus { border-color: var(--food-primary); box-shadow: 0 0 0 4px rgba(255, 90, 50, .10); }
.customer-ui .field label { display: block; margin-bottom: 7px; font-size: .86rem; font-weight: 900; color: var(--food-ink); }
.customer-ui .notice { border-radius: 14px; }
.customer-ui .notice.error { background: #fff0f0; color: #a51d1d; border-color: #ffcaca; }
.customer-ui .search-empty { margin: 26px 0; padding: 25px; text-align: center; border: 1px dashed var(--food-line); border-radius: 18px; color: var(--food-muted); background: #fff; }

/* Home hero */
.customer-ui .home-hero { position: relative; overflow: hidden; background: var(--food-dark); color: #fff; }
.customer-ui .home-hero::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 200, 74, .13), transparent 30%),
        radial-gradient(circle at 87% 72%, rgba(255, 90, 50, .20), transparent 34%),
        linear-gradient(130deg, transparent 40%, rgba(255,255,255,.025));
}
.customer-ui .home-hero-grid { position: relative; min-height: 610px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 55px; padding-top: 55px; padding-bottom: 58px; }
.customer-ui .home-hero-copy h1 { margin: 20px 0 18px; max-width: 720px; font-size: clamp(2.7rem, 5.5vw, 5.3rem); line-height: .99; letter-spacing: -.065em; }
.customer-ui .home-hero-copy h1 em { color: var(--food-yellow); font-style: normal; }
.customer-ui .home-hero-copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.7vw, 1.2rem); line-height: 1.75; }
.customer-ui .hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.customer-ui .hero-note { color: rgba(255,255,255,.74); font-weight: 750; }
.customer-ui .hero-benefits { display: flex; flex-wrap: wrap; gap: 13px 20px; margin-top: 30px; color: rgba(255,255,255,.69); font-size: .88rem; font-weight: 750; }
.customer-ui .hero-benefits span::first-letter { color: var(--food-green); }
.customer-ui .hero-visual { position: relative; min-height: 490px; display: grid; place-items: center; }
.customer-ui .hero-phone { position: relative; z-index: 3; width: 265px; height: 500px; padding: 13px; background: #090807; border: 2px solid rgba(255,255,255,.22); border-radius: 42px; box-shadow: 0 40px 80px rgba(0,0,0,.43); transform: rotate(5deg); }
.customer-ui .phone-speaker { position: absolute; top: 17px; left: 50%; z-index: 5; width: 76px; height: 18px; transform: translateX(-50%); border-radius: 999px; background: #090807; }
.customer-ui .phone-screen { height: 100%; overflow: hidden; border-radius: 31px; background: #f7f0e8; }
.customer-ui .phone-map { position: relative; height: 66%; overflow: hidden; background: linear-gradient(145deg, #e9e1d6, #fff9ef); }
.customer-ui .phone-map::before, .customer-ui .phone-map::after { content: ""; position: absolute; border-radius: 50%; background: rgba(100, 170, 115, .22); }
.customer-ui .phone-map::before { width: 130px; height: 130px; left: -36px; top: 80px; }
.customer-ui .phone-map::after { width: 95px; height: 95px; right: -25px; top: 25px; }
.customer-ui .map-road { position: absolute; display: block; height: 15px; border-radius: 999px; background: #fff; box-shadow: 0 0 0 1px #ded5c9; transform-origin: left center; }
.customer-ui .road-one { width: 260px; left: -20px; top: 80px; transform: rotate(26deg); }
.customer-ui .road-two { width: 230px; left: 45px; top: 185px; transform: rotate(-31deg); }
.customer-ui .road-three { width: 190px; left: -15px; top: 240px; transform: rotate(5deg); }
.customer-ui .map-pin { position: absolute; z-index: 3; top: 118px; left: 105px; display: grid; place-items: center; width: 55px; height: 55px; font-size: 2.3rem; filter: drop-shadow(0 10px 10px rgba(0,0,0,.20)); animation: pinBounce 1.7s ease-in-out infinite; }
.customer-ui .phone-order-card { margin: -23px 12px 0; position: relative; z-index: 4; padding: 18px; border-radius: 20px; background: #fff; color: var(--food-ink); box-shadow: 0 16px 35px rgba(56,37,25,.18); }
.customer-ui .phone-order-card strong, .customer-ui .phone-order-card span { display: block; }
.customer-ui .phone-order-card strong { font-size: 1rem; }
.customer-ui .phone-order-card span { margin-top: 5px; color: var(--food-muted); font-size: .76rem; }
.customer-ui .phone-progress { height: 7px; margin-top: 14px; overflow: hidden; border-radius: 999px; background: #f0e5dc; }
.customer-ui .phone-progress i { display: block; width: 68%; height: 100%; border-radius: inherit; background: var(--food-primary); }
.customer-ui .hero-orbit { position: absolute; border: 1px dashed rgba(255,255,255,.16); border-radius: 50%; }
.customer-ui .orbit-one { width: 430px; height: 430px; }
.customer-ui .orbit-two { width: 330px; height: 330px; }
.customer-ui .floating-food { position: absolute; z-index: 4; display: grid; place-items: center; width: 72px; height: 72px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.10); backdrop-filter: blur(12px); font-size: 2.2rem; box-shadow: 0 18px 35px rgba(0,0,0,.23); }
.customer-ui .food-one { left: 5%; top: 23%; transform: rotate(-9deg); }
.customer-ui .food-two { right: 2%; top: 17%; transform: rotate(8deg); }
.customer-ui .food-three { right: 1%; bottom: 10%; transform: rotate(-6deg); }
@keyframes pinBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* How it works */
.customer-ui .how-strip { position: relative; z-index: 5; margin-top: -1px; background: #fff; border-bottom: 1px solid var(--food-line); }
.customer-ui .how-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.customer-ui .how-grid article { min-height: 110px; padding: 24px 28px; display: flex; align-items: center; gap: 15px; border-right: 1px solid var(--food-line); }
.customer-ui .how-grid article:last-child { border-right: 0; }
.customer-ui .how-grid article > span { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; background: var(--food-soft); color: var(--food-primary); font-weight: 950; }
.customer-ui .how-grid strong, .customer-ui .how-grid small { display: block; }
.customer-ui .how-grid strong { font-size: .96rem; }
.customer-ui .how-grid small { margin-top: 4px; color: var(--food-muted); }

/* Restaurant listing */
.customer-ui .restaurant-section { background: var(--food-bg); }
.customer-ui .section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 32px; }
.customer-ui .section-heading-row h2 { margin: 7px 0 8px; font-size: clamp(2rem, 4vw, 3.15rem); letter-spacing: -.05em; }
.customer-ui .section-heading-row p { margin: 0; color: var(--food-muted); }
.customer-ui .restaurant-search, .customer-ui .menu-search { position: relative; display: block; }
.customer-ui .restaurant-search { width: min(370px, 100%); }
.customer-ui .restaurant-search > span, .customer-ui .menu-search > span { position: absolute; z-index: 2; left: 16px; top: 50%; transform: translateY(-50%); color: var(--food-muted); font-size: 1.25rem; }
.customer-ui .restaurant-search input, .customer-ui .menu-search input { padding-left: 46px; border-radius: 999px; box-shadow: 0 8px 25px rgba(53,34,22,.05); }
.customer-ui .restaurant-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.customer-ui .restaurant-tile { min-width: 0; overflow: hidden; border: 1px solid rgba(232,219,208,.9); border-radius: 25px; background: #fff; box-shadow: var(--food-shadow-small); transition: transform .2s ease, box-shadow .2s ease; }
.customer-ui .restaurant-tile:hover { transform: translateY(-6px); box-shadow: var(--food-shadow); }
.customer-ui .restaurant-cover { position: relative; display: block; aspect-ratio: 1.52; overflow: hidden; background: #eee3da; }
.customer-ui .restaurant-cover::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(20,15,12,.55)); }
.customer-ui .restaurant-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.customer-ui .restaurant-tile:hover .restaurant-cover img { transform: scale(1.045); }
.customer-ui .availability-pill { display: inline-flex; align-items: center; gap: 7px; border-radius: 999px; font-size: .76rem; font-weight: 900; }
.customer-ui .restaurant-cover .availability-pill { position: absolute; z-index: 3; top: 14px; left: 14px; padding: 8px 11px; color: #fff; background: rgba(23,18,15,.77); backdrop-filter: blur(10px); }
.customer-ui .availability-pill i { width: 8px; height: 8px; border-radius: 50%; background: #36d67b; box-shadow: 0 0 0 4px rgba(54,214,123,.18); }
.customer-ui .cover-arrow { position: absolute; z-index: 3; right: 14px; bottom: 14px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--food-dark); font-size: 1.2rem; font-weight: 950; }
.customer-ui .restaurant-content { padding: 20px; }
.customer-ui .restaurant-title-row h3 { margin: 0; font-size: 1.28rem; letter-spacing: -.025em; }
.customer-ui .restaurant-title-row p { min-height: 44px; margin: 7px 0 0; color: var(--food-muted); font-size: .9rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.customer-ui .restaurant-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin: 18px 0; }
.customer-ui .restaurant-facts > span { min-width: 0; padding: 10px 7px; border-radius: 13px; background: #fbf7f3; text-align: center; }
.customer-ui .restaurant-facts b, .customer-ui .restaurant-facts small, .customer-ui .restaurant-facts strong { display: block; }
.customer-ui .restaurant-facts b { font-size: .95rem; }
.customer-ui .restaurant-facts small { margin: 3px 0 2px; color: var(--food-muted); font-size: .66rem; }
.customer-ui .restaurant-facts strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .78rem; }
.customer-ui .restaurant-cta { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; border-radius: 13px; background: var(--food-dark); color: #fff; font-weight: 900; text-decoration: none; }
.customer-ui .restaurant-cta:hover { background: var(--food-primary); }
.customer-ui .empty-state { padding: 55px 25px; text-align: center; border: 1px dashed var(--food-line); border-radius: 24px; background: #fff; }
.customer-ui .empty-state > div { font-size: 3rem; }
.customer-ui .empty-state h3 { margin: 12px 0 5px; }
.customer-ui .empty-state p { margin: 0; color: var(--food-muted); }

/* Restaurant menu hero */
.customer-ui .restaurant-banner { position: relative; min-height: 410px; overflow: hidden; background: var(--food-dark); color: #fff; }
.customer-ui .restaurant-banner-image, .customer-ui .restaurant-banner-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.customer-ui .restaurant-banner-image { object-fit: cover; }
.customer-ui .restaurant-banner-shade { background: linear-gradient(90deg, rgba(18,13,10,.91) 0%, rgba(18,13,10,.67) 49%, rgba(18,13,10,.25) 100%), linear-gradient(0deg, rgba(18,13,10,.45), transparent 55%); }
.customer-ui .restaurant-banner-inner { position: relative; z-index: 2; padding-top: 36px; padding-bottom: 48px; }
.customer-ui .restaurant-banner-copy { max-width: 710px; margin-top: 48px; }
.customer-ui .availability-pill.light { padding: 8px 11px; color: #fff; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.15); }
.customer-ui .restaurant-banner-copy h1 { margin: 14px 0 8px; font-size: clamp(2.6rem, 6vw, 4.7rem); line-height: 1; letter-spacing: -.06em; }
.customer-ui .restaurant-banner-copy > p { max-width: 620px; margin: 0; color: rgba(255,255,255,.74); font-size: 1.02rem; line-height: 1.65; }
.customer-ui .banner-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.customer-ui .banner-facts > span { display: grid; grid-template-columns: auto auto; grid-template-rows: auto auto; column-gap: 9px; align-items: center; min-width: 125px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.10); backdrop-filter: blur(8px); }
.customer-ui .banner-facts b { grid-row: 1/3; font-size: 1.05rem; }
.customer-ui .banner-facts small { color: rgba(255,255,255,.62); font-size: .66rem; }
.customer-ui .banner-facts strong { font-size: .82rem; }

/* Menu toolbar */
.customer-ui .menu-toolbar-wrap { position: sticky; top: 76px; z-index: 60; background: rgba(255,248,241,.94); border-bottom: 1px solid var(--food-line); backdrop-filter: blur(15px); }
.customer-ui .menu-toolbar { min-height: 82px; display: grid; grid-template-columns: 280px minmax(0,1fr); gap: 18px; align-items: center; }
.customer-ui .menu-search input { min-height: 46px; }
.customer-ui .category-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; overflow: visible; padding: 8px 0; background: transparent; }
.customer-ui .category-nav::-webkit-scrollbar { display: none; }
.customer-ui .category-nav a { flex: 0 0 auto; padding: 10px 14px; border: 1px solid var(--food-line); border-radius: 999px; background: #fff; color: var(--food-muted); font-size: .85rem; font-weight: 850; text-decoration: none; transition: .18s ease; }
.customer-ui .category-nav a:hover, .customer-ui .category-nav a.active { border-color: var(--food-dark); background: var(--food-dark); color: #fff; }
.customer-ui .menu-section { padding-top: 44px; }
.customer-ui .menu-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 35px; align-items: start; }
.customer-ui .menu-main { min-width: 0; }
.customer-ui .category-block { margin: 0 0 48px; scroll-margin-top: 178px; }
.customer-ui .category-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 18px; }
.customer-ui .category-heading span { color: var(--food-primary); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.customer-ui .category-heading h2 { margin: 4px 0 0; font-size: clamp(1.65rem, 3vw, 2.25rem); letter-spacing: -.04em; }
.customer-ui .product-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.customer-ui .product-card { min-width: 0; min-height: 200px; display: grid; grid-template-columns: 150px minmax(0,1fr); overflow: hidden; border: 1px solid var(--food-line); border-radius: 20px; background: #fff; cursor: pointer; box-shadow: 0 8px 25px rgba(53,34,22,.05); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.customer-ui .product-card:hover { transform: translateY(-3px); border-color: #dccabe; box-shadow: var(--food-shadow-small); }
.customer-ui .product-photo-wrap { position: relative; min-height: 100%; overflow: hidden; background: #f2e8df; }
.customer-ui .product-photo { width: 100%; height: 100%; min-height: 200px; object-fit: cover; transition: transform .35s ease; }
.customer-ui .product-card:hover .product-photo { transform: scale(1.04); }
.customer-ui .product-options-badge { position: absolute; left: 10px; bottom: 10px; padding: 5px 8px; border-radius: 999px; background: rgba(23,18,15,.80); color: #fff; font-size: .67rem; font-weight: 900; backdrop-filter: blur(8px); }
.customer-ui .product-info { min-width: 0; padding: 17px; display: flex; flex-direction: column; }
.customer-ui .product-info h3 { margin: 0; font-size: 1.08rem; line-height: 1.25; letter-spacing: -.015em; }
.customer-ui .product-info > p { margin: 7px 0 0; color: var(--food-muted); font-size: .83rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.customer-ui .product-customizable { margin-top: 9px; color: var(--food-primary); font-size: .72rem; font-weight: 850; }
.customer-ui .product-bottom-row { margin-top: auto; padding-top: 13px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.customer-ui .product-bottom-row .price { color: var(--food-ink); font-size: 1.02rem; font-weight: 950; }
.customer-ui .add-circle { width: 39px; height: 39px; flex: 0 0 auto; display: grid; place-items: center; border: 0; border-radius: 13px; background: var(--food-primary); color: #fff; font-size: 1.45rem; line-height: 1; cursor: pointer; box-shadow: 0 8px 16px rgba(255,90,50,.20); }
.customer-ui .add-circle:hover { background: var(--food-primary-dark); transform: scale(1.05); }

/* Sticky cart */
.customer-ui .sticky-cart { position: sticky; top: 182px; overflow: hidden; padding: 0; border: 1px solid var(--food-line); border-radius: 22px; background: #fff; box-shadow: var(--food-shadow-small); }
.customer-ui .sticky-cart-head { padding: 18px 19px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--food-line); background: #fffaf6; }
.customer-ui .sticky-cart-head span:first-child { color: var(--food-primary); font-size: .7rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.customer-ui .sticky-cart-head h3 { margin: 3px 0 0; font-size: 1rem; }
.customer-ui .cart-bag { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--food-soft); }
.customer-ui #miniCart { padding: 8px 17px 17px; }
.customer-ui .cart-lines { display: grid; gap: 0; }
.customer-ui .cart-line { padding: 14px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; border-bottom: 1px solid var(--food-line); }
.customer-ui .cart-line:last-child { border-bottom: 0; }
.customer-ui .cart-line-main { min-width: 0; display: flex; gap: 12px; }
.customer-ui .cart-line-main > div { min-width: 0; }
.customer-ui .cart-line strong { font-size: .9rem; }
.customer-ui .cart-thumb { width: 82px; height: 82px; border-radius: 14px; object-fit: cover; }
.customer-ui .cart-modifiers { margin: 5px 0; color: var(--food-muted); font-size: .76rem; line-height: 1.42; }
.customer-ui .cart-line .muted { font-size: .72rem; }
.customer-ui .qty-controls { display: inline-flex; align-items: center; gap: 9px; margin-top: 8px; }
.customer-ui .qty-btn { width: 31px; height: 31px; min-height: 0; padding: 0; display: grid; place-items: center; border: 1px solid var(--food-line); border-radius: 10px; background: #fff; color: var(--food-dark); font-size: 1.05rem; font-weight: 900; cursor: pointer; }
.customer-ui .qty-btn:hover { border-color: var(--food-primary); color: var(--food-primary); }
.customer-ui .summary-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 11px 0; }
.customer-ui .summary-row.total { margin-top: 8px; padding-top: 15px; border-top: 1px solid var(--food-line); font-size: 1.05rem; font-weight: 950; }
.customer-ui .mini-empty { padding: 30px 10px; color: var(--food-muted); text-align: center; }
.customer-ui .mobile-cart-dock { display: none; }

/* Product modal */
.customer-ui .modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 22px; }
.customer-ui .modal.is-open { display: flex; }
.customer-ui .modal-backdrop { position: absolute; inset: 0; background: rgba(15,11,9,.73); backdrop-filter: blur(7px); }
.customer-ui .modal-dialog { position: relative; width: min(760px, 100%); max-height: calc(100vh - 44px); overflow-y: auto; padding: 24px; border-radius: 26px; background: #fff; box-shadow: 0 35px 100px rgba(0,0,0,.38); }
.customer-ui .modal-close { position: absolute; z-index: 5; top: 13px; right: 13px; width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(23,18,15,.88); color: #fff; font-size: 1.55rem; cursor: pointer; }
.customer-ui .modal-product-head { display: grid; grid-template-columns: 225px minmax(0,1fr); gap: 24px; align-items: center; margin-bottom: 25px; }
.customer-ui .modal-product-image { width: 225px; height: 205px; object-fit: cover; border-radius: 20px; background: #eee3da; }
.customer-ui .modal-kicker { color: var(--food-primary); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.customer-ui .modal-product-head h2 { margin: 6px 0 8px; font-size: 1.8rem; letter-spacing: -.04em; }
.customer-ui .modal-product-head p { margin: 0 0 10px; line-height: 1.55; }
.customer-ui .modal-base-price { font-size: 1.15rem; }
.customer-ui .modifier-group { margin: 0 0 22px; padding: 0; border: 0; }
.customer-ui .modifier-group legend { width: 100%; display: flex; justify-content: space-between; gap: 14px; margin-bottom: 10px; padding: 0; font-weight: 950; }
.customer-ui .modifier-group legend small { color: var(--food-muted); font-weight: 750; }
.customer-ui .modifier-options { display: grid; gap: 8px; }
.customer-ui .modifier-option { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 11px; align-items: center; padding: 13px 14px; border: 1px solid var(--food-line); border-radius: 13px; background: #fff; cursor: pointer; }
.customer-ui .modifier-option:hover { border-color: #d6c2b4; }
.customer-ui .modifier-option:has(input:checked) { border-color: var(--food-primary); background: #fff4ed; box-shadow: 0 0 0 3px rgba(255,90,50,.08); }
.customer-ui .modifier-option input { width: auto; min-height: 0; accent-color: var(--food-primary); }
.customer-ui .product-notes-field { margin-top: 18px; }
.customer-ui .modal-footer { position: sticky; bottom: -24px; margin: 22px -24px -24px; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border-top: 1px solid var(--food-line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.customer-ui .modal-qty { display: flex; align-items: center; gap: 12px; }
.customer-ui .modal-add-button { min-width: 290px; }
.customer-ui.modal-open, .customer-ui .modal-open { overflow: hidden; }

/* Page title/cart */
.customer-ui .page-title-band, .customer-ui .checkout-hero { padding: 58px 0 56px; background: #fff; border-bottom: 1px solid var(--food-line); }
.customer-ui .page-title-band h1, .customer-ui .checkout-hero h1 { margin: 8px 0 8px; font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -.06em; }
.customer-ui .page-title-band p, .customer-ui .checkout-hero p { margin: 0; color: var(--food-muted); }
.customer-ui .cart-section { padding-top: 44px; }
.customer-ui #cartPage .two-col { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 28px; align-items: start; }
.customer-ui #cartPage .form-card { padding: 22px; border: 1px solid var(--food-line); border-radius: 22px; background: #fff; box-shadow: var(--food-shadow-small); }
.customer-ui #cartPage .form-card h2 { margin: 0 0 10px; }
.customer-ui #cartPage .sticky-summary { position: sticky; top: 100px; }
.customer-ui #cartPage .empty { padding: 55px 25px; text-align: center; }

/* Checkout */
.customer-ui .checkout-layout { display: grid; grid-template-columns: minmax(0,1fr) 370px; gap: 30px; align-items: start; }
.customer-ui .checkout-form { display: grid; gap: 18px; }
.customer-ui .checkout-card { padding: 24px; border: 1px solid var(--food-line); border-radius: 23px; background: #fff; box-shadow: 0 9px 30px rgba(53,34,22,.05); }
.customer-ui .checkout-card-title { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.customer-ui .checkout-card-title > span { width: 39px; height: 39px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; background: var(--food-dark); color: #fff; font-weight: 950; }
.customer-ui .checkout-card-title h2 { margin: 0; font-size: 1.17rem; }
.customer-ui .checkout-card-title p { margin: 5px 0 0; color: var(--food-muted); font-size: .84rem; }
.customer-ui .form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.customer-ui .field.full { grid-column: 1/-1; }
.customer-ui .gps-checkout-card { position: relative; overflow: hidden; border-color: #ffd4c6; }
.customer-ui .gps-checkout-card::after { content: ""; position: absolute; z-index: 0; top: -80px; right: -70px; width: 210px; height: 210px; border-radius: 50%; background: rgba(255,90,50,.06); }
.customer-ui .gps-checkout-card > * { position: relative; z-index: 1; }
.customer-ui .gps-visual { display: flex; align-items: center; gap: 15px; margin: 4px 0 16px; padding: 15px; border-radius: 17px; background: var(--food-soft); }
.customer-ui .gps-visual strong, .customer-ui .gps-visual small { display: block; }
.customer-ui .gps-visual small { margin-top: 4px; color: var(--food-muted); }
.customer-ui .gps-pulse { position: relative; width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: #fff; font-size: 1.55rem; }
.customer-ui .gps-pulse::after { content: ""; position: absolute; inset: -6px; border: 2px solid rgba(255,90,50,.22); border-radius: 50%; animation: gpsPulse 1.8s ease-out infinite; }
@keyframes gpsPulse { from { transform: scale(.85); opacity: 1; } to { transform: scale(1.35); opacity: 0; } }
.customer-ui .btn-location { width: 100%; min-height: 56px; background: var(--food-primary); color: #fff; font-size: 1rem; }
.customer-ui .location-status { margin-top: 10px; padding: 11px 13px; border-radius: 12px; background: #faf6f2; color: var(--food-muted); font-size: .82rem; text-align: center; }
.customer-ui .location-status.status-open { background: #eaf9f0; color: #0b773c; font-weight: 850; }
.customer-ui .delivery-notes-field { margin-top: 17px; }
.customer-ui .demo-payment-note { padding: 14px 16px; border: 1px solid #f4dca6; border-radius: 14px; background: #fff9e9; color: #76530b; font-size: .82rem; line-height: 1.55; }
.customer-ui .btn-place-order { min-height: 58px; font-size: 1.02rem; }
.customer-ui .checkout-summary { position: sticky; top: 100px; }
.customer-ui .summary-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 1px solid var(--food-line); }
.customer-ui .summary-top > div > span { color: var(--food-primary); font-size: .7rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.customer-ui .summary-top h3 { margin: 3px 0 0; }
.customer-ui .summary-top > span { font-size: 1.65rem; }
.customer-ui .checkout-items { display: grid; gap: 0; }
.customer-ui .checkout-line { display: flex; justify-content: space-between; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--food-line); font-size: .86rem; }
.customer-ui .checkout-line > div { min-width: 0; }
.customer-ui .secure-note { margin-top: 13px; padding: 11px 12px; border-radius: 12px; background: #f7f5f3; color: var(--food-muted); font-size: .75rem; line-height: 1.45; }

/* Success */
.customer-ui .success-page { min-height: calc(100vh - 76px); padding: 65px 0; display: grid; place-items: center; background: radial-gradient(circle at 50% 0%, rgba(255,200,74,.18), transparent 35%), var(--food-bg); }
.customer-ui .success-card { width: min(720px,100%); margin: auto; padding: 45px; border: 1px solid var(--food-line); border-radius: 30px; background: #fff; text-align: center; box-shadow: var(--food-shadow); }
.customer-ui .success-icon { width: 92px; height: 92px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: #eaf9f0; color: var(--food-green); }
.customer-ui .success-icon span { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 50%; background: var(--food-green); color: #fff; font-size: 2rem; font-weight: 950; }
.customer-ui .success-card h1 { margin: 8px 0 10px; font-size: clamp(2rem,5vw,3.4rem); letter-spacing: -.055em; }
.customer-ui .success-card > p { color: var(--food-muted); }
.customer-ui .order-number-box { margin: 25px auto; padding: 16px; border: 1px dashed #e2cdbf; border-radius: 17px; background: #fffaf6; }
.customer-ui .order-number-box small, .customer-ui .order-number-box strong { display: block; }
.customer-ui .order-number-box small { color: var(--food-muted); }
.customer-ui .order-number-box strong { margin-top: 5px; font-size: 1.55rem; letter-spacing: .05em; }
.customer-ui .success-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-bottom: 25px; }
.customer-ui .success-facts span { padding: 13px 8px; border-radius: 13px; background: #f9f5f1; }
.customer-ui .success-facts small, .customer-ui .success-facts strong { display: block; }
.customer-ui .success-facts small { color: var(--food-muted); font-size: .72rem; }
.customer-ui .success-facts strong { margin-top: 4px; font-size: .86rem; }
.customer-ui .success-hint { margin: 18px 0 0 !important; font-size: .78rem; }

/* Status */
.customer-ui .status-hero { padding: 58px 0; background: var(--food-dark); color: #fff; text-align: center; }
.customer-ui .status-hero h1 { margin: 8px 0 4px; font-size: clamp(2.2rem,5vw,3.8rem); letter-spacing: -.045em; }
.customer-ui .status-hero p { margin: 0 0 18px; color: rgba(255,255,255,.65); }
.customer-ui .large-status-pill { display: inline-flex; padding: 10px 15px; border-radius: 999px; background: var(--food-primary); color: #fff; font-weight: 900; }
.customer-ui .status-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 28px; align-items: start; }
.customer-ui .status-main-card, .customer-ui .status-summary-card { padding: 24px; border: 1px solid var(--food-line); border-radius: 23px; background: #fff; box-shadow: var(--food-shadow-small); }
.customer-ui .status-summary-card { position: sticky; top: 100px; }
.customer-ui .order-timeline { display: grid; grid-template-columns: repeat(6,1fr); margin-bottom: 35px; }
.customer-ui .timeline-step { position: relative; min-width: 0; text-align: center; color: #ad9f95; }
.customer-ui .timeline-step::after { content: ""; position: absolute; top: 19px; left: 58%; width: 84%; height: 3px; background: #eee4dc; }
.customer-ui .timeline-step:last-child::after { display: none; }
.customer-ui .timeline-step > span { position: relative; z-index: 2; width: 40px; height: 40px; margin: 0 auto 8px; display: grid; place-items: center; border: 2px solid #e5d9d0; border-radius: 50%; background: #fff; font-size: .95rem; }
.customer-ui .timeline-step strong { display: block; font-size: .68rem; }
.customer-ui .timeline-step.done, .customer-ui .timeline-step.active { color: var(--food-ink); }
.customer-ui .timeline-step.done > span { border-color: var(--food-green); background: var(--food-green); color: #fff; }
.customer-ui .timeline-step.done::after { background: var(--food-green); }
.customer-ui .timeline-step.active > span { border-color: var(--food-primary); background: var(--food-primary); color: #fff; box-shadow: 0 0 0 6px rgba(255,90,50,.10); }
.customer-ui .status-items-head { display: flex; justify-content: space-between; align-items: end; padding-bottom: 14px; border-bottom: 1px solid var(--food-line); }
.customer-ui .status-items-head > div > span { color: var(--food-primary); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.customer-ui .status-items-head h2 { margin: 3px 0 0; }
.customer-ui .status-items-head > span { color: var(--food-muted); font-size: .82rem; }
.customer-ui .status-order-items { margin: 0; padding: 0; list-style: none; }
.customer-ui .status-order-items > li { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--food-line); }
.customer-ui .status-order-items > li:last-child { border-bottom: 0; }
.customer-ui .order-modifier { margin: 5px 0 0 7px; color: var(--food-muted); font-size: .8rem; }
.customer-ui .order-note { margin: 5px 0 0 7px; color: #a54921; font-size: .8rem; font-weight: 800; }
.customer-ui .payment-state { margin: 15px 0; padding: 13px; display: flex; align-items: center; gap: 11px; border-radius: 13px; background: #f9f5f1; }
.customer-ui .payment-state > span { font-size: 1.3rem; }
.customer-ui .payment-state small, .customer-ui .payment-state strong { display: block; }
.customer-ui .payment-state small { color: var(--food-muted); font-size: .7rem; }

/* Footer */
.customer-ui .site-footer { margin: 0; padding: 42px 0; border: 0; background: var(--food-dark); color: #fff; }
.customer-ui .footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 30px; align-items: start; }
.customer-ui .footer-brand { color: #fff; font-size: 1.2rem; font-weight: 950; text-decoration: none; }
.customer-ui .footer-brand span { color: var(--food-yellow); font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; }
.customer-ui .footer-grid p { max-width: 430px; margin: 10px 0 0; color: rgba(255,255,255,.58); font-size: .84rem; line-height: 1.6; }
.customer-ui .footer-links { display: flex; flex-direction: column; gap: 9px; }
.customer-ui .footer-links a { color: rgba(255,255,255,.68); text-decoration: none; font-size: .86rem; }
.customer-ui .footer-links a:hover { color: #fff; }
.customer-ui .footer-credit { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; color: rgba(255,255,255,.52); font-size: .78rem; }
.customer-ui .footer-credit strong { color: #fff; }

/* Responsive */
@media (max-width: 1100px) {
    .customer-ui .restaurant-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .customer-ui .menu-layout { grid-template-columns: minmax(0,1fr) 310px; gap: 24px; }
    .customer-ui .product-grid { grid-template-columns: 1fr; }
    .customer-ui .checkout-layout { grid-template-columns: minmax(0,1fr) 330px; }
}
@media (max-width: 900px) {
    .customer-ui .home-hero-grid { grid-template-columns: 1fr; min-height: 0; padding-top: 70px; text-align: center; }
    .customer-ui .home-hero-copy > p { margin-left: auto; margin-right: auto; }
    .customer-ui .hero-actions, .customer-ui .hero-benefits { justify-content: center; }
    .customer-ui .hero-visual { min-height: 430px; }
    .customer-ui .hero-phone { width: 230px; height: 430px; }
    .customer-ui .how-grid article { padding: 20px 15px; }
    .customer-ui .menu-toolbar { grid-template-columns: 230px minmax(0,1fr); }
    .customer-ui .menu-layout, .customer-ui .checkout-layout, .customer-ui .status-layout, .customer-ui #cartPage .two-col { grid-template-columns: 1fr; }
    .customer-ui .sticky-cart { display: none; }
    .customer-ui .checkout-summary, .customer-ui .status-summary-card, .customer-ui #cartPage .sticky-summary { position: static; }
    .customer-ui .mobile-cart-dock {
        position: fixed; z-index: 75; left: 16px; right: 16px; bottom: calc(14px + env(safe-area-inset-bottom));
        min-height: 64px; padding: 10px 16px; display: none; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 12px;
        border-radius: 19px; background: var(--food-dark); color: #fff; text-decoration: none; box-shadow: 0 20px 45px rgba(23,18,15,.34);
    }
    .customer-ui .mobile-cart-dock.visible { display: grid; }
    .customer-ui .mobile-cart-icon { position: relative; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; background: var(--food-primary); }
    .customer-ui .mobile-cart-icon b { position: absolute; top: -7px; right: -7px; min-width: 21px; height: 21px; padding: 0 5px; display: grid; place-items: center; border: 2px solid var(--food-dark); border-radius: 999px; background: #fff; color: var(--food-dark); font-size: .68rem; }
    .customer-ui .mobile-cart-dock small, .customer-ui .mobile-cart-dock strong { display: block; }
    .customer-ui .mobile-cart-dock small { color: rgba(255,255,255,.62); font-size: .7rem; }
    .customer-ui .mobile-cart-dock strong { margin-top: 2px; font-size: .94rem; }
    .customer-ui .mobile-cart-dock > i { font-style: normal; font-size: 1.25rem; }
    .customer-ui .restaurant-page { padding-bottom: 90px; }
    .customer-ui .order-timeline { grid-template-columns: repeat(3,1fr); gap: 20px 0; }
    .customer-ui .timeline-step:nth-child(3)::after { display: none; }
    .customer-ui .timeline-step:nth-child(4)::before { content: ""; position: absolute; right: 50%; bottom: calc(100% + 1px); width: 3px; height: 20px; background: #eee4dc; }
}
@media (max-width: 720px) {
    .customer-ui .container { width: min(100% - 28px, 1180px); }
    .customer-ui .nav-row { min-height: 68px; }
    .customer-ui .brand-mark { width: 38px; height: 38px; }
    .customer-ui .brand-copy { font-size: 1.05rem; }
    .customer-ui .brand-copy small { display: none; }
    .customer-ui .top-nav .nav-home span:last-child, .customer-ui .top-nav .nav-cart > span:nth-child(2) { display: none; }
    .customer-ui .top-nav a { padding: 8px 10px; }
    .customer-ui .home-hero-grid { padding-top: 55px; padding-bottom: 40px; }
    .customer-ui .home-hero-copy h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
    .customer-ui .hero-visual { min-height: 385px; transform: scale(.9); margin: -15px 0; }
    .customer-ui .how-grid { grid-template-columns: 1fr; padding: 10px 0; }
    .customer-ui .how-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--food-line); }
    .customer-ui .how-grid article:last-child { border-bottom: 0; }
    .customer-ui .section { padding: 55px 0; }
    .customer-ui .section-heading-row { align-items: stretch; flex-direction: column; }
    .customer-ui .restaurant-search { width: 100%; }
    .customer-ui .restaurant-grid { grid-template-columns: 1fr; }
    .customer-ui .restaurant-banner { min-height: 440px; }
    .customer-ui .restaurant-banner-shade { background: linear-gradient(0deg, rgba(18,13,10,.92) 0%, rgba(18,13,10,.55) 70%, rgba(18,13,10,.3)); }
    .customer-ui .restaurant-banner-copy { margin-top: 100px; }
    .customer-ui .restaurant-banner-copy h1 { font-size: 2.75rem; }
    .customer-ui .banner-facts { display: grid; grid-template-columns: repeat(2,1fr); }
    .customer-ui .banner-facts > span { min-width: 0; }
    .customer-ui .menu-toolbar-wrap { top: 68px; }
    .customer-ui .menu-toolbar { min-height: 0; padding: 12px 0 9px; grid-template-columns: 1fr; gap: 5px; }
    .customer-ui .category-nav { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; gap: 6px; }
    .customer-ui .category-nav a { padding: 8px 10px; font-size: .78rem; }
    .customer-ui .category-block { scroll-margin-top: 170px; }
    .customer-ui .product-card { grid-template-columns: 125px minmax(0,1fr); min-height: 174px; }
    .customer-ui .product-photo { min-height: 174px; }
    .customer-ui .product-info { padding: 14px; }
    .customer-ui .product-info > p { -webkit-line-clamp: 2; }
    .customer-ui .modal { padding: 0; align-items: flex-end; }
    .customer-ui .modal-dialog { width: 100%; max-height: 92vh; padding: 18px; border-radius: 25px 25px 0 0; }
    .customer-ui .modal-product-head { grid-template-columns: 105px minmax(0,1fr); gap: 14px; }
    .customer-ui .modal-product-image { width: 105px; height: 105px; border-radius: 16px; }
    .customer-ui .modal-product-head h2 { font-size: 1.3rem; }
    .customer-ui .modal-footer { bottom: -18px; margin: 20px -18px -18px; padding: 13px 18px calc(13px + env(safe-area-inset-bottom)); flex-direction: column; align-items: stretch; }
    .customer-ui .modal-qty { justify-content: center; }
    .customer-ui .modal-add-button { min-width: 0; width: 100%; }
    .customer-ui .page-title-band, .customer-ui .checkout-hero { padding: 40px 0; }
    .customer-ui .form-grid { grid-template-columns: 1fr; }
    .customer-ui .checkout-card, .customer-ui .status-main-card, .customer-ui .status-summary-card, .customer-ui #cartPage .form-card { padding: 18px; border-radius: 19px; }
    .customer-ui .success-card { padding: 30px 18px; }
    .customer-ui .success-facts { grid-template-columns: 1fr; }
    .customer-ui .footer-grid { grid-template-columns: 1fr; }
    .customer-ui .footer-credit { align-items: flex-start; }
}
@media (max-width: 440px) {
    .customer-ui .nav-row { gap: 8px; }
    .customer-ui .brand { gap: 7px; }
    .customer-ui .brand-copy { font-size: .95rem; }
    .customer-ui .top-nav { gap: 3px; }
    .customer-ui .top-nav a { padding: 7px 8px; }
    .customer-ui .hero-actions .btn { width: 100%; }
    .customer-ui .hero-note { width: 100%; }
    .customer-ui .hero-benefits { flex-direction: column; gap: 8px; }
    .customer-ui .restaurant-content { padding: 17px; }
    .customer-ui .product-card { grid-template-columns: 108px minmax(0,1fr); min-height: 165px; }
    .customer-ui .product-photo { min-height: 165px; }
    .customer-ui .product-info { padding: 12px; }
    .customer-ui .product-info h3 { font-size: .97rem; }
    .customer-ui .product-info > p { font-size: .77rem; }
    .customer-ui .product-customizable { font-size: .66rem; }
    .customer-ui .product-bottom-row { padding-top: 9px; }
    .customer-ui .add-circle { width: 35px; height: 35px; }
    .customer-ui .order-timeline { grid-template-columns: repeat(2,1fr); }
    .customer-ui .timeline-step:nth-child(2)::after, .customer-ui .timeline-step:nth-child(4)::after { display: none; }
    .customer-ui .timeline-step:nth-child(3)::after { display: block; }
}

/* v8 - Interactive delivery map */
.customer-ui .location-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.customer-ui .btn-map {
    width: 100%;
    min-height: 56px;
    background: var(--food-dark);
    color: #fff;
    font-size: 1rem;
}
.customer-ui .btn-map:hover { background: #2b211c; }
.customer-ui .btn-location:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}
.customer-ui .delivery-map-shell {
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid var(--food-line);
    border-radius: 19px;
    background: #f4eee8;
    box-shadow: 0 10px 28px rgba(53, 34, 22, .08);
}
.customer-ui .delivery-map {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 360px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.78), rgba(241,231,222,.86)),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(120,107,98,.08) 18px 20px);
}
.customer-ui .delivery-map.map-loading::before {
    content: attr(data-loading);
    position: absolute;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    color: var(--food-muted);
    font-weight: 900;
    background: rgba(255,248,241,.82);
}
.customer-ui .map-help {
    padding: 12px 14px;
    border-top: 1px solid var(--food-line);
    background: #fff;
    color: var(--food-muted);
    font-size: .82rem;
    line-height: 1.5;
}
.customer-ui .map-load-error {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 25px;
    text-align: center;
    color: #9f2d21;
    font-weight: 850;
}
.customer-ui .selected-location {
    margin-top: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid #bde7ca;
    border-radius: 14px;
    background: #edfaf1;
}
.customer-ui .selected-location small,
.customer-ui .selected-location strong { display: block; }
.customer-ui .selected-location small {
    margin-bottom: 3px;
    color: #4f7860;
    font-size: .72rem;
    font-weight: 800;
}
.customer-ui .selected-location strong {
    color: #176a38;
    font-size: .9rem;
}
.customer-ui .selected-location a {
    flex: 0 0 auto;
    color: #176a38;
    font-size: .8rem;
    font-weight: 900;
    text-decoration: none;
}
.customer-ui .selected-location a:hover { text-decoration: underline; }
.customer-ui .delivery-notes-field { margin-top: 16px; }
.customer-ui .delivery-map .leaflet-control-container { font-family: inherit; }
.customer-ui .delivery-map .leaflet-control-attribution { font-size: 10px; }
.customer-ui .delivery-map .leaflet-bar a { color: #211914; }

@media (max-width: 720px) {
    .customer-ui .location-methods { grid-template-columns: 1fr; }
    .customer-ui .delivery-map { height: 315px; }
    .customer-ui .selected-location { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 440px) {
    .customer-ui .delivery-map { height: 285px; }
}

/* =========================================================
   v9 - Final customer appearance polish
   ========================================================= */
.customer-ui {
    --food-radius-xl: 30px;
    --food-radius-lg: 22px;
    --food-radius-md: 16px;
    scroll-behavior: smooth;
}
.customer-ui .site-header { transition: background .25s ease, box-shadow .25s ease; }
.customer-ui .site-header.is-scrolled { background: rgba(23,18,15,.985); box-shadow: 0 12px 35px rgba(23,18,15,.24); }
.customer-ui .header-progress { position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; overflow: hidden; }
.customer-ui .header-progress i { display: block; width: 0; height: 100%; background: linear-gradient(90deg,var(--food-yellow),var(--food-primary)); transition: width .08s linear; }
.customer-ui .top-nav .nav-gps { color: var(--food-yellow); }
.customer-ui .top-nav .nav-gps:hover { color: #fff; }
.customer-ui .hero-note-link { color: rgba(255,255,255,.76); font-weight: 850; text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,.28); padding-bottom: 3px; }
.customer-ui .hero-note-link:hover { color: #fff; border-color: var(--food-yellow); }
.customer-ui .hero-trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.customer-ui .hero-trust-row > div { min-width: 205px; display: flex; align-items: center; gap: 11px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; background: rgba(255,255,255,.055); }
.customer-ui .hero-trust-row b { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.10); font-size: 1.1rem; }
.customer-ui .hero-trust-row span, .customer-ui .hero-trust-row strong, .customer-ui .hero-trust-row small { display: block; }
.customer-ui .hero-trust-row strong { color: #fff; font-size: .84rem; }
.customer-ui .hero-trust-row small { margin-top: 2px; color: rgba(255,255,255,.56); font-size: .68rem; }
.customer-ui .phone-appbar { height: 52px; padding: 18px 16px 8px; display: flex; justify-content: space-between; align-items: center; background: #fff; color: var(--food-dark); font-size: .75rem; font-weight: 950; }
.customer-ui .phone-appbar b { color: var(--food-primary); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }
.customer-ui .phone-map { height: 56%; }
.customer-ui .map-driver { position: absolute; z-index: 4; right: 48px; bottom: 46px; display: grid; place-items: center; width: 38px; height: 38px; border: 3px solid #fff; border-radius: 50%; background: var(--food-yellow); font-size: 1.1rem; box-shadow: 0 8px 18px rgba(0,0,0,.18); animation: driverMove 2.8s ease-in-out infinite; }
.customer-ui .phone-order-card small { margin-top: 10px; color: var(--food-primary); font-weight: 900; }
@keyframes driverMove { 0%,100% { transform: translate(-5px,4px); } 50% { transform: translate(10px,-8px); } }

.customer-ui .gps-story { padding: 82px 0; background: #fff; border-bottom: 1px solid var(--food-line); }
.customer-ui .gps-story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; align-items: center; }
.customer-ui .gps-story-copy h2 { margin: 9px 0 17px; font-size: clamp(2.25rem,4.2vw,4rem); line-height: 1.04; letter-spacing: -.06em; }
.customer-ui .gps-story-copy p { margin: 0 0 25px; color: var(--food-muted); font-size: 1.02rem; line-height: 1.75; }
.customer-ui .gps-use-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.customer-ui .gps-use-grid article { min-height: 180px; padding: 23px; border: 1px solid var(--food-line); border-radius: 23px; background: var(--food-bg); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.customer-ui .gps-use-grid article:hover { transform: translateY(-4px); border-color: #f3c1ad; box-shadow: var(--food-shadow-small); }
.customer-ui .gps-use-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 15px; background: #fff; font-size: 1.45rem; box-shadow: 0 8px 20px rgba(53,34,22,.08); }
.customer-ui .gps-use-grid strong, .customer-ui .gps-use-grid small { display: block; }
.customer-ui .gps-use-grid strong { font-size: 1rem; }
.customer-ui .gps-use-grid small { margin-top: 8px; color: var(--food-muted); line-height: 1.55; }

.customer-ui .restaurant-tools { margin: 25px 0 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.customer-ui .restaurant-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.customer-ui .filter-chip { min-height: 40px; padding: 8px 14px; border: 1px solid var(--food-line); border-radius: 999px; background: #fff; color: var(--food-muted); font: inherit; font-size: .82rem; font-weight: 850; cursor: pointer; transition: all .18s ease; }
.customer-ui .filter-chip:hover { border-color: #e7bca9; color: var(--food-primary); }
.customer-ui .filter-chip.active { border-color: var(--food-dark); background: var(--food-dark); color: #fff; box-shadow: 0 8px 18px rgba(23,18,15,.16); }
.customer-ui .restaurant-result-count { flex: 0 0 auto; color: var(--food-muted); font-size: .82rem; }
.customer-ui .restaurant-result-count b { color: var(--food-dark); }
.customer-ui .free-delivery-pill { position: absolute; left: 15px; bottom: 15px; z-index: 3; padding: 7px 10px; border-radius: 999px; background: #eaf9f0; color: #08733b; font-size: .7rem; font-weight: 950; box-shadow: 0 7px 16px rgba(0,0,0,.12); }
.customer-ui .restaurant-tile { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.customer-ui .restaurant-tile:hover { transform: translateY(-6px); border-color: #e8c4b4; box-shadow: 0 25px 60px rgba(53,34,22,.13); }
.customer-ui .restaurant-cover img { transition: transform .5s ease; }
.customer-ui .restaurant-tile:hover .restaurant-cover img { transform: scale(1.045); }
.customer-ui .restaurant-cta { min-height: 48px; border-radius: 14px; }

.customer-ui .restaurant-logo-badge { width: 82px; height: 82px; margin-bottom: 17px; object-fit: cover; border: 4px solid rgba(255,255,255,.9); border-radius: 23px; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.customer-ui .banner-menu-button { margin-top: 20px; }
.customer-ui .menu-intro { padding-top: 55px; display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.customer-ui .menu-intro h2 { margin: 7px 0 0; font-size: clamp(2rem,4vw,3.4rem); letter-spacing: -.055em; }
.customer-ui .menu-intro p { max-width: 430px; margin: 0; color: var(--food-muted); text-align: right; line-height: 1.6; }
.customer-ui .menu-intro p strong { color: var(--food-primary); font-size: 1.15rem; }
.customer-ui .menu-section { padding-top: 30px; }
.customer-ui .category-heading h2 { letter-spacing: -.035em; }
.customer-ui .product-card { outline: 0 solid rgba(255,90,50,0); transition: transform .2s ease, box-shadow .2s ease, outline-width .2s ease; }
.customer-ui .product-card:hover { transform: translateY(-3px); outline: 3px solid rgba(255,90,50,.08); box-shadow: 0 18px 38px rgba(53,34,22,.11); }
.customer-ui .product-options-badge { backdrop-filter: blur(8px); }

.customer-ui .order-steps { max-width: 590px; margin: 0 0 28px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 10px; }
.customer-ui .order-steps span { display: inline-flex; align-items: center; gap: 8px; color: #aa9c92; font-size: .78rem; font-weight: 900; white-space: nowrap; }
.customer-ui .order-steps em { font-style: normal; }
.customer-ui .order-steps span b { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--food-line); border-radius: 50%; background: #fff; color: #9b8c82; font-size: .72rem; }
.customer-ui .order-steps i { height: 2px; border-radius: 999px; background: var(--food-line); }
.customer-ui .order-steps span.active { color: var(--food-dark); }
.customer-ui .order-steps span.active b { border-color: var(--food-primary); background: var(--food-primary); color: #fff; box-shadow: 0 7px 16px rgba(255,90,50,.22); }
.customer-ui .order-steps span.done { color: var(--food-green); }
.customer-ui .order-steps span.done b { border-color: var(--food-green); background: var(--food-green); color: #fff; }
.customer-ui .order-steps i.done { background: var(--food-green); }
.customer-ui .success-steps { margin: 0 auto 30px; }
.customer-ui .gps-tip-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 0; }
.customer-ui .gps-tip-row span { padding: 7px 10px; border: 1px solid var(--food-line); border-radius: 999px; background: #fff; color: var(--food-muted); font-size: .72rem; font-weight: 800; }
.customer-ui .checkout-card { transition: border-color .2s ease, box-shadow .2s ease; }
.customer-ui .checkout-card:focus-within { border-color: #f3b49d; box-shadow: 0 12px 35px rgba(255,90,50,.08); }
.customer-ui .btn-place-order:disabled { opacity: .65; cursor: wait; transform: none; }
.customer-ui .cart-line { transition: background .18s ease; }
.customer-ui .cart-line:hover { background: #fffcf9; }

.customer-ui .site-footer { position: relative; overflow: hidden; }
.customer-ui .site-footer::before { content: ""; position: absolute; width: 320px; height: 320px; right: -140px; top: -180px; border-radius: 50%; background: rgba(255,90,50,.10); }
.customer-ui .footer-about { max-width: 500px; }
.customer-ui .footer-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 17px; }
.customer-ui .footer-pills span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.10); border-radius: 999px; color: rgba(255,255,255,.68); font-size: .7rem; font-weight: 800; }
.customer-ui .footer-links strong { display: block; margin-bottom: 12px; color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; }

.customer-ui .app-toast { position: fixed; z-index: 200; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom)); min-width: min(360px,calc(100% - 32px)); max-width: calc(100% - 32px); padding: 14px 18px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 16px; background: var(--food-dark); color: #fff; box-shadow: 0 18px 45px rgba(23,18,15,.32); font-size: .86rem; font-weight: 850; opacity: 0; visibility: hidden; transform: translate(-50%,20px); transition: opacity .22s ease, transform .22s ease, visibility .22s ease; }
.customer-ui .app-toast.show { opacity: 1; visibility: visible; transform: translate(-50%,0); }
.customer-ui .app-toast.success::before { content: "✓"; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--food-green); color: #fff; }
.customer-ui :focus-visible { outline: 3px solid rgba(255,90,50,.32); outline-offset: 3px; }

@media (max-width: 960px) {
    .customer-ui .top-nav .nav-gps { display: none; }
    .customer-ui .gps-story-grid { grid-template-columns: 1fr; gap: 35px; }
    .customer-ui .menu-intro { align-items: flex-start; flex-direction: column; }
    .customer-ui .menu-intro p { max-width: none; text-align: left; }
}
@media (max-width: 720px) {
    .customer-ui .hero-trust-row > div { min-width: 0; flex: 1 1 165px; }
    .customer-ui .gps-story { padding: 58px 0; }
    .customer-ui .gps-use-grid { grid-template-columns: 1fr; }
    .customer-ui .gps-use-grid article { min-height: 0; }
    .customer-ui .restaurant-tools { align-items: flex-start; flex-direction: column; }
    .customer-ui .restaurant-filters { width: calc(100% + 28px); margin-left: -14px; padding: 0 14px 5px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .customer-ui .restaurant-filters::-webkit-scrollbar { display: none; }
    .customer-ui .filter-chip { flex: 0 0 auto; }
    .customer-ui .menu-intro { padding-top: 38px; }
    .customer-ui .order-steps { width: 100%; margin-bottom: 23px; grid-template-columns: auto 1fr auto 1fr auto; gap: 5px; }
    .customer-ui .order-steps span { gap: 5px; font-size: .66rem; }
    .customer-ui .order-steps span b { width: 25px; height: 25px; }
    .customer-ui .app-toast { bottom: calc(92px + env(safe-area-inset-bottom)); }
}
@media (max-width: 440px) {
    .customer-ui .hero-trust-row { display: grid; grid-template-columns: 1fr; }
    .customer-ui .hero-trust-row > div { width: 100%; }
    .customer-ui .order-steps span { font-size: 0; }
    .customer-ui .order-steps span b { font-size: .72rem; }
    .customer-ui .gps-story-copy h2 { font-size: 2.25rem; }
}
@media (prefers-reduced-motion: reduce) {
    .customer-ui *, .customer-ui *::before, .customer-ui *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* v10 Loyalty */
.loyalty-checkout-card{position:relative;overflow:hidden}
.loyalty-checkout-card::after{content:"";position:absolute;width:180px;height:180px;border-radius:50%;right:-75px;top:-95px;background:rgba(245,158,11,.10);pointer-events:none}
.loyalty-check-row{display:grid;grid-template-columns:auto 1fr auto;gap:14px;align-items:center;padding:16px;border:1px solid #f3e3c4;border-radius:18px;background:linear-gradient(135deg,#fffaf0,#fff)}
.loyalty-icon{display:grid;place-items:center;width:48px;height:48px;border-radius:15px;background:#fff0c9;font-size:24px}
.loyalty-check-copy{display:flex;flex-direction:column;gap:3px}.loyalty-check-copy small{color:#766a61}
.loyalty-result{margin-top:12px}.loyalty-message{padding:11px 13px;border-radius:12px;background:#f7f4ef;color:#5f554d;font-size:.92rem}.loyalty-message.subtle{margin-top:8px;background:#fff9e9}
.loyalty-balance-box{display:grid;grid-template-columns:auto 1fr;gap:10px 12px;align-items:center;padding:15px;border-radius:16px;background:#211b17;color:#fff}
.loyalty-balance-box>span{font-size:26px}.loyalty-balance-box small{display:block;color:#cfc7c1}.loyalty-balance-box strong{display:block;font-size:1.2rem}.loyalty-balance-box p{grid-column:1/-1;margin:0;padding-top:9px;border-top:1px solid rgba(255,255,255,.12);font-size:.9rem;color:#eee7e1}
.loyalty-redeem-option{display:grid;grid-template-columns:auto 1fr;gap:12px;align-items:center;margin-top:12px;padding:15px;border:2px solid #efb33c;border-radius:16px;background:#fff8e5;cursor:pointer}
.loyalty-redeem-option input{position:absolute;opacity:0;pointer-events:none}.loyalty-checkbox-ui{display:grid;place-items:center;width:27px;height:27px;border-radius:9px;border:2px solid #d49b2b;color:transparent;background:#fff;font-weight:900}.loyalty-redeem-option input:checked+.loyalty-checkbox-ui{background:#e9a91f;color:#20160a}.loyalty-redeem-option strong,.loyalty-redeem-option small{display:block}.loyalty-redeem-option small{margin-top:2px;color:#79622f}
.loyalty-summary-discount{color:#9a6600}.loyalty-summary-discount span:last-child{font-weight:800}
.loyalty-public-card{max-width:680px;margin:0 auto}.loyalty-public-result{margin-top:18px}
.loyalty-hero-icon{font-size:56px;line-height:1;margin-bottom:12px}
.loyalty-order-note{margin:18px 0;padding:14px;border-radius:15px;background:#fff7df;border:1px solid #f0d18a;text-align:left}
@media(max-width:700px){.loyalty-check-row{grid-template-columns:auto 1fr}.loyalty-check-row .btn{grid-column:1/-1;width:100%}.loyalty-balance-box{padding:13px}}


/* v11 - Restaurant social sharing */
.restaurant-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
}
.restaurant-banner-actions .banner-menu-button { margin: 0; }
.btn-share-light {
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(255,255,255,.12);
    color: #fff;
    backdrop-filter: blur(12px);
}
.btn-share-light:hover { background: rgba(255,255,255,.22); color: #fff; }
.restaurant-share-panel {
    width: min(760px, 100%);
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    background: rgba(20,14,11,.48);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 55px rgba(0,0,0,.18);
}
.restaurant-share-copy { display: grid; gap: 3px; margin-bottom: 12px; }
.restaurant-share-copy strong { color: #fff; font-size: 1rem; }
.restaurant-share-copy small { color: rgba(255,255,255,.75); line-height: 1.45; }
.restaurant-share-buttons { display: flex; flex-wrap: wrap; gap: 9px; }
.social-share-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s ease, filter .18s ease;
}
.social-share-button:hover { transform: translateY(-1px); filter: brightness(1.06); }
.social-share-button.facebook { background: #1877f2; color: #fff; }
.social-share-button.instagram { background: linear-gradient(120deg,#f9ce34,#ee2a7b,#6228d7); color: #fff; }
.social-share-button.copy { background: #fff; color: #241913; }
.share-feedback {
    display: block;
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: #b9f6ca;
    font-weight: 800;
    font-size: .88rem;
    transition: all .2s ease;
}
.share-feedback.is-visible { max-height: 54px; min-height: 20px; opacity: 1; margin-top: 10px; }
.share-feedback.is-error { color: #fecaca; }
@media (max-width: 640px) {
    .restaurant-banner-actions { align-items: stretch; }
    .restaurant-banner-actions .btn { flex: 1 1 160px; }
    .restaurant-share-panel { padding: 14px; border-radius: 17px; }
    .restaurant-share-buttons { display: grid; grid-template-columns: 1fr 1fr; }
    .social-share-button.copy { grid-column: 1 / -1; }
}

/* v13 – ειδοποίηση πελάτη όταν πλησιάζει ο οδηγός */
.customer-tracking-tools {
    display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap;
    padding-top:18px;
}
#enableCustomerArrivalAlerts.is-enabled { background:#166534; border-color:#166534; }
.customer-arrival-banner {
    position:fixed; left:50%; top:16px; z-index:20000;
    transform:translate(-50%,-150%);
    width:min(720px,calc(100% - 20px));
    grid-template-columns:auto 1fr auto; align-items:center; gap:16px;
    padding:20px; border:4px solid #facc15; border-radius:22px;
    background:#111827; color:#fff; box-shadow:0 20px 70px rgba(0,0,0,.55);
    transition:transform .25s ease;
}
.customer-arrival-banner[hidden] { display:none; }
.customer-arrival-banner:not([hidden]) { display:grid; }
.customer-arrival-banner.is-visible { transform:translate(-50%,0); animation:customerArrivalPulse 1s ease-in-out 3; }
.customer-arrival-icon { font-size:54px; }
.customer-arrival-banner strong { color:#facc15; font-size:clamp(22px,4vw,38px); }
.customer-arrival-banner p { margin:5px 0 0; font-size:clamp(15px,2.2vw,20px); }
.customer-arrival-banner button { border:0; background:transparent; color:#fff; font-size:38px; cursor:pointer; }
@keyframes customerArrivalPulse { 50% { box-shadow:0 0 0 10px rgba(250,204,21,.28),0 20px 70px rgba(0,0,0,.55); } }
@media (max-width:600px) {
    .customer-arrival-banner { top:8px; padding:14px; gap:10px; }
    .customer-arrival-icon { font-size:38px; }
}

/* v14 — εμφάνιση προσφορών στο μενού */
.customer-ui .product-offer-badge { position:absolute; top:10px; left:10px; z-index:2; padding:7px 10px; border-radius:999px; background:#ef4444; color:#fff; font-size:.76rem; font-weight:950; box-shadow:0 8px 18px rgba(239,68,68,.28); }
.customer-ui .product-offer-copy { margin-top:7px; color:#c2410c; font-size:.78rem; font-weight:900; }
.customer-ui .product-price-stack { display:flex; align-items:baseline; gap:7px; flex-wrap:wrap; }
.customer-ui .product-price-stack del { color:#9a8d84; font-size:.82rem; font-weight:750; }
.customer-ui .product-bottom-row .price.is-offer-price { color:#dc2626; font-size:1.12rem; }
.customer-ui .modal-base-price.has-offer { display:flex; align-items:center; gap:9px; flex-wrap:wrap; }
.customer-ui .modal-base-price.has-offer del { color:#9a8d84; font-size:.9rem; }
.customer-ui .modal-base-price.has-offer span { color:#dc2626; font-size:1.35rem; }
.customer-ui .modal-base-price.has-offer small { padding:4px 7px; border-radius:999px; background:#fee2e2; color:#b91c1c; font-size:.72rem; font-weight:950; }

/* v15: customer combo cards */
.combo-category-block { border-radius:26px; padding:22px; background:linear-gradient(135deg,#fff7ed,#fffbeb); border:1px solid rgba(249,115,22,.22); }
.combo-heading h2 { color:#9a3412; }
.combo-product-card { border-color:rgba(249,115,22,.30); box-shadow:0 14px 36px rgba(154,52,18,.10); }
.combo-offer-badge { position:absolute; top:12px; left:12px; z-index:2; border-radius:999px; padding:7px 11px; background:#f97316; color:#fff; font-size:11px; font-weight:900; letter-spacing:.08em; box-shadow:0 6px 16px rgba(124,45,18,.25); }
.combo-includes-copy { margin:8px 0 2px; color:#9a3412; font-size:13px; font-weight:750; line-height:1.45; }
.combo-modal-includes { margin:0 0 16px; padding:16px; border-radius:16px; background:#fff7ed; border:1px solid #fed7aa; }
.combo-modal-includes strong { display:block; margin-bottom:8px; color:#9a3412; }
.combo-modal-includes div { padding:4px 0; color:#7c2d12; }
.cart-combo-items { padding:7px 9px; margin-bottom:5px; border-radius:10px; background:#fff7ed; color:#9a3412; }
@media (max-width:700px) { .combo-category-block { padding:14px; border-radius:18px; } }

/* v20 - opening hours */
.availability-pill.closed{background:#fff1f2!important;color:#b42318!important;border-color:#fecdd3!important}
.availability-pill.closed i{background:#d92d20!important;box-shadow:0 0 0 4px rgba(217,45,32,.12)!important}
.store-hours-closed-notice{margin:14px 0;padding:12px 14px;border-radius:14px;background:rgba(127,29,29,.88);color:#fff;max-width:760px;line-height:1.45}
.add-circle:disabled{opacity:.42;cursor:not-allowed;filter:grayscale(1)}


/* v21 - preparation ETA */
.customer-ui .preparation-eta-box {
    display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; padding: 10px 16px;
    border-radius: 16px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: #fff; text-align: left; backdrop-filter: blur(6px);
}
.customer-ui .preparation-eta-box[hidden] { display: none !important; }
.customer-ui .preparation-eta-box > span { font-size: 1.5rem; }
.customer-ui .preparation-eta-box small { display:block; opacity:.72; font-size:.76rem; text-transform:uppercase; letter-spacing:.05em; }
.customer-ui .preparation-eta-box strong { display:block; margin-top:2px; font-size:1.05rem; }

/* v22 OTP */
.otp-checkout-card.hidden{display:none}.otp-row{display:flex;gap:10px;align-items:center;flex-wrap:wrap}.otp-row input{max-width:190px;font-size:28px;font-weight:800;letter-spacing:.18em;text-align:center}.otp-checkout-card.is-success{border-color:#22c55e}.otp-checkout-card.is-error{border-color:#ef4444}@media(max-width:560px){.otp-row input,.otp-row .btn{width:100%;max-width:none}}


/* v24 - home store map */
.customer-ui .home-store-map-section {
    position: relative;
    height: calc(100svh - 74px);
    min-height: 590px;
    max-height: 900px;
    overflow: hidden;
    background: #e9e5df;
    border-bottom: 1px solid rgba(35,24,18,.08);
}
.customer-ui .home-store-map { position:absolute; inset:0; z-index:1; }
.customer-ui .home-store-map::after {
    content:""; position:absolute; inset:0; z-index:400; pointer-events:none;
    background:linear-gradient(90deg,rgba(23,18,15,.22),transparent 42%);
}
.customer-ui .home-store-map-panel {
    position:absolute; z-index:700; top:50%; left:max(20px,calc((100% - 1220px)/2));
    transform:translateY(-50%); width:min(470px,calc(100% - 40px));
    padding:28px; border-radius:26px; color:#fff;
    background:rgba(23,18,15,.90); border:1px solid rgba(255,255,255,.14);
    box-shadow:0 24px 70px rgba(0,0,0,.30); backdrop-filter:blur(16px);
}
.customer-ui .home-map-eyebrow {
    display:inline-flex; align-items:center; gap:8px; padding:7px 11px; border-radius:999px;
    background:rgba(255,255,255,.10); color:#fff3cc; font-size:.78rem; font-weight:900; letter-spacing:.05em;
}
.customer-ui .home-store-map-panel h1 { margin:16px 0 12px; font-size:clamp(2.3rem,4.3vw,4.5rem); line-height:.96; letter-spacing:-.055em; }
.customer-ui .home-store-map-panel p { margin:0; max-width:420px; color:rgba(255,255,255,.76); line-height:1.65; }
.customer-ui .home-map-actions { display:flex; gap:9px; flex-wrap:wrap; margin-top:20px; }
.customer-ui .home-map-actions .btn { min-height:44px; }
.customer-ui .home-map-actions .btn-light { background:#fff; color:#211914; border-color:#fff; }
.customer-ui .home-map-actions button:disabled { opacity:.55; cursor:wait; }
.customer-ui .home-map-legend { display:flex; gap:8px; flex-wrap:wrap; margin-top:16px; }
.customer-ui .home-map-legend > span { display:inline-flex; align-items:center; gap:6px; padding:5px 8px; border-radius:999px; background:rgba(255,255,255,.09); color:rgba(255,255,255,.88); font-size:.72rem; font-weight:800; }
.customer-ui .home-map-legend i { width:20px; height:20px; display:grid; place-items:center; border-radius:7px; font-style:normal; font-size:12px; background:#ffb000; }
.customer-ui .home-map-legend .home-map-legend-qr-order { background:#f97316; color:#fff; }
.customer-ui .home-map-legend .home-map-legend-qr-catalog { background:#2563eb; color:#fff; }
.customer-ui .home-map-meta { margin-top:14px; display:flex; align-items:baseline; gap:6px; flex-wrap:wrap; color:rgba(255,255,255,.72); font-size:.88rem; }
.customer-ui .home-map-meta strong { color:#fff; font-size:1.15rem; }
.customer-ui .home-map-meta small { width:100%; margin-top:4px; color:rgba(255,255,255,.55); line-height:1.4; }
.customer-ui .home-map-message { min-height:20px; margin-top:8px; color:#fde68a; font-size:.82rem; font-weight:750; }
.customer-ui .home-map-message.is-error { color:#fecaca; }
.customer-ui .home-store-map .leaflet-control-container { font-family:inherit; }
.customer-ui .home-store-map .leaflet-control-attribution { font-size:10px; }
.customer-ui .home-store-map .leaflet-control-zoom { border:0; box-shadow:0 10px 28px rgba(0,0,0,.20); }
.customer-ui .home-store-map .leaflet-control-zoom a { color:#211914; border:0; }
.customer-ui .allonline-store-marker-wrap { background:transparent; border:0; }
.customer-ui .allonline-store-marker {
    width:44px; height:44px; display:grid; place-items:center; position:relative;
    border:4px solid #fff; border-radius:15px 15px 15px 4px; transform:rotate(-45deg);
    background:#ffb000; box-shadow:0 8px 24px rgba(0,0,0,.30);
}
.customer-ui .allonline-store-marker::after { content:""; position:absolute; inset:4px; border-radius:10px; border:1px solid rgba(0,0,0,.08); }
.customer-ui .allonline-store-marker b { transform:rotate(45deg); font-size:20px; line-height:1; }
.customer-ui .allonline-store-marker.is-qr-order { background:#f97316; }
.customer-ui .allonline-store-marker.is-qr-catalog { background:#2563eb; }
.customer-ui .allonline-store-marker .allonline-qr-marker-icon { width:23px; height:23px; display:grid; place-items:center; color:#fff; }
.customer-ui .allonline-store-marker .allonline-qr-marker-icon svg { width:23px; height:23px; display:block; }
.customer-ui .allonline-store-marker.is-closed { filter:grayscale(1); opacity:.72; }
.customer-ui .leaflet-popup-content-wrapper { border-radius:18px; box-shadow:0 18px 45px rgba(0,0,0,.22); }
.customer-ui .leaflet-popup-content { margin:14px; }
.customer-ui .allonline-map-popup { min-width:205px; font-family:inherit; color:#211914; }
.customer-ui .allonline-map-popup-title { display:flex; align-items:center; gap:10px; }
.customer-ui .allonline-map-popup-title > span { width:38px; height:38px; display:grid; place-items:center; border-radius:12px; background:#fff4cf; font-size:20px; }
.customer-ui .allonline-map-popup-title > span.is-qr { color:#fff; background:#f97316; }
.customer-ui .allonline-map-popup-title > span.is-qr.is-qr-catalog { background:#2563eb; }
.customer-ui .allonline-map-popup-title > span.is-qr svg { width:22px; height:22px; display:block; }
.customer-ui .allonline-map-popup-title strong { display:block; font-size:1rem; }
.customer-ui .allonline-map-mode { display:inline-flex; align-items:center; gap:6px; margin-top:10px; padding:5px 8px; border-radius:999px; font-size:.72rem; font-weight:900; background:#fff2e8; color:#9a3412; }
.customer-ui .allonline-map-mode.is-qr-catalog { background:#eff6ff; color:#1d4ed8; }
.customer-ui .allonline-map-mode-icon { width:14px; height:14px; display:grid; place-items:center; }
.customer-ui .allonline-map-mode-icon svg { width:14px; height:14px; display:block; }
.customer-ui .allonline-map-popup-title small { display:block; margin-top:2px; color:#7c6e65; }
.customer-ui .allonline-map-status { display:inline-flex; margin-top:11px; padding:5px 8px; border-radius:999px; background:#ecfdf3; color:#166534; font-size:.74rem; font-weight:900; }
.customer-ui .allonline-map-status.is-closed { background:#fff1f2; color:#b42318; }
.customer-ui .allonline-map-services { display:flex; gap:7px; align-items:center; flex-wrap:wrap; margin-top:9px; color:#6b5d55; font-size:.78rem; }
.customer-ui .allonline-map-open-store { display:flex; align-items:center; justify-content:center; margin-top:12px; min-height:40px; padding:8px 12px; border-radius:12px; background:#211914; color:#fff; font-weight:900; text-decoration:none; }
@media (max-width: 760px) {
    .customer-ui .home-store-map-section { height:calc(100svh - 66px); min-height:610px; max-height:none; }
    .customer-ui .home-store-map-panel {
        top:auto; left:12px; right:12px; bottom:14px; transform:none; width:auto; padding:18px; border-radius:20px;
    }
    .customer-ui .home-store-map-panel h1 { margin:10px 0 8px; font-size:clamp(2rem,9vw,3.2rem); }
    .customer-ui .home-store-map-panel p { font-size:.9rem; line-height:1.5; }
    .customer-ui .home-map-actions { margin-top:13px; gap:7px; }
    .customer-ui .home-map-actions .btn { flex:1 1 135px; padding:9px 11px; font-size:.84rem; }
    .customer-ui .home-map-meta { margin-top:12px; }
    .customer-ui .home-store-map .leaflet-control-zoom { margin-bottom:245px; }
    .customer-ui .home-store-map::after { background:linear-gradient(0deg,rgba(23,18,15,.16),transparent 42%); }
}
@media (max-width: 430px) {
    .customer-ui .home-map-actions .btn { flex:1 1 100%; }
    .customer-ui .home-store-map .leaflet-control-zoom { margin-bottom:325px; }
}

/* v26 QR-only catalog */
.customer-ui.qr-catalog-only .menu-layout { grid-template-columns: minmax(0,1fr); }
.customer-ui.qr-catalog-only .product-card { cursor: default; }
.customer-ui.qr-store-page .site-header { backdrop-filter: blur(14px); }

/* v29.1 – Compact store header
   Keeps the store identity/cover but brings the catalog much closer to the first viewport. */
.customer-ui .restaurant-banner {
    min-height: 0;
}
.customer-ui .restaurant-banner-inner {
    padding-top: 20px;
    padding-bottom: 26px;
}
.customer-ui .restaurant-banner-copy {
    max-width: 760px;
    margin-top: 20px;
}
.customer-ui .restaurant-logo-badge {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
    border-width: 3px;
    border-radius: 18px;
}
.customer-ui .availability-pill.light {
    padding: 6px 9px;
    font-size: .70rem;
}
.customer-ui .restaurant-banner-copy h1 {
    margin: 9px 0 5px;
    font-size: clamp(2.05rem, 4.2vw, 3.45rem);
    line-height: 1.02;
    letter-spacing: -.05em;
}
.customer-ui .restaurant-banner-copy > p {
    max-width: 650px;
    font-size: .92rem;
    line-height: 1.48;
}
.customer-ui .banner-facts {
    gap: 7px;
    margin-top: 14px;
}
.customer-ui .banner-facts > span {
    min-width: 108px;
    padding: 7px 10px;
    column-gap: 7px;
    border-radius: 11px;
}
.customer-ui .banner-facts b { font-size: .92rem; }
.customer-ui .banner-facts small { font-size: .60rem; }
.customer-ui .banner-facts strong { font-size: .76rem; }
.customer-ui .store-hours-closed-notice {
    margin: 10px 0;
    padding: 9px 12px;
    border-radius: 11px;
    font-size: .84rem;
    line-height: 1.35;
}
.customer-ui .restaurant-banner-actions {
    gap: 8px;
    margin-top: 13px;
}
.customer-ui .restaurant-banner-actions .btn {
    min-height: 40px;
    padding: 8px 14px;
    font-size: .83rem;
}
.customer-ui .restaurant-share-panel {
    width: min(760px, 100%);
    margin-top: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 14px;
}
.customer-ui .restaurant-share-copy {
    min-width: 0;
    flex: 1 1 auto;
    gap: 1px;
    margin-bottom: 0;
}
.customer-ui .restaurant-share-copy strong { font-size: .86rem; }
.customer-ui .restaurant-share-copy small {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: .72rem;
    line-height: 1.3;
}
.customer-ui .restaurant-share-buttons {
    flex: 0 0 auto;
    gap: 6px;
}
.customer-ui .social-share-button {
    min-height: 34px;
    padding: 6px 11px;
    font-size: .74rem;
}
.customer-ui .share-feedback.is-visible {
    position: absolute;
    transform: translateY(36px);
}
.customer-ui .menu-toolbar {
    min-height: 68px;
}
.customer-ui .category-nav a {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* QR stores are intended to reach the catalog especially quickly. */
.customer-ui.qr-store-page .restaurant-banner-inner {
    padding-top: 14px;
    padding-bottom: 20px;
}
.customer-ui.qr-store-page .restaurant-banner-copy {
    margin-top: 12px;
}
.customer-ui.qr-store-page .restaurant-logo-badge {
    width: 58px;
    height: 58px;
    margin-bottom: 8px;
}
.customer-ui.qr-store-page .restaurant-banner-copy h1 {
    font-size: clamp(2rem, 4vw, 3.15rem);
}

@media (max-width: 720px) {
    .customer-ui .restaurant-banner { min-height: 0; }
    .customer-ui .restaurant-banner-inner {
        padding-top: 13px;
        padding-bottom: 17px;
    }
    .customer-ui .restaurant-banner-copy,
    .customer-ui.qr-store-page .restaurant-banner-copy {
        margin-top: 16px;
    }
    .customer-ui .restaurant-logo-badge,
    .customer-ui.qr-store-page .restaurant-logo-badge {
        width: 54px;
        height: 54px;
        margin-bottom: 7px;
        border-radius: 15px;
    }
    .customer-ui .restaurant-banner-copy h1,
    .customer-ui.qr-store-page .restaurant-banner-copy h1 {
        margin-top: 7px;
        font-size: clamp(1.95rem, 9vw, 2.55rem);
    }
    .customer-ui .restaurant-banner-copy > p {
        font-size: .84rem;
        line-height: 1.4;
    }
    .customer-ui .banner-facts {
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        margin: 11px -14px 0;
        padding: 0 14px 4px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .customer-ui .banner-facts::-webkit-scrollbar { display: none; }
    .customer-ui .banner-facts > span {
        flex: 0 0 auto;
        min-width: 103px;
        padding: 7px 9px;
    }
    .customer-ui .store-hours-closed-notice {
        margin: 8px 0;
        padding: 8px 10px;
        font-size: .78rem;
    }
    .customer-ui .restaurant-banner-actions {
        margin-top: 10px;
    }
    .customer-ui .restaurant-banner-actions .btn {
        min-height: 38px;
        padding: 7px 10px;
        font-size: .78rem;
    }
    .customer-ui .restaurant-share-panel {
        margin-top: 8px;
        padding: 9px 10px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
        border-radius: 12px;
    }
    .customer-ui .restaurant-share-copy small { display: none; }
    .customer-ui .restaurant-share-buttons {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        gap: 5px;
    }
    .customer-ui .social-share-button,
    .customer-ui .social-share-button.copy {
        min-width: 0;
        flex: 1 1 0;
        grid-column: auto;
        padding: 6px 7px;
        font-size: .68rem;
    }
    .customer-ui .menu-toolbar-wrap { top: 68px; }
    .customer-ui .menu-toolbar {
        padding-top: 8px;
        padding-bottom: 7px;
    }
}

@media (max-width: 430px) {
    .customer-ui .restaurant-banner-copy,
    .customer-ui.qr-store-page .restaurant-banner-copy { margin-top: 11px; }
    .customer-ui .restaurant-banner-copy h1,
    .customer-ui.qr-store-page .restaurant-banner-copy h1 { font-size: 2rem; }
    .customer-ui .restaurant-share-copy { display: none; }
    .customer-ui .restaurant-share-panel { padding: 7px; }
}


/* v29.2 — Desktop category sidebar */
.customer-ui .menu-category-sidebar { display: none; }

@media (min-width: 1101px) {
    .customer-ui .menu-toolbar {
        min-height: 64px;
        grid-template-columns: minmax(280px, 520px);
        justify-content: center;
    }
    .customer-ui .menu-toolbar > .category-nav { display: none; }
    .customer-ui .menu-search { width: 100%; }

    .customer-ui .menu-layout.has-cart {
        width: min(1380px, calc(100% - 40px));
        grid-template-columns: 190px minmax(0, 1fr) 300px;
        gap: 22px;
    }
    .customer-ui .menu-layout.catalog-only-layout {
        width: min(1220px, calc(100% - 40px));
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 24px;
    }
    .customer-ui .menu-category-sidebar {
        display: block;
        min-width: 0;
        position: sticky;
        top: 148px;
        align-self: start;
        height: calc(100vh - 168px);
        z-index: 18;
    }
    .customer-ui .menu-category-sidebar-card {
        position: relative;
        top: auto;
        display: flex;
        flex-direction: column;
        height: 100%;
        max-height: none;
        overflow: hidden;
        border: 1px solid var(--food-line);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 10px 28px rgba(53,34,22,.06);
    }
    .customer-ui .menu-category-sidebar-head {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 15px 15px 12px;
        border-bottom: 1px solid var(--food-line);
        color: var(--food-ink);
        font-size: .9rem;
    }
    .customer-ui .menu-category-sidebar-head span {
        color: var(--food-primary);
        font-size: 1rem;
    }
    .customer-ui .category-nav.category-nav-vertical {
        position: static;
        display: flex;
        flex: 1 1 auto;
        min-height: 0;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 4px;
        max-height: none;
        margin: 0;
        padding: 9px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        scroll-padding-block: 10px;
        background: transparent;
        scrollbar-width: thin;
    }
    .customer-ui .category-nav.category-nav-vertical a {
        width: 100%;
        white-space: normal;
        padding: 10px 11px;
        border: 0;
        border-radius: 11px;
        background: transparent;
        color: var(--food-muted);
        font-size: .8rem;
        line-height: 1.25;
        text-align: left;
    }
    .customer-ui .category-nav.category-nav-vertical a:hover {
        background: var(--food-soft);
        color: var(--food-ink);
    }
    .customer-ui .category-nav.category-nav-vertical a.active {
        background: var(--food-dark);
        color: #fff;
        box-shadow: 0 7px 16px rgba(34,25,20,.12);
    }
    .customer-ui .menu-layout.has-cart .sticky-cart {
        top: 158px;
    }
    @media (max-height: 700px) {
        .customer-ui .menu-category-sidebar {
            top: 118px;
            height: calc(100vh - 132px);
        }
    }
}

@media (min-width: 1101px) and (max-width: 1340px) {
    .customer-ui .menu-layout.has-cart .product-grid { grid-template-columns: 1fr; }
}

/* v30 — attribution for CC BY / BY-SA product photos */
.product-photo-wrap{position:relative}
.product-photo-credit{position:absolute;left:8px;bottom:8px;z-index:3;border-radius:999px;padding:3px 7px;background:rgba(17,24,39,.78);color:#fff!important;font-size:.64rem;font-weight:800;text-decoration:none;line-height:1.2}
.product-photo-credit:hover{background:rgba(17,24,39,.95)}


/* v30.3 — optional public menu without product photos */
.customer-ui .menu-layout.menu-no-images .product-photo-wrap { display:none; }
.customer-ui .menu-layout.menu-no-images .product-card {
    grid-template-columns:minmax(0,1fr);
    min-height:132px;
}
.customer-ui .menu-layout.menu-no-images .product-info { padding:18px 20px; }
.customer-ui .menu-layout.menu-no-images .product-info > p { -webkit-line-clamp:4; }
.customer-ui .menu-layout.menu-no-images .product-grid { gap:12px; }
.customer-ui .menu-layout.menu-no-images .combo-product-card { min-height:142px; }
@media (max-width:700px) {
    .customer-ui .menu-layout.menu-no-images .product-card { min-height:118px; }
    .customer-ui .menu-layout.menu-no-images .product-info { padding:14px 15px; }
}

.menu-no-images-modal .modal-product-head { grid-template-columns:minmax(0,1fr); }
.menu-no-images-modal .modal-product-image { display:none; }

/* v30.4 — QR catalog: show extras/options directly inside the product card */
.customer-ui.qr-catalog-only .qr-catalog-extras {
    margin-top:9px;
    padding-top:8px;
    border-top:1px dashed var(--food-line);
    color:var(--food-muted);
    font-size:.70rem;
    line-height:1.42;
}
.customer-ui.qr-catalog-only .qr-catalog-extra-line + .qr-catalog-extra-line { margin-top:3px; }
.customer-ui.qr-catalog-only .qr-catalog-extra-group {
    color:var(--food-ink);
    font-weight:850;
}
.customer-ui.qr-catalog-only .qr-catalog-extra-options { font-weight:650; }
.customer-ui.qr-catalog-only .product-bottom-row { padding-top:10px; }
@media (max-width:700px) {
    .customer-ui.qr-catalog-only .qr-catalog-extras { font-size:.66rem; line-height:1.38; }
}

/* v30.6 — mobile hamburger category menu */
.customer-ui .menu-category-toggle { display:none; }

@media (max-width:1100px) {
    .customer-ui .menu-toolbar {
        position:relative;
        grid-template-columns:auto minmax(0,1fr);
        gap:8px 10px;
        align-items:center;
    }
    .customer-ui .menu-category-toggle {
        display:inline-flex;
        align-items:center;
        justify-content:center;
        gap:8px;
        min-height:46px;
        padding:0 13px;
        border:1px solid var(--food-line);
        border-radius:13px;
        background:#fff;
        color:var(--food-ink);
        font:inherit;
        font-size:.82rem;
        font-weight:900;
        cursor:pointer;
        box-shadow:0 5px 14px rgba(53,34,22,.05);
    }
    .customer-ui .menu-category-toggle:hover,
    .customer-ui .menu-category-toggle.is-open {
        border-color:var(--food-dark);
        background:var(--food-dark);
        color:#fff;
    }
    .customer-ui .menu-category-toggle-icon {
        width:18px;
        display:grid;
        gap:3px;
    }
    .customer-ui .menu-category-toggle-icon i {
        display:block;
        width:18px;
        height:2px;
        border-radius:99px;
        background:currentColor;
        transition:transform .18s ease, opacity .18s ease;
    }
    .customer-ui .menu-category-toggle.is-open .menu-category-toggle-icon i:nth-child(1) { transform:translateY(5px) rotate(45deg); }
    .customer-ui .menu-category-toggle.is-open .menu-category-toggle-icon i:nth-child(2) { opacity:0; }
    .customer-ui .menu-category-toggle.is-open .menu-category-toggle-icon i:nth-child(3) { transform:translateY(-5px) rotate(-45deg); }
    .customer-ui .menu-search { grid-column:2; min-width:0; }
    .customer-ui #categoryNav {
        position:absolute;
        top:calc(100% + 6px);
        left:0;
        right:0;
        z-index:90;
        display:none;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:6px;
        max-height:min(58vh,430px);
        margin:0;
        padding:9px;
        overflow-x:hidden;
        overflow-y:auto;
        overscroll-behavior:contain;
        border:1px solid var(--food-line);
        border-radius:16px;
        background:#fff;
        box-shadow:0 18px 42px rgba(35,24,18,.18);
    }
    .customer-ui #categoryNav.is-open { display:grid; }
    .customer-ui #categoryNav a {
        width:100%;
        min-width:0;
        display:flex;
        align-items:center;
        padding:10px 11px;
        border:0;
        border-radius:11px;
        background:var(--food-soft);
        color:var(--food-ink);
        font-size:.80rem;
        line-height:1.25;
        white-space:normal;
    }
    .customer-ui #categoryNav a.active {
        background:var(--food-dark);
        color:#fff;
    }
}

@media (max-width:560px) {
    .customer-ui .menu-category-toggle {
        min-height:42px;
        padding:0 11px;
        font-size:.76rem;
    }
    .customer-ui .menu-search input { min-height:42px; }
    .customer-ui #categoryNav { grid-template-columns:1fr; max-height:55vh; }
}

@media (max-width:390px) {
    .customer-ui .menu-category-toggle { padding:0 10px; }
    .customer-ui .menu-category-toggle > span:last-child { display:none; }
}


/* v30.7 - Mobile home map: keep information panel below the map instead of covering it */
@media (max-width: 760px) {
    .customer-ui .home-store-map-section {
        height: auto;
        min-height: 0;
        max-height: none;
        overflow: visible;
        background: var(--food-dark);
    }
    .customer-ui .home-store-map {
        position: relative;
        inset: auto;
        width: 100%;
        height: 54svh;
        min-height: 360px;
        max-height: 560px;
    }
    .customer-ui .home-store-map-panel {
        position: relative;
        z-index: 2;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: auto;
        margin: 0;
        padding: 18px 14px calc(20px + env(safe-area-inset-bottom));
        border: 0;
        border-radius: 0;
        background: var(--food-dark);
        box-shadow: none;
        backdrop-filter: none;
    }
    .customer-ui .home-store-map-panel h1 {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }
    .customer-ui .home-store-map .leaflet-control-zoom {
        margin-bottom: 10px;
    }
    .customer-ui .home-store-map::after {
        background: linear-gradient(0deg, rgba(23,18,15,.08), transparent 32%);
    }
}
@media (max-width: 430px) {
    .customer-ui .home-store-map {
        height: 50svh;
        min-height: 330px;
    }
    .customer-ui .home-store-map .leaflet-control-zoom {
        margin-bottom: 10px;
    }
}


/* v30.8 - Mobile home map hard fix.
   The map gets its own layout canvas so the info banner can never cover it on phones. */
.customer-ui .home-store-map-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.customer-ui .home-store-map-canvas > .home-store-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 760px) {
    .customer-ui .home-store-map-section {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        background: var(--food-dark) !important;
    }

    .customer-ui .home-store-map-canvas {
        position: relative !important;
        inset: auto !important;
        z-index: 1 !important;
        display: block !important;
        width: 100% !important;
        height: 52svh !important;
        min-height: 360px !important;
        max-height: 520px !important;
        overflow: hidden !important;
        background: #e9e5df !important;
    }

    .customer-ui .home-store-map-canvas > .home-store-map {
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        z-index: 1 !important;
    }

    .customer-ui .home-store-map-panel {
        position: relative !important;
        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        z-index: 2 !important;
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        transform: none !important;
        padding: 16px 14px calc(18px + env(safe-area-inset-bottom)) !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: var(--food-dark) !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .customer-ui .home-store-map-panel h1 {
        margin: 8px 0 6px !important;
        font-size: clamp(1.65rem, 7vw, 2.35rem) !important;
        line-height: 1.02 !important;
    }
    .customer-ui .home-store-map-panel p {
        font-size: .86rem !important;
        line-height: 1.42 !important;
    }
    .customer-ui .home-map-actions {
        margin-top: 11px !important;
    }
    .customer-ui .home-map-legend {
        margin-top: 11px !important;
    }
    .customer-ui .home-map-meta {
        margin-top: 10px !important;
    }
    .customer-ui .home-store-map .leaflet-control-zoom {
        margin-bottom: 10px !important;
    }
    .customer-ui .home-store-map::after {
        background: none !important;
    }
}

@media (max-width: 430px) {
    .customer-ui .home-store-map-canvas {
        height: 48svh !important;
        min-height: 340px !important;
    }
    .customer-ui .home-store-map .leaflet-control-zoom {
        margin-bottom: 10px !important;
    }
}

/* v30.9 - Simplified AllOnline home page.
   Search + categories -> clean map -> nearby stores. */
.customer-ui .home-discovery {
    padding: 28px 0 22px;
    background: #fff;
    border-bottom: 1px solid rgba(35,24,18,.08);
}
.customer-ui .home-discovery-inner {
    display: grid;
    grid-template-columns: minmax(190px,.7fr) minmax(300px,1.3fr);
    gap: 16px 28px;
    align-items: end;
}
.customer-ui .home-discovery-heading .section-kicker {
    margin-bottom: 5px;
}
.customer-ui .home-discovery-heading h1 {
    margin: 0;
    font-size: clamp(2rem,4vw,3.55rem);
    line-height: 1;
    letter-spacing: -.045em;
}
.customer-ui .home-discovery-search {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border: 1px solid rgba(35,24,18,.14);
    border-radius: 18px;
    background: #f8f6f3;
    box-shadow: 0 8px 28px rgba(35,24,18,.05);
}
.customer-ui .home-discovery-search > span {
    flex: 0 0 auto;
    font-size: 1.25rem;
    color: #75675e;
}
.customer-ui .home-discovery-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #211914;
    font: inherit;
    font-weight: 750;
}
.customer-ui .home-discovery-search input::placeholder {
    color: #8b7d74;
    opacity: 1;
}
.customer-ui .home-category-filters {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 5px;
    scrollbar-width: thin;
}
.customer-ui .home-category-filters .filter-chip {
    flex: 0 0 auto;
    white-space: nowrap;
}

.customer-ui .home-store-map-section.home-store-map-simple {
    position: relative;
    height: clamp(390px,56vw,640px);
    min-height: 0;
    max-height: none;
    overflow: hidden;
    background: #e9e5df;
    border-bottom: 1px solid rgba(35,24,18,.08);
}
.customer-ui .home-store-map-simple .home-store-map-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #e9e5df;
}
.customer-ui .home-store-map-simple .home-store-map-canvas > .home-store-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.customer-ui .home-store-map-simple .home-store-map::after {
    display: none !important;
}
.customer-ui .home-map-quick-actions {
    position: absolute;
    z-index: 700;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 18px;
    background: rgba(255,255,255,.90);
    box-shadow: 0 14px 34px rgba(35,24,18,.18);
    backdrop-filter: blur(12px);
}
.customer-ui .home-map-quick-actions .btn {
    min-height: 44px;
    white-space: nowrap;
}
.customer-ui .home-map-message-overlay {
    position: absolute;
    z-index: 710;
    left: 50%;
    bottom: 82px;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 28px);
    min-height: 0;
    margin: 0;
    padding: 0;
    color: #7c2d12;
    font-size: .8rem;
    font-weight: 850;
    text-align: center;
}
.customer-ui .home-map-message-overlay:not(:empty) {
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 8px 24px rgba(35,24,18,.15);
}
.customer-ui .home-map-message-overlay.is-error {
    color: #b42318;
}
.customer-ui .home-store-list-heading {
    align-items: center;
}
.customer-ui .home-store-list-heading h2 {
    margin-bottom: 0;
}
.customer-ui .restaurant-section {
    padding-top: 42px;
}

@media (max-width: 760px) {
    .customer-ui .home-discovery {
        padding: 18px 0 13px;
    }
    .customer-ui .home-discovery-inner {
        display: block;
    }
    .customer-ui .home-discovery-heading {
        margin-bottom: 12px;
    }
    .customer-ui .home-discovery-heading .section-kicker {
        display: none;
    }
    .customer-ui .home-discovery-heading h1 {
        font-size: clamp(1.65rem,7vw,2.2rem);
    }
    .customer-ui .home-discovery-search {
        min-height: 50px;
        border-radius: 15px;
        padding: 0 13px;
    }
    .customer-ui .home-category-filters {
        margin-top: 11px;
        margin-right: -14px;
        padding-right: 14px;
    }
    .customer-ui .home-store-map-section.home-store-map-simple {
        display: block !important;
        height: 48svh !important;
        min-height: 340px !important;
        max-height: 500px !important;
        overflow: hidden !important;
        background: #e9e5df !important;
    }
    .customer-ui .home-store-map-simple .home-store-map-canvas {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
    }
    .customer-ui .home-store-map-simple .home-store-map-canvas > .home-store-map {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
    }
    .customer-ui .home-map-quick-actions {
        left: 12px;
        right: 12px;
        bottom: 12px;
        transform: none;
        justify-content: center;
        border-radius: 16px;
    }
    .customer-ui .home-map-quick-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
    .customer-ui .home-map-message-overlay {
        left: 12px;
        right: 12px;
        bottom: 76px;
        transform: none;
        width: auto;
        max-width: none;
    }
    .customer-ui .home-store-map .leaflet-control-zoom {
        margin-bottom: 76px !important;
    }
    .customer-ui .restaurant-section {
        padding-top: 30px;
    }
    .customer-ui .home-store-list-heading {
        gap: 8px;
    }
}

@media (max-width: 430px) {
    .customer-ui .home-store-map-section.home-store-map-simple {
        height: 44svh !important;
        min-height: 320px !important;
    }
}

/* v31.3 — delivery distance pricing */
.restaurant-facts strong.is-out-of-range,
#checkoutDeliveryFee.is-out-of-range { color:#c62828; }
.home-map-message-overlay:not(:empty) { max-width:min(92vw,680px); }
@media (max-width: 640px) {
  .home-map-message-overlay:not(:empty) { font-size:.82rem; line-height:1.25; }
}
