/* DineQube Delivery Customer · V5.55.0 */
/* =====================================================
   DineQube QR Menu — Premium Mobile Ordering UI
   ===================================================== */

:root {
    --primary: #0F7B5A;
    --primary-dark: #075E45;
    --primary-hover: #0B6B4E;
    --primary-light: #E7F6F0;

    --cream: #FFF9EC;
    --cream-dark: #F8EED7;
    --white: #FFFFFF;

    --text: #102620;
    --text-soft: #5B7169;
    --muted: #8A9B95;
    --border: #DCEBE5;

    --veg-green: #159447;
    --nonveg-red: #D92D20;
    --warning: #E9A23B;
    --danger: #D92D20;

    --shadow-sm: 0 4px 14px rgba(7, 94, 69, 0.08);
    --shadow-md: 0 12px 32px rgba(7, 94, 69, 0.12);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #EDEDE8;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
    touch-action: manipulation;
}

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

input,
textarea {
    font-family: inherit;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

:focus-visible {
    outline: 3px solid rgba(15, 123, 90, 0.45);
    outline-offset: 2px;
}

/* =====================================================
   Layout / App Shell
   ===================================================== */

.app-root {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(16, 38, 32, 0.12);
    position: relative;
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
}

/* =====================================================
   Offline Banner
   ===================================================== */

.offline-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--warning);
    color: #2D1B00;
    font-weight: 700;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
    letter-spacing: 0.2px;
}

/* =====================================================
   Skeleton Loader
   ===================================================== */

.skeleton-shell {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    min-height: 100vh;
    animation: skeleton-fade 1.2s ease-in-out infinite;
}

.skeleton-header {
    padding: calc(env(safe-area-inset-top) + 12px) 16px 16px;
    border-bottom: 1px solid var(--border);
}

.skeleton-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.skeleton-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #E8F0ED;
    flex-shrink: 0;
}

.skeleton-lines {
    flex: 1;
    display: grid;
    gap: 8px;
}

.skeleton-line {
    height: 12px;
    border-radius: 20px;
    background: #E8F0ED;
}

.skeleton-line--title {
    width: 70%;
    height: 16px;
}

.skeleton-line--short {
    width: 45%;
}

.skeleton-badge {
    width: 64px;
    height: 28px;
    border-radius: 20px;
    background: #E8F0ED;
    flex-shrink: 0;
}

.skeleton-search {
    height: 44px;
    border-radius: 14px;
    background: #E8F0ED;
    margin-bottom: 14px;
}

.skeleton-chips {
    display: flex;
    gap: 8px;
    overflow: hidden;
}

.skeleton-chip {
    width: 78px;
    height: 36px;
    border-radius: 22px;
    background: #E8F0ED;
    flex-shrink: 0;
}

.skeleton-menu {
    padding: 20px 16px;
    display: grid;
    gap: 14px;
}

.skeleton-card {
    height: 150px;
    border-radius: var(--radius-md);
    background: #F2F7F4;
    box-shadow: var(--shadow-sm);
}

@keyframes skeleton-fade {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* =====================================================
   Sticky Restaurant Header
   ===================================================== */

.app-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: calc(env(safe-area-inset-top) + 8px) 0 0;
    transition: box-shadow 0.2s ease;
}

.app-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-row {
    padding-left: 16px;
    padding-right: 16px;
}

.header-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}

.restaurant-identity {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.rest-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.rest-meta {
    min-width: 0;
    flex: 1;
}

.rest-name-line {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.rest-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.2px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 3px 7px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 123, 90, 0.16);
}

.rest-cuisine {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

.table-badge {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 22px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.order-status-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.status-icon-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--warning);
    border: 2px solid var(--white);
}

.status-icon-dot.status-pending {
    background: var(--warning);
}

.status-icon-dot.status-accepted,
.status-icon-dot.status-preparing {
    background: var(--primary);
}

.status-icon-dot.status-ready {
    background: #1DB954;
    animation: pulse-dot 1.4s infinite;
}

.status-icon-dot.status-served,
.status-icon-dot.status-rejected,
.status-icon-dot.status-cancelled {
    background: var(--muted);
}

@keyframes pulse-dot {
    0% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.45); }
    70% { box-shadow: 0 0 0 8px rgba(29, 185, 84, 0); }
    100% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0); }
}

/* =====================================================
   Search
   ===================================================== */

.search-row {
    padding-bottom: 10px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box svg {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}

.search-box input {
    width: 100%;
    height: 46px;
    padding: 0 14px 0 42px;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    background: #FAFCFB;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box input::placeholder {
    color: var(--muted);
    font-weight: 500;
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 123, 90, 0.12);
    outline: none;
}

/* =====================================================
   Category Chips
   ===================================================== */

.category-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-top: 2px;
    padding-bottom: 12px;
}

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

.category-chip {
    flex-shrink: 0;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 22px;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text-soft);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.category-chip.active,
.category-chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* =====================================================
   Restaurant Intro Section
   ===================================================== */

.restaurant-intro {
    background: var(--cream);
    margin: 12px 16px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.restaurant-cover {
    width: 100%;
    height: 148px;
    object-fit: cover;
    background: var(--cream-dark);
}

.intro-body {
    padding: 14px 16px 16px;
}

.intro-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.intro-title-row h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--text);
}

.pure-veg-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

.intro-cuisines {
    margin: 6px 0 10px;
    color: var(--text-soft);
    font-weight: 600;
    font-size: 14px;
}

.intro-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
}

.prep-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.open-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-dark);
    font-weight: 800;
}

.open-status.closed {
    color: var(--danger);
}

.dineqube-brand {
    margin-left: auto;
    font-weight: 800;
    color: var(--primary);
    background: rgba(15, 123, 90, 0.08);
    padding: 4px 8px;
    border-radius: 20px;
    letter-spacing: 0.2px;
    font-size: 11px;
}

/* =====================================================
   Menu Filters
   ===================================================== */

.menu-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 14px 16px 4px;
}

.menu-filters::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    flex-shrink: 0;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text-soft);
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.filter-chip.filter-veg.active {
    background: var(--veg-green);
    border-color: var(--veg-green);
    color: var(--white);
}

.filter-chip.filter-nonveg.active {
    background: var(--nonveg-red);
    border-color: var(--nonveg-red);
    color: var(--white);
}

/* =====================================================
   Menu List
   ===================================================== */

.menu-list {
    display: grid;
    gap: 14px;
    padding: 14px 16px 40px;
}

.menu-card {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-height: 150px;
}

.menu-card:active {
    transform: scale(0.985);
}

.menu-card--unavailable {
    opacity: 0.58;
    pointer-events: none;
}

.menu-card-left {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.veg-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid currentColor;
    margin-bottom: 6px;
    flex-shrink: 0;
}

.veg-indicator.veg {
    color: var(--veg-green);
}

.veg-indicator.nonveg {
    color: var(--nonveg-red);
}

.veg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    display: block;
}

.item-name {
    margin: 2px 0 4px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.2px;
    color: var(--text);
    line-height: 1.3;
}

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 14px;
    width: fit-content;
}

.badge.bestseller {
    background: #FFF4D8;
    color: #8A5B00;
}

.item-desc {
    margin: 5px 0 7px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-soft);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-price {
    margin-top: auto;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

.customisable {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-dark);
}

.menu-card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: start;
}

.food-image {
    width: 110px;
    height: 96px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--cream-dark);
    position: relative;
    flex-shrink: 0;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.food-image.placeholder::before {
    content: 'DineQube';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
    background: var(--cream-dark);
}

.card-action {
    width: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
}

.add-btn {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.add-btn:hover {
    background: var(--primary-light);
}

.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-dark);
    border-radius: 22px;
    padding: 4px;
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
}

.qty-control--sm {
    gap: 6px;
    padding: 2px;
    min-height: 38px;
}

.qty-control button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.qty-control button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.qty-control span {
    color: var(--white);
    font-weight: 800;
    font-size: 14px;
    min-width: 18px;
    text-align: center;
}

.unavailable-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.empty-state {
    text-align: center;
    padding: 50px 24px;
    color: var(--text-soft);
    font-weight: 600;
}

/* =====================================================
   Sticky Cart Bar
   ===================================================== */

.cart-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 480px;
    z-index: 95;
    background: var(--cream);
    border: 2px solid var(--primary);
    border-bottom: none;
    border-radius: 18px 18px 0 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -8px 30px rgba(7, 94, 69, 0.15);
    animation: slide-up 0.3s ease;
    cursor: pointer;
}

@keyframes slide-up {
    from {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.cart-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--text);
    font-size: 15px;
}

.cart-bag-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-bar-right {
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 16px;
    white-space: nowrap;
    font-size: 14px;
}

/* =====================================================
   Order Status Floating Icon
   ===================================================== */

.order-status-icon.floating {
    position: fixed;
    right: 16px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    z-index: 85;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   Bottom Sheets
   ===================================================== */

.sheet-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(16, 38, 32, 0.48);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: fade-in 0.2s ease;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sheet {
    background: var(--white);
    width: 100%;
    max-width: 480px;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow-y: auto;
    padding: 12px 16px calc(20px + env(safe-area-inset-bottom));
    animation: sheet-slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -12px 40px rgba(7, 94, 69, 0.18);
}

@keyframes sheet-slide-up {
    from { transform: translateY(60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.sheet--full {
    max-height: 100%;
    height: 100%;
    border-radius: 0;
    padding-top: calc(12px + env(safe-area-inset-top));
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
}

.sheet-handle {
    width: 44px;
    height: 5px;
    border-radius: 20px;
    background: var(--border);
    margin: 0 auto 12px;
}

.sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.sheet-header h2,
.sheet-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #F2F7F4;
    color: var(--text);
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-btn:hover {
    background: var(--primary-light);
}

/* =====================================================
   Item Detail Sheet
   ===================================================== */

.item-detail-body {
    display: grid;
    gap: 18px;
}

.item-detail-hero {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
}

.item-detail-hero .food-image {
    width: 120px;
    height: 110px;
    border-radius: var(--radius-md);
}

.item-detail-info h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 800;
}

.item-detail-info p {
    margin: 6px 0;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
}

.item-detail-price {
    font-size: 18px;
    font-weight: 800;
}

.modifier-group {
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.modifier-group-header {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
}

.required {
    color: var(--danger);
    font-weight: 800;
}

.modifier-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modifier-option {
    min-height: 44px;
    padding: 8px 13px;
    border-radius: 14px;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--text-soft);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.modifier-option.selected {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.modifier-price {
    font-size: 12px;
    color: var(--text-soft);
    font-weight: 600;
}

.item-instruction label,
.customer-details label,
.order-instruction label {
    display: block;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.item-instruction textarea,
.order-instruction textarea,
.form-field input,
.form-field textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 600;
    color: var(--text);
    background: #FAFCFB;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.item-instruction textarea:focus,
.order-instruction textarea:focus,
.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 123, 90, 0.1);
    outline: none;
}

.item-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 800;
}

.btn-primary {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.2px;
    transition: background 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-primary:disabled {
    background: var(--muted);
    cursor: not-allowed;
    opacity: 0.7;
}

/* =====================================================
   Cart Sheet / Checkout
   ===================================================== */

.cart-items {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.cart-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    background: #FDFEFD;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.cart-item-mods,
.cart-item-inst {
    font-size: 12px;
    color: var(--text-soft);
    font-weight: 500;
    line-height: 1.4;
    margin-top: 3px;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.remove-item {
    background: transparent;
    border: none;
    color: var(--danger);
    font-weight: 700;
    font-size: 12px;
    min-height: 30px;
    padding: 0 4px;
}

.cart-item-price {
    font-weight: 800;
    font-size: 15px;
    min-width: 64px;
    text-align: right;
}

.order-instruction,
.customer-details {
    margin-bottom: 20px;
}

.customer-details h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 800;
}

.form-field {
    margin-bottom: 14px;
}

.required-star {
    color: var(--danger);
    font-weight: 800;
}

.inline-error {
    color: var(--danger);
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
}

.input-error {
    border-color: var(--danger) !important;
}

.cart-totals {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 10px;
    font-size: 14px;
}

.total-row.grand-total {
    font-weight: 800;
    color: var(--text);
    font-size: 17px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-bottom: 0;
}

/* Place order button */
.place-order-btn {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    background: var(--cream);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    font-weight: 800;
    font-size: 16px;
    transition: all 0.2s ease;
}

.place-order-btn:hover {
    background: var(--cream-dark);
}

.place-order-btn:disabled {
    background: #F2F7F4;
    color: var(--muted);
    border-color: var(--border);
    cursor: not-allowed;
}

/* =====================================================
   Active Order Prompt
   ===================================================== */

.active-order-prompt {
    text-align: center;
    padding: 10px 0;
}

.active-order-number {
    font-size: 22px;
    font-weight: 800;
    margin: 10px 0 4px;
}

.active-order-table {
    color: var(--text-soft);
    font-weight: 600;
    margin-bottom: 20px;
}

.prompt-actions {
    display: grid;
    gap: 10px;
}

.prompt-btn {
    min-height: 50px;
    border-radius: 16px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    font-weight: 800;
    font-size: 15px;
}

.prompt-btn.primary {
    background: var(--primary);
    color: var(--white);
}

/* =====================================================
   Success Screen
   ===================================================== */

.success-screen {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: var(--cream);
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.success-content {
    width: 100%;
    max-width: 400px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.success-check {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: check-pulse 1.2s ease;
}

.success-check svg {
    width: 46px;
    height: 46px;
    color: var(--white);
    stroke-width: 3;
}

@keyframes check-pulse {
    0% { transform: scale(0.6); opacity: 0.4; }
    60% { transform: scale(1.06); opacity: 1; }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 8px;
}

.success-subtitle {
    color: var(--text-soft);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 22px;
}

.success-order-info {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 14px;
    font-weight: 800;
    margin-bottom: 22px;
}

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

.success-btn {
    min-height: 50px;
    border-radius: 16px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 15px;
}

.success-btn.primary {
    background: var(--primary);
    color: var(--white);
}

.celebration-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: 10%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    animation: float-particle 2s ease-out forwards;
}

.particle:nth-child(2n) {
    background: #D4AF37;
}

.particle:nth-child(3n) {
    background: var(--warning);
}

@keyframes float-particle {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-170px) scale(0.3); opacity: 0; }
}

/* =====================================================
   Tracking Sheet
   ===================================================== */

.tracking-summary {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.confirmation-card,
.ready-card,
.served-card,
.status-alert {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--primary-dark);
}

.ready-card {
    border-left-color: #1DB954;
}

.served-card {
    border-left-color: var(--muted);
    color: var(--text);
}

.status-alert.rejected,
.status-alert.cancelled {
    background: #FFF0EF;
    border-left-color: var(--danger);
    color: var(--danger);
}

.timeline {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

.timeline-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--muted);
}

.timeline-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    background: #F2F7F4;
}

.timeline-step.done {
    color: var(--primary);
}

.timeline-step.done .timeline-icon {
    background: var(--primary-light);
    color: var(--primary);
}

.timeline-step.active {
    color: var(--text);
}

.timeline-step.active .timeline-icon {
    background: var(--primary);
    color: var(--white);
    animation: pulse-dot 1.6s infinite;
}

.timeline-label {
    font-weight: 800;
    font-size: 14px;
}

.timeline-desc {
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 500;
    margin-top: 2px;
}

.tracking-items {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-bottom: 16px;
}

.tracking-items h4 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 800;
}

.tracking-item-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.addon-batch {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin-top: 10px;
}

.addon-batch h5 {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.tracking-total {
    font-weight: 800;
    font-size: 17px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    text-align: right;
    margin-bottom: 16px;
}

.tracking-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tracking-action-btn {
    min-height: 46px;
    border-radius: 14px;
    border: 1.5px solid var(--primary);
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 13px;
}

.tracking-action-btn:active {
    background: var(--primary-light);
}

.tracking-add-more-btn {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 2px 0 12px;
    padding: 10px 14px;
    border: 0;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(7, 94, 69, 0.2);
    text-align: left;
}

.tracking-add-more-btn > span:first-child {
    font-size: 24px;
    line-height: 1;
}

.tracking-add-more-btn strong,
.tracking-add-more-btn small {
    display: block;
}

.tracking-add-more-btn strong {
    font-size: 14px;
    font-weight: 800;
}

.tracking-add-more-btn small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 9px;
    font-weight: 650;
}

/* =====================================================
   DineQube Product Branding
   ===================================================== */

.dineqube-footer {
    margin: 8px 16px 30px;
    padding: 18px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, var(--white), var(--primary-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.dineqube-footer-label,
.success-brand span {
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.dineqube-footer-name {
    margin-top: 2px;
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.dineqube-footer-tagline {
    margin-top: 3px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.35px;
}

.success-brand {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: 0 auto 22px;
    padding: 7px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--primary-light);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.success-brand strong {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.15px;
}

.tracking-powered {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-soft);
    text-align: center;
    font-size: 11px;
    font-weight: 600;
}

.tracking-powered strong {
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
}

.tracking-powered small {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* =====================================================
   Toast
   ===================================================== */

.toast-container {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(110px + env(safe-area-inset-bottom));
    z-index: 500;
    width: calc(100% - 32px);
    max-width: 420px;
    display: grid;
    gap: 8px;
    pointer-events: none;
}

.toast {
    background: #102620;
    color: var(--white);
    padding: 13px 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    animation: toast-in 0.3s ease, toast-out 0.3s ease 2.6s forwards;
    pointer-events: auto;
}

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

@keyframes toast-out {
    to { transform: translateY(12px); opacity: 0; }
}

/* =====================================================
   Error / Initial States
   ===================================================== */

.error-state {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 24px;
    text-align: center;
    background: var(--cream);
}

.error-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.error-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.4px;
}

.error-message {
    color: var(--text-soft);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 300px;
}

.retry-btn {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 800;
    font-size: 15px;
}

/* =====================================================
   QR Menu V2 — Compact discovery experience
   ===================================================== */

body {
    background: #F1F4F1;
}

body.overlay-open {
    overflow: hidden;
}

.app-shell {
    min-height: 100vh;
    background: var(--white);
}

.restaurant-hero {
    padding: calc(18px + env(safe-area-inset-top)) 18px 18px;
    background:
        radial-gradient(circle at 92% 0%, rgba(15, 123, 90, 0.12), transparent 34%),
        linear-gradient(180deg, #FFFFFF 0%, #FFFDF7 100%);
    border-bottom: 1px solid var(--border);
}

.hero-toolbar,
.hero-title-row,
.hero-actions,
.hero-brand-lockup,
.compact-header-inner,
.compact-search,
.hero-meta {
    display: flex;
    align-items: center;
}

.hero-toolbar {
    justify-content: space-between;
    gap: 12px;
}

.hero-brand-lockup {
    gap: 9px;
    min-width: 0;
}

.hero-powered {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.1px;
}

.hero-actions {
    gap: 8px;
    flex-shrink: 0;
}

.rest-logo,
.compact-logo {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #128A65, var(--primary-dark));
    color: var(--white);
    font-weight: 800;
    flex-shrink: 0;
}

.rest-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 19px;
}

.hero-search-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 1.5px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
}

.hero-search-btn svg {
    width: 18px;
    height: 18px;
}

.table-badge,
.compact-table-badge {
    white-space: nowrap;
    color: var(--white);
    background: var(--primary-dark);
    font-weight: 800;
    letter-spacing: 0.25px;
}

.table-badge {
    display: grid;
    place-items: center;
    min-height: 40px;
    padding: 0 13px;
    border-radius: 22px;
    font-size: 12px;
}

.hero-copy {
    margin-top: 22px;
}

.hero-title-row {
    min-width: 0;
    gap: 10px;
}

.hero-restaurant-name {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text);
    font-size: clamp(23px, 7vw, 31px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-open-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 800;
}

.hero-open-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 123, 90, 0.12);
}

.hero-open-badge.closed {
    color: var(--danger);
    background: #FFF0EE;
}

.hero-open-badge.closed span {
    background: var(--danger);
    box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.1);
}

.hero-cuisine {
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.hero-meta {
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 13px;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
}

.hero-meta-item b {
    color: var(--primary);
}

.hero-meta-item.pure-veg b {
    color: var(--veg-green);
}

.restaurant-offer {
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    padding: 13px 14px 13px 46px;
    border: 1px solid #E7DFC8;
    border-radius: 16px;
    background: var(--cream);
    color: var(--text);
}

.restaurant-offer::before {
    content: '%';
    position: absolute;
    left: 13px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.restaurant-offer strong,
.restaurant-offer small {
    display: block;
}

.restaurant-offer-icon {
    display: none;
}

.restaurant-offer-copy {
    display: block;
}

.restaurant-offer-code {
    display: inline-block;
    margin-top: 7px;
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.restaurant-offer strong {
    font-size: 13px;
    font-weight: 800;
}

.restaurant-offer small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 600;
}

.restaurant-offer em {
    display: inline-block;
    margin-top: 7px;
    color: var(--primary-dark);
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.compact-header {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 150;
    width: 100%;
    max-width: 480px;
    transform: translate(-50%, -115%);
    opacity: 0;
    pointer-events: none;
    padding: calc(8px + env(safe-area-inset-top)) 12px 8px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(16, 38, 32, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.compact-header.is-active {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.compact-header-inner {
    gap: 8px;
}

.compact-logo {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 16px;
}

.compact-search {
    flex: 1;
    min-width: 0;
    height: 42px;
    gap: 8px;
    padding: 0 12px;
    border: 1.5px solid var(--border);
    border-radius: 15px;
    background: #F8FAF8;
}

.compact-search svg {
    width: 19px;
    height: 19px;
    color: var(--primary);
    flex-shrink: 0;
}

.compact-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 650;
}

.compact-search input::placeholder {
    color: #84948F;
}

.compact-table-badge {
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 38px;
    padding: 0 8px;
    border-radius: 13px;
    font-size: 11px;
}

.compact-header .order-status-icon {
    position: relative;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border: 1.5px solid var(--border);
    border-radius: 13px;
    background: var(--white);
    color: var(--primary-dark);
}

.menu-main {
    padding-top: 0;
}

.menu-filters {
    padding: 16px 16px 12px;
    border-bottom: 1px solid #EEF3F0;
    background: var(--white);
}

.filter-chip {
    min-height: 40px;
    padding: 0 15px;
    border-radius: 14px;
    font-size: 12px;
}

.filter-chip.filter-popular::before {
    content: '↻';
    margin-right: 5px;
    color: var(--veg-green);
    font-weight: 900;
}

.filter-chip.filter-offers::before {
    content: '%';
    margin-right: 5px;
}

.menu-list {
    display: block;
    padding: 0 16px 42px;
}

.menu-section {
    scroll-margin-top: calc(72px + env(safe-area-inset-top));
    padding: 24px 0 4px;
}

.menu-section + .menu-section {
    border-top: 9px solid #F6F7F5;
    margin-inline: -16px;
    padding-inline: 16px;
}

.menu-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 5px;
}

.menu-section-heading span {
    display: block;
    margin-bottom: 2px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.menu-section-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.55px;
}

.menu-section-heading > strong {
    display: grid;
    place-items: center;
    min-width: 28px;
    height: 28px;
    padding: 0 7px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 11px;
}

.menu-section-items {
    display: block;
}

.menu-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 126px;
    gap: 14px;
    min-height: 186px;
    padding: 20px 0;
    border: 0;
    border-radius: 0;
    background: var(--white);
    box-shadow: none;
}

.menu-card + .menu-card {
    border-top: 1px dashed #E3EAE6;
}

.menu-card:active {
    transform: none;
}

.menu-card-left {
    align-items: flex-start;
}

.veg-indicator {
    width: 17px;
    height: 17px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.veg-dot {
    width: 7px;
    height: 7px;
}

.item-name {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.25px;
}

.item-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.badge.offer {
    color: var(--primary-dark);
    background: var(--primary-light);
}

.reorder-signal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: #71827C;
    font-size: 11px;
    font-weight: 700;
}

.reorder-signal i {
    position: relative;
    display: block;
    width: 42px;
    height: 5px;
    overflow: hidden;
    border-radius: 5px;
    background: #E2E7E4;
}

.reorder-signal i::before {
    content: '';
    position: absolute;
    inset: 0 35% 0 0;
    border-radius: inherit;
    background: var(--veg-green);
}

.item-price-stack {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: 10px;
}

.item-price-stack del {
    color: #8B9994;
    font-size: 12px;
    font-weight: 650;
}

.item-price-stack strong {
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
}

.item-desc {
    margin: 9px 0 0;
    color: #6E7E78;
    font-size: 12px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
}

.item-desc button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-weight: 800;
}

.menu-card-right {
    position: relative;
    width: 126px;
    gap: 0;
}

.food-image {
    width: 126px;
    height: 118px;
    border-radius: 17px;
    border: 1px solid #EDF1EF;
    background: var(--cream);
    box-shadow: 0 6px 18px rgba(16, 38, 32, 0.08);
}

.card-action {
    position: relative;
    z-index: 2;
    width: 104px;
    min-height: 42px;
    margin-top: -20px;
}

.add-btn,
.qty-control {
    min-height: 42px;
    border-radius: 13px;
    box-shadow: 0 6px 14px rgba(7, 94, 69, 0.16);
}

.add-btn {
    height: 46px;
    border-width: 1.5px;
    background: #FFFDF7;
    font-size: 14px;
}

.customisable {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 9px;
    text-align: center;
}

.menu-fab {
    position: fixed;
    left: 50%;
    bottom: calc(22px + env(safe-area-inset-bottom));
    z-index: 280;
    transform: translateX(86px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 17px;
    background: #102620;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(16, 38, 32, 0.24);
    font-size: 14px;
    font-weight: 800;
    transition: bottom 0.25s ease, background 0.2s ease, transform 0.2s ease;
}

.menu-fab svg {
    width: 18px;
    height: 18px;
}

.menu-fab.with-cart {
    bottom: calc(88px + env(safe-area-inset-bottom));
}

.menu-fab.is-open {
    background: var(--primary);
}

body.overlay-open .menu-fab,
body.overlay-open .cart-bar {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.menu-navigator-overlay {
    position: fixed;
    inset: 0;
    z-index: 260;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
    background: rgba(8, 28, 22, 0.52);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.menu-navigator {
    width: calc(100% - 28px);
    max-width: 446px;
    max-height: min(70vh, 620px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: #102620;
    color: var(--white);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    animation: menu-pop 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes menu-pop {
    from { transform: translateY(22px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.menu-navigator-handle {
    width: 42px;
    height: 4px;
    margin: 9px auto 4px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.3);
}

.menu-navigator-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 18px 10px;
}

.menu-navigator-eyebrow {
    color: #8FD7C1;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-navigator-header h2 {
    margin: 3px 0 0;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.menu-navigator-close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 24px;
}

.menu-navigator-body {
    max-height: calc(min(70vh, 620px) - 128px);
    overflow-y: auto;
    padding: 4px 10px 12px;
}

.menu-navigator-row {
    width: 100%;
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 12px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #EAF5F1;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.menu-navigator-row + .menu-navigator-row {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.menu-navigator-row strong {
    color: #A7B9B2;
    font-size: 12px;
}

.menu-navigator-row.featured,
.menu-navigator-row.active {
    background: rgba(27, 173, 126, 0.14);
    color: #74E1BE;
}

.menu-navigator-row.featured strong,
.menu-navigator-row.active strong {
    color: #74E1BE;
}

.menu-navigator-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #91A9A0;
    font-size: 10px;
    font-weight: 700;
}

.menu-navigator-brand strong {
    color: #74E1BE;
}

.cart-bar {
    z-index: 200;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: var(--primary-dark);
    border: 0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 30px rgba(7, 94, 69, 0.22);
}

.cart-bar-left,
.cart-bar-left small {
    color: var(--white);
}

.cart-bag-icon {
    background: rgba(255, 255, 255, 0.15);
}

.cart-bar-right {
    background: var(--cream);
    color: var(--primary-dark);
}

.dineqube-footer {
    margin: 10px 16px 35px;
    border-radius: 18px;
    background: linear-gradient(180deg, #FBFDFB, #F0F7F4);
}

.success-screen {
    background:
        radial-gradient(circle at 50% 25%, rgba(15, 123, 90, 0.12), transparent 34%),
        var(--cream);
}

.success-content {
    border: 1px solid var(--border);
}

.success-live-status {
    display: inline-block;
    margin: 0 0 18px;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 800;
}

.success-live-status[data-status='READY_TO_SERVE'],
.success-live-status[data-status='SERVED'] {
    background: #FFF0CB;
    color: #72500A;
}

@media (max-width: 360px) {
    .restaurant-hero {
        padding-inline: 14px;
    }

    .hero-powered,
    .hero-search-btn span {
        display: none;
    }

    .hero-search-btn {
        width: 40px;
        justify-content: center;
        padding: 0;
    }

    .hero-restaurant-name {
        font-size: 22px;
    }

    .compact-logo {
        display: none;
    }

    .compact-table-badge {
        min-width: 38px;
        padding-inline: 6px;
    }

    .menu-card {
        grid-template-columns: minmax(0, 1fr) 112px;
        gap: 11px;
    }

    .menu-card-right,
    .food-image {
        width: 112px;
    }

    .food-image {
        height: 108px;
    }

    .card-action {
        width: 94px;
    }

    .menu-fab {
        transform: translateX(64px);
    }
}

/* =====================================================
   Mobile-safe ordering sheets and demo testing
   ===================================================== */

.item-detail-sheet {
    height: min(92dvh, 760px);
    max-height: 92dvh;
    overflow: hidden;
    padding-bottom: 0;
}

#itemSheetContent {
    display: flex;
    flex: 1;
    min-height: 0;
    height: 100%;
    flex-direction: column;
}

.item-detail-sheet > #itemSheetContent > .sheet-handle,
.item-detail-sheet > #itemSheetContent > .sheet-header {
    flex-shrink: 0;
}

.item-detail-body {
    display: flex;
    flex: 1;
    min-height: 0;
    flex-direction: column;
    gap: 0;
}

.item-detail-scroll {
    display: grid;
    gap: 18px;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 2px 2px 20px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.item-instruction label > span {
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 650;
}

.item-detail-footer {
    position: relative;
    z-index: 3;
    display: grid;
    flex-shrink: 0;
    gap: 10px;
    margin: 0 -16px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -10px 24px rgba(16, 38, 32, 0.08);
}

.item-detail-footer .item-qty-row {
    min-height: 44px;
}

.item-detail-footer .qty-control--lg {
    width: min(68%, 290px);
}

.item-detail-footer .btn-primary {
    min-height: 54px;
    box-shadow: 0 8px 20px rgba(7, 94, 69, 0.2);
}

.checkout-sheet {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.checkout-sheet > .sheet-handle,
.checkout-sheet > .sheet-header {
    flex-shrink: 0;
}

#cartSheetBody {
    display: flex;
    flex: 1;
    min-height: 0;
    flex-direction: column;
}

.cart-sheet-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 2px 2px 18px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.checkout-footer {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, 1.15fr);
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin: 0 -16px calc(-28px - env(safe-area-inset-bottom));
    padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -10px 24px rgba(16, 38, 32, 0.09);
}

.checkout-footer-summary {
    min-width: 0;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.checkout-footer .place-order-btn {
    min-height: 52px;
    border: 0;
    background: var(--cream);
    box-shadow: inset 0 0 0 2px var(--primary);
}

.demo-tracking-controls {
    margin: 18px 0 6px;
    padding: 12px;
    border: 1px dashed rgba(15, 123, 90, 0.35);
    border-radius: 16px;
    background: #F7FBF9;
}

.demo-tracking-controls summary {
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.demo-tracking-controls p {
    margin: 8px 0 10px;
    color: var(--text-soft);
    font-size: 10px;
    font-weight: 650;
}

.demo-tracking-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.demo-tracking-actions button {
    min-height: 38px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: var(--white);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 380px) {
    .item-detail-sheet {
        height: 94dvh;
        max-height: 94dvh;
    }

    .item-detail-hero {
        grid-template-columns: 96px 1fr;
        gap: 12px;
    }

    .item-detail-hero .food-image {
        width: 96px;
        height: 96px;
    }

    .item-detail-info h3 {
        font-size: 18px;
    }

    .item-detail-info p {
        font-size: 12px;
    }

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

    .checkout-footer-summary {
        text-align: center;
    }
}

/* =====================================================
   Reduced Motion
   ===================================================== */

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

    .particle,
    .success-check,
    .timeline-step.active .timeline-icon,
    .status-icon-dot.status-ready {
        animation: none !important;
    }
}

/* V5.2: restaurant logo uses the existing V2.2 logo surfaces without changing the layout. */
.rest-logo img,.compact-logo img{width:100%;height:100%;object-fit:cover;border-radius:inherit;display:block}

/* =====================================================
   DineQube V5.3 Guest Experience
   ===================================================== */
.order-progress-bar{margin:12px -18px -18px;padding:12px 18px 14px;border-top:1px solid #E3EEE8;background:#F7FCF9}
.progress-title{display:flex;align-items:center;justify-content:space-between;margin-bottom:9px}
.progress-title b{font-size:12px;color:#102D24}.progress-title span{font-size:9px;color:#6B8077;font-weight:750}
.progress-line{display:flex;align-items:flex-start}
.progress-line>em{height:2px;background:#D8E7DF;flex:1;margin-top:10px;min-width:8px}.progress-line>em:has(+.done){background:#0F7B5A}
.progress-step{border:0;background:transparent;padding:0;min-width:42px;max-width:62px;display:grid;justify-items:center;gap:5px;color:#7D9188}
.progress-step i{width:21px;height:21px;border-radius:50%;border:2px solid #C8DAD1;background:#fff;display:grid;place-items:center;font-style:normal;font-size:9px;font-weight:900}
.progress-step span{font-size:7.5px;line-height:1.2;text-align:center;font-weight:800}
.progress-step.done i,.progress-step.active i{border-color:#0F7B5A;background:#0F7B5A;color:#fff}.progress-step.done span,.progress-step.active span{color:#075E45}
.order-status-icon{width:auto!important;min-width:40px!important;padding:0 7px!important;gap:4px!important}.status-icon-text{font-size:7px;font-weight:850;max-width:44px;overflow:hidden;text-overflow:ellipsis}
.tracking-add-more-btn{width:100%;border:1px solid #B9DCCA;border-radius:12px;background:#F3FBF7;color:#075E45;display:flex;gap:10px;align-items:center;padding:12px;margin:10px 0;text-align:left}
.tracking-add-more-btn strong{display:block;font-size:11px}.tracking-add-more-btn small{display:block;font-size:8px;color:#6D8177;margin-top:2px}
.tracking-bill-breakdown{border:1px solid #E0EAE5;border-radius:11px;padding:10px 12px;margin:12px 0}.tracking-bill-breakdown>div{display:flex;justify-content:space-between;padding:5px 0;font-size:10px}.tracking-bill-breakdown .grand{border-top:1px solid #DCE8E2;margin-top:4px;padding-top:9px;font-size:12px}
.served-payment-card{margin:13px 0;padding:14px;border-radius:13px;background:linear-gradient(135deg,#F0FBF5,#FFF9EC);border:1px solid #CFE4D9}.served-payment-card h4{font-size:15px;margin:5px 0}.served-payment-card p{font-size:9.5px;line-height:1.5;color:#62796F}.served-payment-card .eyebrow{font-size:8px;font-weight:900;color:#0F7B5A;letter-spacing:.09em}
.payment-primary-btn{width:100%;height:43px;border:0;border-radius:10px;background:#0F7B5A;color:#fff;font-size:11px;font-weight:850}
.paid-card{display:flex;gap:10px;align-items:flex-start;background:#EAF8F0;color:#075E45;border:1px solid #BCE0CC;border-radius:14px;padding:14px;margin:12px 0;flex-wrap:wrap}.paid-card small{display:block;font-size:8.4px;margin-top:3px}.paid-actions{display:flex;gap:8px;flex-wrap:wrap;margin-left:auto}.receipt-mini-btn{border:1px solid #A9D8BE;background:#fff;color:#075E45;border-radius:11px;padding:9px 12px;font-size:8.8px;font-weight:900;min-height:38px}.receipt-mini-btn:hover{background:#f7fffb}
.dq-center-notice,.dq-order-tour,.dq-payment-overlay{position:fixed;z-index:900;inset:0;background:rgba(12,41,35,.42);backdrop-filter:blur(3px);display:grid;place-items:center;padding:18px}
.dq-center-card,.tour-card{width:min(355px,100%);background:#fff;border-radius:18px;padding:22px;text-align:center;box-shadow:0 28px 80px rgba(0,0,0,.22)}.dq-center-icon{width:52px;height:52px;border-radius:50%;margin:0 auto 12px;background:#E8F7EF;color:#0F7B5A;display:grid;place-items:center;font-size:20px}.dq-center-card h3,.tour-card h3{font-size:20px;margin:4px 0 7px}.dq-center-card p,.tour-card p{font-size:11px;line-height:1.6;color:#657A70}.dq-center-card button{height:42px;width:100%;border:0;border-radius:10px;background:#0F7B5A;color:white;font-weight:850}
.tour-card>span{font-size:9px;font-weight:850;color:#0F7B5A}.tour-card>div{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:16px}.tour-card button{height:41px;border:1px solid #CFE0D7;border-radius:9px;background:#fff;color:#466158;font-weight:800}.tour-card button:last-child{background:#0F7B5A;color:#fff;border-color:#0F7B5A}
.dq-payment-overlay{place-items:end center;padding:0}.dq-payment-sheet{position:relative;width:min(500px,100%);background:#fff;border-radius:22px 22px 0 0;padding:20px 18px calc(20px + env(safe-area-inset-bottom));box-shadow:0 -20px 70px rgba(0,0,0,.2)}.pay-close{position:absolute;right:14px;top:14px;width:36px;height:36px;border:1px solid #DCE8E2;border-radius:10px;background:#fff;font-size:20px}.dq-payment-sheet .eyebrow{font-size:8px;color:#0F7B5A;font-weight:900;letter-spacing:.1em}.dq-payment-sheet h2{font-size:21px;margin:6px 40px 15px 0}.payment-bill{background:#F7FAF8;border:1px solid #E0EAE5;border-radius:11px;padding:10px}.payment-bill div{display:flex;justify-content:space-between;padding:5px;font-size:10px}.payment-choice{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:15px}.payment-choice button{min-height:74px;border:1px solid #CFE0D7;border-radius:12px;background:#fff;color:#173B2E;display:flex;gap:9px;align-items:center;text-align:left;padding:11px}.payment-choice button:first-child{background:#0F7B5A;color:#fff;border-color:#0F7B5A}.payment-choice i{font-size:18px}.payment-choice b{font-size:10px}.payment-choice small{display:block;font-size:7.5px;margin-top:3px;opacity:.8}.payment-total{margin-top:12px;text-align:center;font-size:12px;font-weight:900;color:#075E45}
@media(max-width:390px){.progress-step span{font-size:6.7px}.progress-step{min-width:36px}}

.payment-note-direct,.direct-payment-warning{display:flex;gap:9px;align-items:flex-start;margin:10px 0 13px;padding:10px 11px;border:1px solid #CFE4D9;border-radius:11px;background:#F2FAF6;color:#174A39}
.payment-note-direct i{margin-top:2px;color:#0F7B5A}.payment-note-direct b,.direct-payment-warning b{display:block;font-size:9.5px}.payment-note-direct small,.direct-payment-warning span{display:block;font-size:8px;line-height:1.45;color:#647D71;margin-top:3px}
.payment-bill .grand{border-top:1px solid #DCE8E2;margin-top:4px;padding-top:8px;font-size:11px}.payment-bill.compact{margin-top:12px}
.merchant-qr-box{margin:14px auto;width:min(230px,75vw);padding:12px;border:1px solid #D7E6DE;border-radius:15px;background:#fff;text-align:center}.merchant-qr-box img{width:100%;aspect-ratio:1;object-fit:contain;border-radius:9px}.merchant-qr-box span{display:block;font-size:8px;font-weight:800;color:#5B7468;margin-top:8px}
.upi-copy-row{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:11px 12px;border:1px solid #D9E7E0;border-radius:11px;background:#F8FBF9}.upi-copy-row small{display:block;font-size:7px;color:#758B80;font-weight:800}.upi-copy-row b{display:block;font-size:12px;margin-top:3px;word-break:break-all}.upi-copy-row button{height:34px;border:1px solid #BFD9CC;border-radius:8px;background:#fff;color:#075E45;font-size:9px;font-weight:850;padding:0 12px}
.open-upi-btn{display:flex;align-items:center;justify-content:center;gap:7px;width:100%;height:46px;border:0;border-radius:11px;background:#0F7B5A;color:#fff;text-decoration:none;font-size:11px;font-weight:900;margin-top:12px;cursor:pointer}.payment-secondary-btn{width:100%;height:43px;border:1px solid #CFE0D7;border-radius:10px;background:#fff;color:#294D40;font-size:10px;font-weight:850;margin-top:8px}.external-pay-copy{font-size:8.5px;line-height:1.5;color:#6A8075;text-align:center;margin:10px 4px 0}

/* =====================================================
   V5.5 Checkout: guest details + WhatsApp opt-in; payment after Served
   ===================================================== */
.field-hint{display:block;margin-top:5px;font-size:10px;line-height:1.4;color:#71847B}
.bill-preference-card{margin-top:14px;padding:14px;border:1px solid #D8E7DF;border-radius:14px;background:#FAFCFB}
.bill-preference-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.bill-preference-head h4{margin:4px 0 0;font-size:14px;color:#102D24}
.bill-preference-head>i{width:34px;height:34px;border-radius:10px;background:#E8F6F0;color:#0F7B5A;display:grid;place-items:center}
.checkout-eyebrow{font-size:8px;font-weight:900;letter-spacing:.10em;color:#0F7B5A}
.bill-preference-options{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:12px}
.bill-choice{min-height:72px;border:1px solid #D5E5DD;border-radius:12px;background:#fff;padding:10px;display:flex;align-items:center;gap:9px;cursor:pointer;transition:.18s}
.bill-choice.selected{border-color:#0F7B5A;background:#EFF9F4;box-shadow:0 0 0 2px rgba(15,123,90,.07)}
.bill-choice input{position:absolute;opacity:0;pointer-events:none}
.bill-choice-icon{width:36px;height:36px;border-radius:10px;background:#F3F7F5;color:#0F7B5A;display:grid;place-items:center;flex:0 0 auto}
.bill-choice.selected .bill-choice-icon{background:#0F7B5A;color:#fff}
.bill-choice b{display:block;font-size:11px;color:#16372C}.bill-choice small{display:block;font-size:8.5px;line-height:1.35;color:#71847B;margin-top:3px}
.bill-preference-card>p{font-size:8.5px;line-height:1.5;color:#6E8178;margin:9px 0 0}
.whatsapp-update-box{margin-top:10px;padding:10px 12px;border:1px solid #BFE0CD;border-radius:14px;background:#F2FAF6;display:flex;align-items:center;gap:10px;cursor:pointer;min-height:48px;width:100%;box-shadow:0 1px 0 rgba(15,123,90,.03)}
.whatsapp-update-box>input{appearance:none;-webkit-appearance:none;margin:0;width:20px;height:20px;flex:0 0 20px;border:2px solid #15915f;border-radius:6px;background:#fff;display:grid;place-items:center;cursor:pointer;transition:.16s ease}
.whatsapp-update-box>input:checked{background:#15915f;border-color:#15915f}
.whatsapp-update-box>input:checked::after{content:'✓';color:#fff;font-size:13px;font-weight:900;line-height:1;transform:translateY(-.5px)}
.whatsapp-update-box>input:focus-visible{outline:3px solid rgba(15,123,90,.18);outline-offset:2px}
.whatsapp-check{width:28px;height:28px;border-radius:50%;background:#25D366;color:#fff;display:grid;place-items:center;flex:0 0 28px;box-shadow:0 3px 10px rgba(31,175,90,.18)}
.whatsapp-check svg{display:block;width:15px;height:15px;fill:currentColor}
.whatsapp-update-copy{min-width:0;display:flex;flex-direction:column;gap:1px;line-height:1.2}
.whatsapp-update-box b{display:block;font-size:11.5px;line-height:1.25;color:#113A2C;font-weight:850;white-space:normal}
.whatsapp-update-box small{display:block;font-size:9px;line-height:1.3;color:#6B837A}
@media(max-width:480px){.whatsapp-update-box{padding:9px 10px;gap:8px;border-radius:12px;min-height:46px}.whatsapp-update-box>input{width:19px;height:19px;flex-basis:19px}.whatsapp-update-box>input:checked::after{font-size:12px}.whatsapp-check{width:26px;height:26px;flex-basis:26px}.whatsapp-check svg{width:14px;height:14px}.whatsapp-update-box b{font-size:10.8px;line-height:1.2}.whatsapp-update-box small{font-size:8.6px}}
@media(max-width:390px){.bill-preference-options{grid-template-columns:1fr}}

/* V5.5 customer payment + recovery UX */
.payment-choice.vertical{grid-template-columns:1fr!important}
.upi-pay-button{background:#fff!important;color:#15251f!important;border:2px solid #6f3cc3!important;box-shadow:0 8px 22px rgba(111,60,195,.09)}
.upi-logo-mark{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-width:42px!important;height:30px!important;border-radius:7px!important;background:#fff!important;border:1px solid #e7e2ef!important;font-family:Arial,sans-serif!important;font-weight:900!important;font-style:italic!important;overflow:hidden}
.upi-logo-mark i{font-style:italic!important;color:#f58220!important;font-size:17px!important}.upi-logo-mark b{color:#6f3cc3!important;font-size:16px!important;letter-spacing:-1px!important}.upi-logo-mark.large{min-width:64px!important;height:42px!important}.upi-logo-mark.large i,.upi-logo-mark.large b{font-size:22px!important}
.original-upi{display:flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;background:linear-gradient(90deg,#6236b8,#8147ca)!important;color:#fff!important;border-radius:13px!important;min-height:56px!important;text-decoration:none!important;font-size:11px!important;font-weight:900!important;padding:10px 14px!important;margin-top:14px!important}.original-upi .upi-logo-mark{border:0!important}
.upi-merchant-card{display:flex;align-items:center;gap:12px;background:#fbf9ff;border:1px solid #e3d9f3;border-radius:13px;padding:12px;margin:10px 0}.upi-merchant-card small{display:block;font-size:7.5px;letter-spacing:.08em;color:#84749b}.upi-merchant-card b{display:block;font-size:11px;margin-top:3px;word-break:break-all}
.upi-return-box{background:#fff9ec;border:1px solid #f1d9a7;border-radius:13px;padding:12px;margin-top:12px}.upi-return-box>b,.upi-return-box>span{display:block}.upi-return-box>b{font-size:11px}.upi-return-box>span{font-size:8.5px;color:#776943;margin:3px 0 9px}.attention{animation:dqPulse 1.1s ease-in-out infinite}@keyframes dqPulse{50%{box-shadow:0 0 0 5px rgba(15,123,90,.12)}}
.upi-unavailable{padding:12px;border:1px solid #e4e8e6;border-radius:12px;background:#f8faf9}.upi-unavailable b{display:block;font-size:10px}.upi-unavailable small{font-size:8px;color:#71827a}
.table-bill-choice{background:#fff!important;color:#173B2E!important}
.tracking-item-row span:first-child{display:flex;flex-direction:column;gap:2px}.tracking-item-row small{font-size:7.6px;color:#75887f;font-weight:600}
.addon-batch h5{display:flex;justify-content:space-between;gap:8px}.addon-batch h5 span{font-size:7px;text-transform:uppercase;color:#0f7b5a}
.status-alert b,.status-alert span,.status-alert small{display:block}.status-alert small{font-weight:800;margin:4px 0}.status-alert span{margin-top:3px}
.rejected-actions{display:grid;gap:8px;margin:12px 0}
.feedback-card textarea{width:100%;min-height:70px;border:1px solid #d6e4dd;border-radius:10px;padding:9px;margin:10px 0;resize:vertical}.star-rating{display:flex;justify-content:center;gap:6px;margin:12px 0}.star-rating button{border:0;background:none;color:#f4a51c;font-size:30px;padding:2px;cursor:pointer}
.payment-primary-btn .upi-mini{display:inline-block;background:#fff;color:#6f3cc3;border-radius:5px;padding:2px 5px;margin-right:5px;font-weight:900}
@media(max-width:480px){.dq-payment-sheet{max-height:92dvh;overflow:auto}.upi-pay-button{min-height:76px!important}}

.modifier-group.modifier-missing{border-color:#D54450!important;background:#FFF5F6!important;box-shadow:0 0 0 3px rgba(213,68,80,.08)!important}

/* ===== DineQube V5.5.6 · public dish ratings + payment confirmation ===== */
.dish-rating{display:inline-flex;align-items:center;gap:6px;margin:5px 0 1px;padding:4px 7px;border-radius:999px;background:#FFF7DE;color:#705400;font-size:10px;font-weight:800}
.dish-rating b{color:#8A6500}.dish-rating small{font-size:9px;color:#7D6D3D;font-weight:700}
.customer-payment-confirm-card{width:min(390px,100%)}
.customer-payment-confirm-card .payment-confirm-amount{font-size:24px;font-weight:900;color:#0F7B5A;margin:9px 0 5px}
.customer-payment-confirm-card .payment-confirm-actions{display:grid;gap:8px;margin-top:14px}
.customer-payment-confirm-card .payment-confirm-actions button.secondary{background:#F5F8F6;color:#415D52;border:1px solid #D6E4DE}
.customer-payment-confirm-card .payment-waiting-badge{display:inline-flex;align-items:center;gap:6px;padding:6px 9px;border-radius:999px;background:#F3ECFF;color:#6B3FAD;font-size:10px;font-weight:850;margin-top:8px}
.feedback-card{width:min(430px,100%);max-height:86dvh;overflow:auto;text-align:left!important}
.feedback-card h3{text-align:center}.feedback-card>p{text-align:center}
.feedback-items{display:grid;gap:10px;margin:14px 0}.feedback-item{border:1px solid #E2ECE7;border-radius:12px;padding:11px;background:#FAFCFB}.feedback-item b{display:block;font-size:12px;color:#19382E}.feedback-item small{display:block;font-size:9px;color:#74867E;margin-top:2px}.feedback-stars{display:flex;gap:4px;margin-top:8px}.feedback-stars button{width:34px!important;height:34px!important;border-radius:8px!important;background:#fff!important;border:1px solid #E4D7A9!important;color:#D79B00!important;font-size:19px!important;padding:0!important}.feedback-stars button.on{background:#FFF4C9!important}
.feedback-overall{border-top:1px solid #E6EEE9;padding-top:12px;margin-top:10px}.feedback-overall label{display:block;font-size:10px;font-weight:850;color:#304D42;margin-bottom:6px}.feedback-card textarea{width:100%;min-height:78px;border:1px solid #D9E6E0;border-radius:10px;padding:10px;font:inherit;font-size:11px;resize:vertical}.feedback-submit-row{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:10px}.feedback-submit-row button.secondary{background:#F5F8F6!important;color:#415D52!important;border:1px solid #D6E4DE!important}
@media(max-width:480px){.feedback-card{padding:16px}.feedback-stars button{width:31px!important;height:31px!important}}

/* V5.5.8 master brand logo in guest footer */
.dineqube-footer-logo{display:block;width:152px;max-width:70%;height:auto;margin:5px auto 2px;object-fit:contain}.dineqube-footer{background:linear-gradient(145deg,#fff,#F1F8F5)!important}


/* ===== DineQube V5.7.1 · staged offline payment + fresh-session thank-you ===== */
.payment-instruction-card .eyebrow{display:block;margin-top:8px;font-size:8px;font-weight:900;letter-spacing:.10em;color:#0F7B5A}.payment-instruction-state{display:flex;align-items:center;gap:10px;margin:13px 0 2px;padding:11px 12px;border-radius:12px;background:#F1F8F5;border:1px solid #D8E8E0;text-align:left}.payment-instruction-state>i{width:34px;height:34px;border-radius:10px;background:#E1F4EB;color:#0F7B5A;display:grid;place-items:center;flex:0 0 auto}.payment-instruction-state b,.payment-instruction-state small{display:block}.payment-instruction-state b{font-size:11px;color:#17382D}.payment-instruction-state small{font-size:8.5px;line-height:1.45;color:#6A8075;margin-top:2px}.paid-thankyou-card{position:relative;overflow:hidden;width:min(410px,100%);padding-top:28px}.paid-thankyou-card h3{font-size:21px;line-height:1.25}.paid-thankyou-card p{font-size:11px;line-height:1.65}.paid-thankyou-brand{margin:17px auto 13px;padding:12px;border-radius:14px;background:#F5FAF7;border:1px solid #DDEBE4}.paid-thankyou-brand img{display:block;width:150px;max-width:70%;height:auto;margin:0 auto}.paid-thankyou-brand small{display:block;margin-top:7px;color:#5E776C;font-size:8px;font-weight:850;letter-spacing:.12em;text-transform:uppercase}.paid-confetti{position:absolute;inset:0;pointer-events:none}.paid-confetti i{position:absolute;width:8px;height:15px;border-radius:3px;background:#0F7B5A;animation:dqPaidConfetti 1.35s ease-out both}.paid-confetti i:nth-child(1){left:12%;top:-16px;transform:rotate(18deg);animation-delay:.05s}.paid-confetti i:nth-child(2){left:27%;top:-18px;background:#E0A21B;animation-delay:.13s}.paid-confetti i:nth-child(3){left:45%;top:-20px;background:#6B4BC3;animation-delay:.02s}.paid-confetti i:nth-child(4){left:61%;top:-14px;background:#1D9C73;animation-delay:.2s}.paid-confetti i:nth-child(5){left:78%;top:-19px;background:#EE765D;animation-delay:.08s}.paid-confetti i:nth-child(6){left:90%;top:-15px;background:#E0A21B;animation-delay:.16s}@keyframes dqPaidConfetti{0%{opacity:0;transform:translateY(0) rotate(0)}15%{opacity:1}100%{opacity:0;transform:translateY(210px) rotate(410deg)}}

/* DineQube V5.11 — actual customer renderer used inside AI Menu Studio */
.ai-draft-preview-banner{position:sticky;top:0;z-index:120;display:flex;align-items:center;gap:8px;padding:8px 12px;background:#063f30;color:#fff;border-bottom:1px solid rgba(255,255,255,.12);box-shadow:0 4px 14px rgba(6,63,48,.12)}
.ai-draft-preview-banner>i{width:8px;height:8px;border-radius:50%;background:#65ddb7;box-shadow:0 0 0 4px rgba(101,221,183,.13)}.ai-draft-preview-banner span{display:flex;align-items:baseline;gap:7px}.ai-draft-preview-banner b{font-size:9px}.ai-draft-preview-banner small{font-size:7.5px;color:#bde2d5}
.preview-only-label{display:inline-flex;align-items:center;justify-content:center;min-width:68px;height:31px;border-radius:8px;background:#e9f7f2;border:1px solid #cde9df;color:#086b50;font-size:8px;font-weight:900;letter-spacing:.07em}
.veg-indicator.neutral{border-color:#91a49d;background:#fff}.veg-indicator.neutral .veg-dot{background:#91a49d}


/* ===== DineQube V5.12.26 · quick return to menu start ===== */
.optional-label{font-size:.78em;font-weight:700;color:#778b82;margin-left:3px}
.menu-top-button{
  position:fixed;left:50%;bottom:calc(116px + env(safe-area-inset-bottom));
  width:48px;height:48px;border:1px solid rgba(255,255,255,.18);border-radius:16px;
  background:#0b211b;color:#fff;z-index:520;display:grid;place-items:center;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  opacity:0;visibility:hidden;pointer-events:none;
  transform:translate(-50%,14px) scale(.92);
  transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
  -webkit-tap-highlight-color:transparent;cursor:pointer
}
.menu-top-button span{font-size:24px;line-height:1;font-weight:800;transform:translateY(-1px)}
.menu-top-button.is-visible{opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%,0) scale(1)}
.menu-top-button:active{transform:translate(-50%,1px) scale(.96)}
body.overlay-open .menu-top-button{opacity:0!important;visibility:hidden!important;pointer-events:none!important}
@media(max-width:420px){.menu-top-button{bottom:calc(110px + env(safe-area-inset-bottom));width:46px;height:46px;border-radius:15px}}


/* V5.14.13 — Table QR dine-in payment selector. Takeaway unaffected. */
.dq-dinein-pay-choice{z-index:980!important;background:rgba(8,31,26,.56)!important;backdrop-filter:blur(8px)!important;-webkit-backdrop-filter:blur(8px)!important;padding:18px!important}
.dq-dinein-pay-card{width:min(318px,calc(100vw - 36px))!important;background:#fff!important;border:1px solid rgba(15,123,90,.14)!important;border-radius:24px!important;box-shadow:0 24px 70px rgba(3,28,21,.28)!important;padding:18px!important;display:grid!important;gap:12px!important}
.dq-dinein-table-label{width:100%!important;margin:0!important;padding:14px 16px!important;border-radius:15px!important;background:#eef8f4!important;border:1px solid #d8ebe3!important;color:#123b2f!important;font-size:16px!important;font-weight:850!important;text-align:center!important;letter-spacing:.01em!important;box-shadow:none!important}
.dq-dinein-pay-actions{display:grid!important;grid-template-columns:1fr!important;gap:10px!important;margin:0!important}
.dq-dinein-pay-actions button{min-height:62px!important;width:100%!important;padding:0 16px!important;margin:0!important;border-radius:16px!important;display:grid!important;place-items:center!important;font:inherit!important;cursor:pointer!important;box-shadow:none!important}
.dq-dinein-pay-actions button b{font-size:16px!important;font-weight:850!important;line-height:1!important}
.dq-pay-now-choice{border:1px solid #0F7B5A!important;background:#0F7B5A!important;color:#fff!important;box-shadow:0 12px 28px rgba(15,123,90,.18)!important}
.dq-pay-now-choice:disabled{opacity:.5!important;cursor:not-allowed!important}
.dq-pay-later-choice{border:1px solid #d6e5df!important;background:#fff!important;color:#173b30!important}
@media(max-width:480px){.dq-dinein-pay-choice{padding:14px!important}.dq-dinein-pay-card{width:min(304px,calc(100vw - 28px))!important;padding:16px!important;border-radius:22px!important}.dq-dinein-table-label{font-size:15px!important;padding:13px 14px!important}.dq-dinein-pay-actions button{min-height:60px!important;border-radius:15px!important}}

/* V5.14.14 · Multi-offer customer menu (Table QR + Takeaway) */
.restaurant-offer{
    margin-top:16px;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    overflow:visible;
}
.restaurant-offer::before{display:none!important;content:none!important}
.restaurant-offers-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin:0 2px 8px;color:var(--text)}
.restaurant-offers-head b{font-size:13px;font-weight:900}
.restaurant-offers-head span{font-size:10px;font-weight:800;color:var(--primary-dark);background:#EAF7F1;border:1px solid #CBE8DB;border-radius:999px;padding:5px 8px}
.restaurant-offers-list{display:grid;gap:9px}
.restaurant-offer-card{display:grid;grid-template-columns:36px minmax(0,1fr) auto;align-items:center;gap:10px;padding:11px 12px;border:1px solid #E7DFC8;border-radius:15px;background:var(--cream);color:var(--text);transition:.18s ease}
.restaurant-offer-card.eligible{border-color:#BFDCCF;background:#F3FBF7}
.restaurant-offer-card.selected{border-color:var(--primary);box-shadow:0 0 0 1px rgba(15,123,90,.08)}
.restaurant-offer-card .restaurant-offer-icon{display:grid;width:34px;height:34px;place-items:center;border-radius:10px;background:var(--primary);color:#fff;font-size:12px;font-weight:900}
.restaurant-offer-card .restaurant-offer-copy{min-width:0}
.restaurant-offer-card .restaurant-offer-copy strong{display:block;font-size:12.5px;font-weight:850;line-height:1.25}
.restaurant-offer-card .restaurant-offer-copy small{display:block;margin-top:3px;color:var(--text-soft);font-size:10.5px;font-weight:600;line-height:1.35}
.restaurant-offer-action{display:flex;align-items:center;justify-content:flex-end}
.offer-apply-btn{border:1px solid var(--primary);border-radius:10px;background:#fff;color:var(--primary-dark);font-size:10.5px;font-weight:850;padding:8px 10px;cursor:pointer;white-space:nowrap}
.offer-apply-btn.selected{background:var(--primary);color:#fff}
.offer-auto,.offer-unlock{display:inline-flex;align-items:center;border-radius:999px;padding:6px 8px;font-size:9.5px;font-weight:850;white-space:nowrap}
.offer-auto{background:#E2F5EC;color:#0B6C50;border:1px solid #C3E7D8}
.offer-auto.selected{background:var(--primary);color:#fff;border-color:var(--primary)}
.offer-unlock{background:#F5F1E7;color:#776B4E;border:1px solid #E8DFC7}
@media(max-width:560px){
  .restaurant-offer-card{grid-template-columns:32px minmax(0,1fr);padding:10px}
  .restaurant-offer-card .restaurant-offer-icon{width:30px;height:30px;border-radius:9px}
  .restaurant-offer-action{grid-column:2;justify-content:flex-start;margin-top:2px}
  .offer-apply-btn,.offer-auto,.offer-unlock{font-size:9.5px}
}

/* V5.16.6 — compact single-row offer carousel. */
.restaurant-offers-list{display:flex!important;flex-wrap:nowrap!important;gap:10px!important;overflow-x:auto!important;overflow-y:hidden!important;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding:2px 2px 9px;scrollbar-width:none;overscroll-behavior-inline:contain}
.restaurant-offers-list::-webkit-scrollbar{display:none}
.restaurant-offer-card{flex:0 0 284px;min-width:0;min-height:74px;scroll-snap-align:start;scroll-snap-stop:always;grid-template-columns:34px minmax(0,1fr)!important;align-content:center;box-shadow:0 6px 18px rgba(35,57,47,.05)}
.restaurant-offer-card .restaurant-offer-action{grid-column:2!important;justify-content:flex-start!important;margin-top:2px!important;min-width:0}
.restaurant-offer-card .offer-auto,.restaurant-offer-card .offer-unlock,.restaurant-offer-card .offer-apply-btn{max-width:100%;overflow:hidden;text-overflow:ellipsis}
@media(max-width:560px){.restaurant-offers-list{margin-right:-18px;padding-right:36px}.restaurant-offer-card{flex-basis:min(270px,calc(100vw - 92px));padding:10px 11px!important;border-radius:14px}.restaurant-offers-head{margin-bottom:7px}}


/* V5.14.16 · Cart-level confirmation for eligible restaurant offers */
.cart-applied-offer{margin:14px 0 16px;border:1px solid #9fd1bd;background:linear-gradient(145deg,#effaf5,#f8fcfa);border-radius:18px;padding:14px 15px;color:#123b2f;box-shadow:0 8px 24px rgba(15,123,90,.06)}
.cart-applied-offer-head{display:grid;grid-template-columns:34px minmax(0,1fr) auto;align-items:center;gap:10px}.cart-offer-check{width:34px;height:34px;border-radius:11px;background:#0F7B5A;color:#fff;display:grid;place-items:center;font-size:18px;font-weight:900}.cart-applied-offer-head>div{min-width:0}.cart-applied-offer-head small{display:block;font-size:8px;font-weight:900;letter-spacing:.11em;color:#298167;margin-bottom:2px}.cart-applied-offer-head b{display:block;font-size:13px;line-height:1.3}.cart-applied-offer-head em{font-style:normal;font-size:9px;font-weight:850;color:#087052;background:#dff4ea;border-radius:999px;padding:6px 8px;white-space:nowrap}.cart-offer-free-line,.cart-offer-saving-line{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-top:12px;padding:10px 12px;border-radius:12px;background:#fff;border:1px solid #dcebe5;font-size:11.5px}.cart-offer-free-line span,.cart-offer-saving-line span{min-width:0}.cart-offer-free-line span b{display:inline-flex;margin-right:6px;padding:4px 6px;border-radius:7px;background:#0F7B5A;color:#fff;font-size:8px;letter-spacing:.08em}.cart-offer-free-line strong,.cart-offer-saving-line strong{color:#0F7B5A;white-space:nowrap}.cart-totals .offer-total-label{color:#0F7B5A;font-weight:800}
@media(max-width:480px){.cart-applied-offer{padding:12px;border-radius:16px}.cart-applied-offer-head{grid-template-columns:31px minmax(0,1fr);gap:9px}.cart-offer-check{width:31px;height:31px;border-radius:10px}.cart-applied-offer-head em{grid-column:2;justify-self:start;margin-top:2px}.cart-offer-free-line,.cart-offer-saving-line{font-size:10.5px}}



.success-secondary-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:14px}
.success-chip-btn{border:1px solid #B7D8C6;background:#fff;color:#0B4734;border-radius:999px;padding:10px 16px;font-size:11px;font-weight:900;min-width:138px;box-shadow:0 8px 18px rgba(12,41,35,.06)}
.success-chip-btn.primary{background:#0F7B5A;color:#fff;border-color:#0F7B5A}
.feedback-social-wrap{margin-top:14px}
.feedback-social-wrap label{display:block;font-size:12px;font-weight:800;color:#183F32;margin-bottom:8px}
.feedback-social-links{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.feedback-social-btn{display:flex;align-items:center;justify-content:center;text-align:center;text-decoration:none;font-size:11px;font-weight:900;line-height:1.3;border-radius:12px;border:1px solid #CFE4D9;padding:11px 10px;background:#F6FBF8;color:#113A2C}
.feedback-social-btn.primary{background:#0F7B5A;color:#fff;border-color:#0F7B5A}
@media(max-width:480px){.paid-actions{width:100%;margin-left:0}.receipt-mini-btn{flex:1 1 0}.success-secondary-actions{gap:8px}.success-chip-btn{flex:1 1 0;min-width:0}.feedback-social-links{grid-template-columns:1fr}}

/* V5.16.7 — payment actions + branded social CTAs (mobile-first) */
.paid-actions{
  width:100%;
  margin:8px 0 0!important;
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px!important;
}
.receipt-mini-btn{
  width:100%;
  min-width:0;
  min-height:46px;
  padding:11px 12px;
  border:1px solid #07543F!important;
  border-radius:13px;
  background:#07543F!important;
  color:#fff!important;
  font-size:10.5px;
  font-weight:900;
  line-height:1.15;
  text-align:center;
  box-shadow:0 8px 18px rgba(7,84,63,.18);
  cursor:pointer;
  transition:transform .16s ease,box-shadow .16s ease,background .16s ease;
  -webkit-tap-highlight-color:transparent;
}
.receipt-mini-btn:hover{background:#064936!important;box-shadow:0 10px 22px rgba(7,84,63,.22)}
.receipt-mini-btn:active{transform:translateY(1px) scale(.985);box-shadow:0 5px 12px rgba(7,84,63,.16)}
.receipt-mini-btn:focus-visible{outline:3px solid rgba(15,123,90,.22);outline-offset:2px}

.success-secondary-actions{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px!important;
  width:100%;
  margin-top:14px;
}
.success-chip-btn,
.success-chip-btn.primary{
  width:100%;
  min-width:0!important;
  min-height:46px;
  padding:11px 12px;
  border:1px solid #07543F!important;
  border-radius:13px!important;
  background:#07543F!important;
  color:#fff!important;
  font-size:10.5px;
  font-weight:900;
  line-height:1.15;
  box-shadow:0 8px 18px rgba(7,84,63,.18);
}
.success-chip-btn:hover,.success-chip-btn.primary:hover{background:#064936!important}
.success-chip-btn:active,.success-chip-btn.primary:active{transform:translateY(1px) scale(.985)}

.feedback-social-links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px!important;
}
.feedback-social-btn{
  min-width:0;
  min-height:50px;
  padding:11px 12px!important;
  border-radius:13px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px;
  text-align:center;
  text-decoration:none!important;
  font-size:10.5px!important;
  font-weight:900!important;
  line-height:1.2;
  box-sizing:border-box;
  transition:transform .16s ease,box-shadow .16s ease,filter .16s ease;
  -webkit-tap-highlight-color:transparent;
}
.feedback-social-btn .feedback-brand-icon{
  flex:0 0 auto;
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
}
.feedback-social-btn .feedback-brand-icon svg{display:block;width:100%;height:100%}
.feedback-social-btn.google-brand{
  background:#fff!important;
  color:#202124!important;
  border:1px solid #DADCE0!important;
  box-shadow:0 5px 14px rgba(60,64,67,.14);
}
.feedback-social-btn.google-brand:hover{background:#F8FAFD!important;box-shadow:0 7px 18px rgba(60,64,67,.18)}
.feedback-social-btn.instagram-brand{
  color:#fff!important;
  border:1px solid transparent!important;
  background:linear-gradient(135deg,#833AB4 0%,#C13584 34%,#E1306C 56%,#F56040 76%,#FCAF45 100%)!important;
  box-shadow:0 7px 18px rgba(193,53,132,.24);
}
.feedback-social-btn.instagram-brand .instagram-glyph{color:#fff}
.feedback-social-btn.instagram-brand:hover{filter:saturate(1.08) brightness(1.02)}
.feedback-social-btn.google-brand:active,.feedback-social-btn.instagram-brand:active{transform:translateY(1px) scale(.985)}
.feedback-social-btn.google-brand:focus-visible,.feedback-social-btn.instagram-brand:focus-visible{outline:3px solid rgba(15,123,90,.20);outline-offset:2px}

@media(max-width:360px){
  .paid-actions,.success-secondary-actions,.feedback-social-links{grid-template-columns:1fr!important;gap:9px!important}
}

/* V5.31.25 — completed-order recall + premium responsive tracking payment actions */
.paid-card{
  display:grid!important;
  grid-template-columns:minmax(0,1fr)!important;
  gap:12px!important;
  align-items:stretch!important;
  padding:15px!important;
  border-radius:16px!important;
  background:#EAF8F0!important;
  border:1px solid #BCE0CC!important;
  color:#075E45!important;
}
.paid-card-copy{
  display:flex;
  align-items:flex-start;
  gap:10px;
  min-width:0;
}
.paid-card-copy>i{
  flex:0 0 30px;
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#0F7B5A;
  color:#fff;
  font-size:14px;
  margin-top:1px;
}
.paid-card-copy>div{min-width:0;flex:1 1 auto}
.paid-card-copy strong{
  display:block;
  font-size:17px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.02em;
}
.paid-card-copy small{
  display:block;
  margin-top:4px!important;
  font-size:10.5px!important;
  line-height:1.45;
  font-weight:650;
  color:#477365;
}
.paid-card>.paid-actions{
  width:100%!important;
  margin:0!important;
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:12px!important;
}
.paid-card>.paid-actions .receipt-mini-btn{
  width:100%!important;
  min-width:0!important;
  min-height:48px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:7px!important;
  padding:11px 10px!important;
  border:1px solid #07543F!important;
  border-radius:13px!important;
  background:#07543F!important;
  color:#fff!important;
  font-size:11px!important;
  font-weight:900!important;
  line-height:1.15!important;
  text-align:center!important;
  white-space:normal!important;
  box-shadow:0 7px 16px rgba(7,84,63,.18)!important;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.paid-card>.paid-actions .receipt-mini-btn i{font-size:12px;flex:0 0 auto}
.paid-card>.paid-actions .receipt-mini-btn span{min-width:0}
.paid-card>.paid-actions .receipt-mini-btn:hover{background:#064936!important;box-shadow:0 9px 20px rgba(7,84,63,.22)!important}
.paid-card>.paid-actions .receipt-mini-btn:active{transform:translateY(1px) scale(.985)}
.paid-card>.paid-actions .receipt-mini-btn:focus-visible{outline:3px solid rgba(15,123,90,.22);outline-offset:2px}

@media(max-width:340px){
  .paid-card>.paid-actions{grid-template-columns:1fr!important;gap:9px!important}
}

/* ==========================================================
   V5.32.2 — RESTAURANT PREMIUM CART + UPSELL + WHATSAPP + TRACKING
   Mobile-first parity pass using the stable Hotel QR component language.
   ========================================================== */
.cart-items{gap:8px!important;margin-bottom:12px!important}
.cart-item.cart-item--compact{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  grid-template-areas:"info price" "info actions"!important;
  align-items:center!important;
  gap:5px 10px!important;
  padding:10px 11px!important;
  min-height:66px!important;
  border-radius:14px!important;
  border:1px solid #DCE8E2!important;
  background:#fff!important;
  box-shadow:0 3px 10px rgba(15,66,51,.035)!important;
}
.cart-item--compact .cart-item-info{grid-area:info!important;min-width:0!important}
.cart-item--compact .cart-item-name{margin:0!important;font-size:12px!important;line-height:1.25!important;font-weight:900!important;color:#173E34!important;white-space:normal!important;overflow-wrap:anywhere!important}
.cart-item--compact .cart-item-mods,.cart-item--compact .cart-item-inst{margin-top:3px!important;font-size:8.5px!important;line-height:1.3!important;color:#71837C!important}
.cart-item--compact .cart-item-price{grid-area:price!important;min-width:0!important;text-align:right!important;font-size:11px!important;line-height:1!important;font-weight:900!important;color:#173E34!important;white-space:nowrap!important}
.cart-item--compact .cart-item-actions{grid-area:actions!important;display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:flex-end!important;gap:6px!important}
.cart-item--compact .qty-control--sm{display:grid!important;grid-template-columns:28px 24px 28px!important;align-items:center!important;height:30px!important;border:1px solid #CFE0D8!important;border-radius:10px!important;background:#F7FBF9!important;overflow:hidden!important}
.cart-item--compact .qty-control--sm button{width:28px!important;height:30px!important;min-width:28px!important;min-height:30px!important;border:0!important;background:transparent!important;color:#07543F!important;font-size:15px!important;font-weight:900!important;padding:0!important}
.cart-item--compact .qty-control--sm span{display:grid!important;place-items:center!important;font-size:10px!important;font-weight:900!important;color:#173E34!important}
.remove-item--minus{width:30px!important;height:30px!important;min-width:30px!important;min-height:30px!important;margin:0!important;padding:0!important;border:1px solid #F0C5C3!important;border-radius:10px!important;background:#FFF5F4!important;color:#C13E36!important;font-size:18px!important;line-height:1!important;font-weight:900!important;display:grid!important;place-items:center!important}
.order-instruction{margin:10px 0 12px!important;padding:10px!important;border:1px solid #E0E9E4!important;border-radius:14px!important;background:#FBFDFC!important}
.order-instruction label{display:block!important;margin-bottom:6px!important;font-size:9px!important;line-height:1.3!important;font-weight:900!important;color:#365C50!important}
.order-instruction textarea{min-height:58px!important;max-height:95px!important;padding:9px 10px!important;border-radius:11px!important;font-size:10px!important;line-height:1.4!important;resize:vertical!important}

.cart-upsell{margin:12px 0 14px!important;padding:12px!important;border:1px solid #CFE3D9!important;border-radius:17px!important;background:linear-gradient(145deg,#F3FAF6,#FFFAF1)!important;overflow:hidden!important}
.cart-upsell-head{display:flex!important;align-items:flex-end!important;justify-content:space-between!important;gap:10px!important;margin-bottom:9px!important}
.cart-upsell-head small{display:block!important;font-size:7px!important;letter-spacing:.12em!important;color:#0F7B5A!important;font-weight:900!important}
.cart-upsell-head h4{margin:2px 0 0!important;font-size:13px!important;line-height:1.2!important;color:#173E34!important}
.cart-upsell-head>span{font-size:8px!important;color:#71877E!important;font-weight:800!important;white-space:nowrap!important}
.cart-upsell-track{display:flex!important;gap:8px!important;overflow-x:auto!important;overflow-y:hidden!important;scroll-snap-type:x proximity!important;overscroll-behavior-inline:contain!important;scrollbar-width:none!important;padding:1px 1px 5px!important;-webkit-overflow-scrolling:touch!important}
.cart-upsell-track::-webkit-scrollbar{display:none!important}
.cart-upsell-card{flex:0 0 min(76%,235px)!important;min-width:0!important;scroll-snap-align:start!important;display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;align-items:center!important;gap:8px!important;padding:10px!important;border:1px solid #DCE8E2!important;border-radius:13px!important;background:#fff!important;box-shadow:0 4px 12px rgba(12,65,50,.05)!important}
.cart-upsell-copy{min-width:0!important}
.cart-upsell-copy b{display:block!important;font-size:10px!important;line-height:1.25!important;color:#173E34!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.cart-upsell-copy span{display:block!important;margin-top:3px!important;font-size:9px!important;font-weight:900!important;color:#607873!important}
.cart-upsell-card button{min-width:58px!important;min-height:32px!important;border:0!important;border-radius:10px!important;background:#0F7B5A!important;color:#fff!important;font-size:9px!important;font-weight:900!important;padding:0 10px!important;box-shadow:0 5px 12px rgba(15,123,90,.15)!important}
.cart-upsell-card button:active{transform:translateY(1px) scale(.98)}

/* One-line WhatsApp consent: no oversized icon and no redundant second line. */
.whatsapp-update-box{min-height:48px!important;padding:9px 11px!important;border:1px solid #BFE0CD!important;border-radius:14px!important;background:linear-gradient(135deg,#F1FAF5,#F8FCFA)!important;gap:8px!important;box-shadow:0 4px 14px rgba(15,123,90,.06)!important;overflow:hidden!important}
.whatsapp-update-box>input{width:19px!important;height:19px!important;flex:0 0 19px!important;border-radius:6px!important}
.whatsapp-check{width:27px!important;height:27px!important;flex:0 0 27px!important;box-shadow:0 3px 10px rgba(37,211,102,.18)!important}
.whatsapp-check svg{width:15px!important;height:15px!important}
.whatsapp-update-copy{display:block!important;min-width:0!important;flex:1 1 auto!important;overflow:hidden!important}
.whatsapp-update-box b{display:block!important;font-size:clamp(9.5px,2.8vw,11px)!important;line-height:1.2!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;color:#113A2C!important;font-weight:900!important}
.whatsapp-update-box small{display:none!important}

/* Premium order-tracking surface. */
#trackingSheetBody{padding-bottom:calc(18px + env(safe-area-inset-bottom))}
.tracking-summary{padding:14px!important;border:1px solid #DCE8E2!important;border-radius:16px!important;background:linear-gradient(145deg,#F7FCF9,#FFFBF2)!important;box-shadow:0 7px 20px rgba(12,65,50,.05)!important}
.tracking-summary h3{font-size:17px!important;line-height:1.25!important;color:#123B2F!important}
.tracking-summary p{font-size:9.5px!important;line-height:1.45!important;color:#607873!important}
.confirmation-card,.ready-card,.served-card{border-radius:14px!important;padding:12px 13px!important;font-size:10px!important;line-height:1.45!important;font-weight:800!important}
.timeline{margin:13px 0!important;padding:13px!important;border:1px solid #DCE8E2!important;border-radius:16px!important;background:#fff!important}
.timeline-step{min-height:52px!important;gap:11px!important}
.timeline-icon{width:30px!important;height:30px!important;flex:0 0 30px!important;border-width:2px!important;box-shadow:0 0 0 4px #fff!important}
.timeline-step.done .timeline-icon,.timeline-step.active .timeline-icon{background:#0F7B5A!important;border-color:#0F7B5A!important;color:#fff!important}
.timeline-step.active .timeline-icon{box-shadow:0 0 0 4px #E8F6F0!important}
.timeline-label{font-size:11px!important;font-weight:900!important;color:#173E34!important}
.timeline-desc{font-size:8.7px!important;line-height:1.4!important;color:#71837C!important}
.tracking-items,.tracking-bill-breakdown{border-radius:14px!important;border-color:#E0EAE5!important;background:#fff!important}
.tracking-action-btn,.tracking-add-more-btn{min-height:44px!important;border-radius:12px!important;font-weight:900!important}
.order-progress-bar{border-top:1px solid #DDECE5!important;background:linear-gradient(180deg,#F8FCFA,#F1F9F5)!important}
.progress-title{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important}
.progress-title b{font-size:9.5px!important;color:#173E34!important}
.progress-title span{font-size:8px!important;color:#0F7B5A!important;font-weight:900!important;white-space:nowrap!important}

/* Keep completion actions aligned with the Hotel-quality component. */
.paid-card>.paid-actions{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;width:100%!important;margin-top:10px!important}
.paid-card>.paid-actions .receipt-mini-btn{min-height:48px!important;border-radius:13px!important;background:#07543F!important;border-color:#07543F!important;color:#fff!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:7px!important;font-size:10.8px!important;font-weight:900!important;box-shadow:0 7px 17px rgba(7,84,63,.17)!important}

@media(max-width:350px){
  .cart-item.cart-item--compact{grid-template-columns:minmax(0,1fr)!important;grid-template-areas:"info" "price" "actions"!important;gap:6px!important}
  .cart-item--compact .cart-item-price{text-align:left!important}
  .cart-item--compact .cart-item-actions{justify-content:space-between!important}
  .cart-upsell-card{flex-basis:86%!important}
  .paid-card>.paid-actions{grid-template-columns:1fr!important;gap:9px!important}
  .whatsapp-update-box{gap:7px!important;padding:8px 9px!important}
  .whatsapp-update-box b{font-size:9.4px!important}
}


/* V5.32.3 · Restaurant QR responsive WhatsApp brand icon */
.whatsapp-update-box .whatsapp-check{
  width:clamp(29px,8vw,33px)!important;
  height:clamp(29px,8vw,33px)!important;
  flex:0 0 clamp(29px,8vw,33px)!important;
  border-radius:50%!important;
  background:#25D366!important;
  color:#fff!important;
  display:grid!important;
  place-items:center!important;
  border:2px solid rgba(255,255,255,.96)!important;
  box-shadow:0 0 0 1px rgba(37,211,102,.24),0 5px 12px rgba(37,211,102,.20)!important;
  overflow:hidden!important;
  transform:none!important;
}
.whatsapp-update-box .whatsapp-check .whatsapp-brand-svg{
  width:clamp(17px,4.8vw,19px)!important;
  height:clamp(17px,4.8vw,19px)!important;
  display:block!important;
  fill:#fff!important;
  flex:none!important;
}
.whatsapp-update-box:has(>input:checked) .whatsapp-check{
  box-shadow:0 0 0 2px rgba(37,211,102,.17),0 6px 14px rgba(37,211,102,.23)!important;
}
@media(max-width:360px){
  .whatsapp-update-box{gap:7px!important;padding-inline:9px!important}
  .whatsapp-update-box .whatsapp-check{width:29px!important;height:29px!important;flex-basis:29px!important}
  .whatsapp-update-box .whatsapp-check .whatsapp-brand-svg{width:17px!important;height:17px!important}
}

/* V5.38.0 — scheduled meal window */
.dq-meal-window{margin:0 14px 10px;padding:10px 12px;border:1px solid #b9dfd0;border-radius:14px;background:linear-gradient(135deg,#f4fbf8,#eef8ff);display:flex;align-items:center;justify-content:space-between;gap:10px;color:#0c4335;box-shadow:0 7px 20px rgba(15,123,90,.06)}
.dq-meal-window span{display:flex;align-items:center;gap:8px;min-width:0}.dq-meal-window i{color:#0f7b5a}.dq-meal-window b{font-size:12px;font-weight:850;line-height:1.3}.dq-meal-window em{flex:0 0 auto;font-style:normal;font-size:10.5px;font-weight:850;color:#07543f;background:#fff;border:1px solid #c9e7dc;border-radius:999px;padding:5px 8px}
@media(max-width:420px){.dq-meal-window{margin-left:10px;margin-right:10px;align-items:flex-start}.dq-meal-window b{font-size:11.5px}.dq-meal-window em{font-size:10px}}

/* V5.44.3.4 — compact one-line customer WhatsApp opt-in */
.whatsapp-update-box{
  display:flex!important;align-items:center!important;flex-wrap:nowrap!important;
  min-height:52px!important;max-height:58px!important;padding:9px 12px!important;gap:9px!important;
  border:1px solid #BFE0CD!important;border-radius:14px!important;background:#F3FAF6!important;overflow:hidden!important;
}
.whatsapp-update-box>input{position:relative!important;inset:auto!important;opacity:1!important;visibility:visible!important;display:grid!important;flex:0 0 20px!important;width:20px!important;height:20px!important;margin:0!important}
.whatsapp-update-box .whatsapp-check{flex:0 0 30px!important;width:30px!important;height:30px!important;margin:0!important}
.whatsapp-update-box .whatsapp-update-copy{display:block!important;flex:1 1 auto!important;min-width:0!important;overflow:hidden!important}
.whatsapp-update-box .whatsapp-update-copy b{display:block!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;font-size:12px!important;line-height:1.2!important;margin:0!important}
@media(max-width:430px){
  .whatsapp-update-box{min-height:50px!important;max-height:54px!important;padding:8px 10px!important;gap:8px!important}
  .whatsapp-update-box .whatsapp-check{width:28px!important;height:28px!important;flex-basis:28px!important}
  .whatsapp-update-box .whatsapp-update-copy b{font-size:11px!important}
}


/* V5.44.3.5 — QR checkout WhatsApp icon + text hard-lock to one row */
.whatsapp-update-box{
  display:grid!important;
  grid-template-columns:20px minmax(0,1fr)!important;
  align-items:center!important;
  column-gap:9px!important;
  width:100%!important;
  min-height:50px!important;
  padding:8px 11px!important;
  overflow:hidden!important;
}
.whatsapp-update-box>input{
  grid-column:1!important;
  grid-row:1!important;
  width:20px!important;
  height:20px!important;
  min-width:20px!important;
  margin:0!important;
  align-self:center!important;
}
.whatsapp-update-main{
  grid-column:2!important;
  grid-row:1!important;
  display:flex!important;
  flex-direction:row!important;
  flex-wrap:nowrap!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:8px!important;
  min-width:0!important;
  width:100%!important;
  overflow:hidden!important;
}
.whatsapp-update-main .whatsapp-check{
  display:grid!important;
  place-items:center!important;
  flex:0 0 28px!important;
  width:28px!important;
  height:28px!important;
  margin:0!important;
}
.whatsapp-update-main .whatsapp-brand-svg{
  display:block!important;
  width:16px!important;
  height:16px!important;
  flex:none!important;
}
.whatsapp-update-main .whatsapp-update-copy{
  display:block!important;
  flex:1 1 auto!important;
  min-width:0!important;
  overflow:visible!important;
}
.whatsapp-update-main .whatsapp-update-copy b{
  display:block!important;
  margin:0!important;
  white-space:nowrap!important;
  overflow:visible!important;
  text-overflow:clip!important;
  font-size:clamp(10px,2.65vw,11.5px)!important;
  line-height:1.15!important;
  font-weight:900!important;
  color:#113A2C!important;
}
@media(max-width:360px){
  .whatsapp-update-box{grid-template-columns:19px minmax(0,1fr)!important;column-gap:7px!important;padding:8px 9px!important}
  .whatsapp-update-box>input{width:19px!important;height:19px!important;min-width:19px!important}
  .whatsapp-update-main{gap:6px!important}
  .whatsapp-update-main .whatsapp-check{width:26px!important;height:26px!important;flex-basis:26px!important}
  .whatsapp-update-main .whatsapp-brand-svg{width:15px!important;height:15px!important}
  .whatsapp-update-main .whatsapp-update-copy b{font-size:9.8px!important}
}

/* Delivery Studio — intentionally leaves .dd-menu-mode and QR menu assets untouched. */
body.dd-customer-app:not(.dd-menu-mode){background:#f7f8fa!important;color:#202534;font-family:Inter,system-ui,sans-serif}
.dd-customer-app:not(.dd-menu-mode) .dd-shell{max-width:1160px!important;padding:0 28px 40px!important;margin:auto}
.dq-storefront svg,.dq-payment-methods svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:1.8;flex-shrink:0}
.dq-store-nav{display:flex;align-items:center;gap:22px;padding:25px 0;border-bottom:1px solid #e3e5e9}.dq-store-nav>img{width:133px;height:38px;object-fit:contain}.dq-store-nav>span{font-size:10px;font-weight:700;letter-spacing:1.8px;color:#697080}.dq-store-nav button{margin-left:auto;display:flex;gap:8px;align-items:center}
.dd-customer-app:not(.dd-menu-mode) button.secondary{background:#fff!important;color:#303746!important;border:1px solid #dfe2e8!important;border-radius:12px!important;box-shadow:none!important;min-height:44px}
.dq-address-bar{display:flex!important;gap:12px;align-items:center;background:transparent!important;color:#222a37!important;border:0!important;padding:22px 0!important;box-shadow:none!important;text-align:left;width:100%}.dq-address-bar>svg{color:#0f7b5a}.dq-address-bar>span:nth-child(2){display:grid;gap:5px}.dq-address-bar small{font-size:9px;letter-spacing:1.5px;color:#727684}.dq-address-bar b{font-size:14px}.dq-address-bar>span:last-child{margin-left:auto;font-size:12px;color:#0f7b5a}
.dq-store-hero{display:grid;grid-template-columns:1.04fr 1fr;background:#fff;border:1px solid #e6e7eb;border-radius:24px;overflow:hidden;min-height:370px}.dq-store-copy{padding:48px 40px}.dq-eyebrow{font-size:10px;letter-spacing:1.65px;color:#0b694d;font-weight:800}.dq-store-copy h1{font-size:48px!important;line-height:1.09!important;letter-spacing:-2px!important;color:#202534!important;margin:18px 0!important;font-weight:800!important}.dq-store-copy>p{color:#707581;font-size:15px;line-height:1.7;max-width:380px}.dq-store-facts{display:flex;flex-wrap:wrap;gap:18px;margin:20px 0 25px;font-size:12px;color:#555d69}.dq-store-facts>span{display:flex;gap:6px;align-items:center}.dq-store-facts>span:first-child{color:#236c4f}.dq-primary{display:flex!important;align-items:center;gap:22px;background:#0f7b5a!important;color:white!important;padding:16px 22px!important;border:0!important;border-radius:12px!important;font-size:14px!important;box-shadow:0 6px 16px #0f7b5a22!important}.dq-hero-footnote{display:block;color:#838691;font-size:10px;margin-top:14px}.dq-store-photo{position:relative;min-height:350px;background:#eee5df}.dq-store-photo>img{width:100%;height:100%;position:absolute;object-fit:cover}.dq-store-photo>span{position:absolute;bottom:24px;left:24px;background:#ffffffed;color:#353b42;padding:12px 18px;border-radius:10px;font-size:12px;font-weight:700;backdrop-filter:blur(12px)}
.dq-service-status{display:flex;align-items:center;gap:17px;padding:23px 26px;margin:22px 0 48px;background:#fff;border:1px solid #e4e7ec;border-radius:16px}.dq-service-icon{width:45px;height:45px;background:#e7f6f0;color:#0f7b5a;border-radius:12px;display:grid;place-items:center;flex-shrink:0}.dq-service-status b{font-size:14px}.dq-service-status p{font-size:12px;color:#727783;line-height:1.6;margin:6px 0 0}.dq-service-status button{margin-left:auto;white-space:nowrap}.dq-service-status.blocked{border-color:#e6bab6}.dq-service-status.ok .dq-service-icon{color:#18734b;background:#e9f6ed}.dq-journey h2{font-size:26px!important;color:#252b38!important;margin:12px 0 22px!important;letter-spacing:-.7px}.dq-journey-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.dq-journey-grid article{padding:24px;background:#fff;border:1px solid #e4e7ec;border-radius:16px}.dq-journey-grid article>span{display:flex;align-items:center;justify-content:space-between;font-size:11px;font-weight:700;color:#c4582e}.dq-journey-grid h3{font-size:15px;margin:24px 0 9px}.dq-journey-grid p{font-size:12px;line-height:1.8;color:#797e89}.dq-store-footer{display:flex;flex-wrap:wrap;align-items:center;gap:18px;margin-top:40px;padding:25px 0;border-top:1px solid #dfe3e8}.dq-store-footer p{font-size:12px;color:#727783}.dq-store-footer .dd-actions{margin-left:auto}.dq-store-footer>small{width:100%;font-size:10px;color:#888d96}
.dd-customer-app:not(.dd-menu-mode) .dd-card{background:#fff!important;border:1px solid #e1e4e9!important;border-radius:18px!important;box-shadow:none!important}.dd-customer-app:not(.dd-menu-mode) .dd-checkout-head{padding:28px 0!important}.dd-customer-app:not(.dd-menu-mode) .dd-checkout-head h1{font-size:32px;color:#252b38!important}.dd-customer-app:not(.dd-menu-mode) .dd-checkout-head small{color:#0f7b5a!important}.dq-checkout-steps{display:flex;gap:28px;border-bottom:1px solid #e1e4e9;padding:0 0 22px;margin-bottom:24px;color:#9196a0;font-size:12px;font-weight:600}.dq-checkout-steps .done{color:#278158}.dq-checkout-steps .active{color:#0f7b5a}.dd-customer-app .dd-checkout-layout{grid-template-columns:minmax(0,1.1fr) minmax(0,1fr)!important;gap:24px!important}.dd-customer-app .dd-checkout-layout>*{min-width:0}.dd-customer-app .dd-checkout-form{padding:26px!important}.dd-customer-app .dd-checkout-form label{font-size:12px;gap:7px}.dd-customer-app:not(.dd-menu-mode) input:not([type=checkbox]):not([type=radio]),.dd-customer-app:not(.dd-menu-mode) textarea{border:1px solid #dfe3e9!important;border-radius:10px!important;background:#fafbfd!important;min-height:46px}.dd-customer-app input[type=radio],.dd-customer-app input[type=checkbox]{accent-color:#0f7b5a}.dq-payment-methods{border:0;padding:0;margin:20px 0;min-width:0}.dq-payment-methods legend{font-size:15px;font-weight:750;margin-bottom:12px}.dq-payment-option{display:flex!important;align-items:center;gap:12px!important;cursor:pointer;padding:15px!important;border:1px solid #e2e5eb;border-radius:12px;margin-bottom:10px!important}.dq-payment-option:has(input:checked){background:#fff5ee;border-color:#75bda2}.dq-payment-option input{width:16px!important;height:16px!important;min-height:0!important}.dq-pay-icon{display:grid;place-items:center;width:32px;height:32px;background:#f1f2f5;border-radius:9px;font-size:20px}.dq-payment-option b,.dq-payment-option small{display:block}.dq-payment-option small{font-size:10px;color:#7a7e89;margin-top:4px;font-weight:400}.dd-customer-app #dd-place{background:#0f7b5a!important;color:white!important;border:0!important;border-radius:12px!important;min-height:52px;box-shadow:none!important}.dd-customer-app .dd-secure-note{font-size:11px;line-height:1.7;color:#7b818b}.dd-customer-app .dd-tracking-hero{background:#edf8f3!important;color:#29313c!important;border:1px solid #cce4da!important;box-shadow:none!important}.dd-customer-app .dd-tracking-hero h1{color:#252b38!important}.dd-customer-app .dd-track-map-card{border-radius:20px!important;overflow:hidden;border:1px solid #dfe3e9!important;margin-top:25px}.dd-customer-app .dd-track-map-head{background:#fff!important;color:#27303f!important}.dd-customer-app .dd-map-fallback{min-height:180px;display:grid;place-content:center;padding:28px;text-align:center;background:#edf0f4;color:#616d7c;font-size:14px}.dd-customer-app .dd-delivery-pin{background:#fff7e8!important;border-color:#eed3a5!important}.dd-customer-app:not(.dd-menu-mode) :focus-visible{outline:3px solid #56a88a!important;outline-offset:3px}.dd-customer-app .dd-notice{position:sticky;top:8px;z-index:1000}
@media(max-width:700px){.dd-customer-app:not(.dd-menu-mode) .dd-shell{padding:0 16px 30px!important}.dq-store-nav{padding:18px 0;gap:10px}.dq-store-nav>span{display:none}.dq-store-nav>img{width:112px}.dq-store-nav button{font-size:11px!important;padding:9px 12px!important}.dq-address-bar{padding:18px 0!important}.dq-store-hero{display:flex;flex-direction:column-reverse;border-radius:18px}.dq-store-photo{min-height:205px;max-height:205px}.dq-store-photo>span{bottom:14px;left:16px;padding:9px 13px;font-size:10px}.dq-store-copy{padding:25px 23px}.dq-store-copy h1{font-size:36px!important;margin:12px 0!important}.dq-store-copy>p{font-size:13px;margin-bottom:12px}.dq-store-facts{margin:14px 0 20px;font-size:11px}.dq-primary{width:100%;justify-content:space-between}.dq-service-status{flex-wrap:wrap;padding:18px;gap:12px;margin:17px 0 32px}.dq-service-status>div{flex:1}.dq-service-status button{width:100%;margin:0}.dq-journey h2{font-size:23px!important}.dq-journey-grid{grid-template-columns:1fr;gap:12px}.dq-journey-grid article{padding:20px}.dq-journey-grid h3{margin-top:14px}.dq-journey-grid p{margin-bottom:0}.dq-store-footer .dd-actions{margin-left:0}.dd-customer-app .dd-checkout-layout{grid-template-columns:1fr!important}.dd-customer-app .dd-checkout-form{padding:20px!important}.dq-checkout-steps{gap:18px;font-size:10px}.dd-customer-app .dd-checkout-head h1{font-size:26px!important}.dd-customer-app .progress-line{overflow-x:auto;justify-content:flex-start;padding-bottom:12px}.dd-customer-app .progress-step{min-width:60px}.dd-customer-app .dd-track-grid{grid-template-columns:1fr!important}}
@media(prefers-reduced-motion:reduce){.dd-customer-app:not(.dd-menu-mode) *{animation:none!important;scroll-behavior:auto!important}}
.dq-cart-quantity{display:flex;align-items:center;gap:10px;flex-shrink:0}.dd-customer-app .dq-cart-quantity button.secondary{padding:0!important;min-width:32px!important;min-height:32px!important;height:32px!important;border-radius:8px!important}.dq-cart-quantity span{font-size:13px;font-weight:700}.dd-customer-app .dd-checkout-line{gap:12px}.dd-customer-app .dd-checkout-line>div:first-child{min-width:0;overflow-wrap:anywhere}

/* DineQube V5.54 — restaurant-first delivery ordering */
body.dd-customer-app.dd-menu-mode{background:#edede8!important}
.dd-customer-app.dd-menu-mode .dd-shell{width:100%!important;max-width:480px!important;min-height:100dvh!important;margin:0 auto!important;padding:0 0 112px!important;background:#fff!important;box-shadow:0 0 35px rgba(12,41,35,.1)!important}
.dd-customer-app.dd-menu-mode .cart-bar{width:min(456px,calc(100vw - 24px))!important;left:50%!important;right:auto!important;transform:translateX(-50%)!important}
.dd-customer-app.dd-menu-mode .hero-meta{display:flex!important;align-items:center!important;gap:10px!important;flex-wrap:wrap!important}.dd-customer-app.dd-menu-mode .hero-meta button{display:inline-flex!important;align-items:center!important;gap:4px!important;min-height:0!important;padding:0!important;border:0!important;background:transparent!important;color:#0b7b59!important;font:inherit!important;font-weight:800!important}.dd-customer-app.dd-menu-mode .hero-meta button svg{width:12px;height:12px;fill:none;stroke:currentColor;stroke-width:2}.dd-delivery-badge{border:0!important;cursor:pointer}.dd-customer-app.dd-menu-mode .compact-logo img{width:100%;height:100%;object-fit:cover;border-radius:inherit}
.dq54-checkout{height:100dvh;max-width:1240px;margin:auto;padding:18px 24px;box-sizing:border-box;display:flex;flex-direction:column;overflow:hidden;color:#162b25}
.dq54-checkout svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.9}
.dq54-checkout-head{height:58px;display:grid;grid-template-columns:46px 1fr auto;align-items:center;gap:12px;border-bottom:1px solid #e1e8e5;flex:0 0 auto}
.dq54-checkout-head .dq54-back{width:38px!important;height:38px!important;min-height:38px!important;padding:0!important;border:1px solid #d9e4df!important;border-radius:11px!important;background:#fff!important;color:#183c31!important;font-size:20px!important}
.dq54-checkout-head div{display:grid;gap:1px}.dq54-checkout-head small{font-size:8px;font-weight:850;letter-spacing:.1em;color:#60746d}.dq54-checkout-head h1{margin:0!important;font-size:21px!important;color:#122f27!important;letter-spacing:-.03em}
.dq54-checkout-head>span{display:flex;align-items:center;gap:6px;padding:7px 10px;border-radius:999px;background:#eaf7f1;color:#0f7b5a;font-size:10px;font-weight:800}
.dq54-checkout>form{min-height:0;flex:1}.dq54-checkout-grid{height:100%;display:grid;grid-template-columns:minmax(0,1.12fr) minmax(370px,.88fr);gap:16px;padding-top:16px;box-sizing:border-box;min-height:0}
.dq54-checkout-main,.dq54-checkout-side{min-width:0;min-height:0}.dq54-checkout-main{display:flex;flex-direction:column;gap:12px}.dq54-checkout-side{display:flex;flex-direction:column;gap:12px}
.dq54-address,.dq54-cart,.dq54-bill,.dq54-contact,.dq54-pay,.dq54-place{border:1px solid #dfe7e3;border-radius:16px;background:#fff;box-shadow:0 5px 18px rgba(14,59,45,.045)}
.dq54-address{display:grid!important;grid-template-columns:40px minmax(0,1fr) auto;gap:12px;align-items:center;width:100%;padding:13px 14px!important;text-align:left!important;color:#17372d!important;min-height:68px!important}
.dq54-address>span:first-child{width:38px;height:38px;border-radius:11px;display:grid;place-items:center;background:#e8f6f0;color:#0f7b5a}.dq54-address>span:nth-child(2){display:grid;gap:2px;min-width:0}.dq54-address small{font-size:8px;letter-spacing:.1em;color:#0f7b5a}.dq54-address b{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:13px}.dq54-address em{font-size:9px;color:#718078;font-style:normal}.dq54-address strong{font-size:10px;color:#0f7b5a}
.dq54-cart{padding:15px;min-height:0;overflow:auto;flex:1}.dq54-cart>header{display:flex;justify-content:space-between;align-items:center;margin-bottom:9px}.dq54-cart header small{font-size:8px;color:#0f7b5a;letter-spacing:.1em;font-weight:850}.dq54-cart h2{margin:2px 0 0!important;font-size:17px!important;color:#17372d!important}.dq54-cart header button{border:0!important;background:#edf7f3!important;color:#0f7b5a!important;min-height:34px!important;border-radius:9px!important;padding:7px 10px!important;font-size:10px!important}
.dq54-cart .dd-checkout-line{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:12px;padding:10px 0;border-bottom:1px solid #edf1ef}.dq54-cart .dd-checkout-line b{font-size:12px}.dq54-cart .dd-checkout-line small{display:block;color:#728079;font-size:9px;margin-top:3px}.dq54-cart .dq-cart-quantity{gap:6px}.dq54-cart .dq-cart-quantity button{width:27px!important;min-width:27px!important;height:27px!important;min-height:27px!important;border-radius:8px!important}.dq54-cart .dq-cart-quantity span{font-size:11px}
.dq54-offer{display:grid;grid-template-columns:1fr auto;gap:7px;margin-top:10px}.dq54-offer input{height:40px!important;min-height:40px!important;border:1px dashed #bfcfc8!important;background:#fbfdfc!important;border-radius:10px!important}.dq54-offer button{height:40px!important;min-height:40px!important;border:0!important;border-radius:10px!important;background:#eaf7f1!important;color:#0f7b5a!important;padding:0 16px!important}
.dq54-bill{flex:0 0 auto;overflow:hidden}.dq54-bill summary{display:flex;justify-content:space-between;align-items:center;padding:13px 15px;cursor:pointer;font-size:12px;font-weight:750}.dq54-bill summary b{font-size:15px;color:#0f7b5a}.dq54-bill #dd-totals{padding:0 15px 13px}.dq54-bill .dd-totals{font-size:10px!important;margin:0!important;gap:5px!important}.dq54-bill .dd-totals dt:last-of-type,.dq54-bill .dd-totals dd:last-of-type{font-size:12px!important}
.dq54-contact{padding:15px}.dq54-contact header{display:grid;gap:3px;margin-bottom:11px}.dq54-contact header small{font-size:8px;letter-spacing:.1em;color:#0f7b5a;font-weight:850}.dq54-contact header b{font-size:14px}.dq54-fields{display:grid;grid-template-columns:1fr 1fr;gap:8px}.dq54-contact label{font-size:9px!important;color:#586b64!important;gap:4px!important}.dq54-contact input:not([type=checkbox]){height:41px!important;min-height:41px!important;padding:9px 11px!important;border-radius:9px!important;background:#fafcfb!important;border-color:#dce5e1!important;font-size:11px!important}.dq54-contact details{margin-top:9px}.dq54-contact details summary{font-size:10px;font-weight:750;color:#4f655d;cursor:pointer}.dq54-contact details summary span{float:right;color:#82918b;font-weight:500}.dq54-contact details[open]{display:grid;gap:7px}.dq54-contact details[open] summary{margin-bottom:7px}.dq54-wa{display:flex!important;align-items:center;gap:8px!important;margin-top:10px;padding:9px 10px;border-radius:10px;background:#f0faf5;color:#0c6248!important}.dq54-wa input{accent-color:#0f7b5a}
.dq54-pay{border:1px solid #dfe7e3;padding:11px 12px;margin:0}.dq54-pay legend{font-size:12px;font-weight:800;padding:0 4px}.dq54-pay label{position:relative;display:grid!important;grid-template-columns:35px 1fr auto;align-items:center;gap:9px!important;padding:10px!important;border:1px solid #e1e8e5;border-radius:11px;margin:6px 0!important;cursor:pointer}.dq54-pay label:has(input:checked){border-color:#61b697;background:#eff9f5}.dq54-pay input{position:absolute;opacity:0}.dq54-pay label>span{width:32px;height:32px;display:grid;place-items:center;border-radius:9px;background:#eef3f1;color:#0f7b5a;font-size:17px}.dq54-pay label>b{font-size:11px}.dq54-pay label small{display:block;font-size:8px;color:#78867f;font-weight:500;margin-top:2px}.dq54-pay label>i{width:15px;height:15px;border:2px solid #b7c5bf;border-radius:50%;font-size:0}.dq54-pay label:has(input:checked)>i{border:5px solid #0f7b5a}
.dq54-place{margin-top:auto;padding:12px;display:grid;grid-template-columns:auto minmax(180px,1fr);align-items:center;gap:14px}.dq54-place>div{display:grid}.dq54-place small{font-size:8px;letter-spacing:.1em;color:#687a73}.dq54-place b{font-size:18px;color:#12382d}.dq54-place button{min-height:50px!important;border:0!important;border-radius:12px!important;background:#0f7b5a!important;color:#fff!important;display:flex!important;align-items:center;justify-content:space-between;padding:0 17px!important}.dq54-place button span{font-size:18px}
body.dd-customer-app:has(.dq54-checkout){background:#f6f8f7!important}.dd-customer-app:has(.dq54-checkout) .dd-shell{max-width:none!important;padding:0!important}.dd-customer-app:has(.dq54-checkout) #dd-message{position:fixed;top:8px;left:50%;transform:translateX(-50%);z-index:2000;width:min(520px,calc(100vw - 24px))}
@media(max-width:720px){.dq54-checkout{height:100dvh;padding:8px 11px 0}.dq54-checkout-head{height:52px}.dq54-checkout-head h1{font-size:18px!important}.dq54-checkout-grid{display:flex;flex-direction:column;gap:9px;padding-top:9px;overflow:auto;padding-bottom:96px}.dq54-checkout-main,.dq54-checkout-side{flex:0 0 auto;min-height:auto}.dq54-address{flex:0 0 auto;padding:9px 10px!important;min-height:58px!important;grid-template-columns:34px minmax(0,1fr) auto}.dq54-address>span:first-child{width:32px;height:32px}.dq54-cart{overflow:visible;flex:0 0 auto;padding:12px}.dq54-cart .dd-checkout-line{padding:8px 0}.dq54-bill{order:3}.dq54-checkout-side{display:flex}.dq54-contact{padding:12px}.dq54-contact header{margin-bottom:8px}.dq54-fields{gap:6px}.dq54-contact details:not([open]){margin-top:7px}.dq54-pay{padding:9px 10px}.dq54-pay label{padding:8px!important}.dq54-place{position:fixed;z-index:50;left:9px;right:9px;bottom:calc(8px + env(safe-area-inset-bottom));margin:0;padding:9px 10px;border-radius:15px;box-shadow:0 12px 38px rgba(11,62,47,.2);grid-template-columns:85px 1fr}.dq54-place button{min-height:48px!important}.dq54-place b{font-size:16px}.dq54-checkout-head>span{font-size:0;padding:8px}.dq54-checkout-head>span svg{width:17px}}
@media(max-height:760px) and (min-width:721px){.dq54-checkout{padding-top:8px;padding-bottom:8px}.dq54-checkout-head{height:48px}.dq54-checkout-grid{padding-top:9px}.dq54-contact,.dq54-cart{padding:11px}.dq54-pay label{padding:7px!important;margin:4px 0!important}.dq54-place{padding:8px}.dq54-address{min-height:58px;padding:9px 12px!important}}
@media(min-width:721px){.dq54-cart{max-height:calc(100dvh - 235px);flex:0 1 auto}}

/* V5.54.2 — Delivery checkout uses the established Table QR cart sheet. */
body.dd-customer-app:has(.dq54-table-checkout){background:rgba(7,38,29,.42)!important;padding:12px!important;box-sizing:border-box;overflow:hidden!important}
.dq54-table-checkout{position:relative;width:min(560px,100%)!important;height:calc(100dvh - 24px)!important;max-width:560px!important;margin:0 auto!important;padding:0!important;border-radius:28px 28px 20px 20px!important;background:#fff!important;box-shadow:0 28px 90px rgba(4,35,26,.28)!important;overflow:hidden!important}
.dq54-table-checkout .dq54-checkout-head{position:relative!important;display:block!important;height:74px!important;padding:24px 58px 10px 20px!important;border-bottom:1px solid #DDECE5!important;background:#fff!important}
.dq54-table-checkout .dq54-sheet-handle{position:absolute;top:8px;left:50%;width:42px;height:4px;transform:translateX(-50%);border-radius:99px;background:#D5E1DB}
.dq54-table-checkout .dq54-checkout-head div{display:block!important}.dq54-table-checkout .dq54-checkout-head small{display:none!important}.dq54-table-checkout .dq54-checkout-head h1{font-size:22px!important;line-height:1!important;color:#0C2923!important}.dq54-table-checkout .dq54-checkout-head>span{display:none!important}
.dq54-table-checkout .dq54-checkout-head .dq54-back{position:absolute!important;right:16px!important;top:22px!important;width:38px!important;height:38px!important;border-radius:50%!important;border:1px solid #D8E5DF!important;background:#F5F9F7!important;color:#173E34!important;font-size:25px!important;line-height:1!important}
.dq54-table-checkout>form{display:flex!important;min-height:0!important;height:calc(100% - 74px)!important}.dq54-table-checkout .dq54-checkout-grid{display:block!important;width:100%!important;height:100%!important;padding:12px 16px 92px!important;overflow-y:auto!important;overscroll-behavior:contain!important;scrollbar-width:thin!important}.dq54-table-checkout .dq54-checkout-main,.dq54-table-checkout .dq54-checkout-side{display:grid!important;gap:10px!important;min-height:auto!important}
.dq54-table-checkout .dq54-address,.dq54-table-checkout .dq54-cart,.dq54-table-checkout .dq54-bill,.dq54-table-checkout .dq54-contact,.dq54-table-checkout .dq54-pay{box-shadow:none!important;border-color:#DCE8E2!important;border-radius:14px!important}.dq54-table-checkout .dq54-address{order:0!important;background:#F4FAF7!important}.dq54-table-checkout .dq54-cart{max-height:none!important;overflow:visible!important;padding:12px!important}.dq54-table-checkout .dq54-cart>header{margin-bottom:8px!important}.dq54-table-checkout .dq54-cart header button{border:1px solid #CFE3D9!important;background:linear-gradient(145deg,#F3FAF6,#FFFAF1)!important;color:#07543F!important;font-weight:900!important}
.dq54-table-checkout .dd-checkout-line{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;align-items:center!important;gap:6px 10px!important;margin:7px 0!important;padding:10px 11px!important;border:1px solid #DCE8E2!important;border-radius:14px!important;background:#fff!important;box-shadow:0 3px 10px rgba(15,66,51,.035)!important}.dq54-table-checkout .dd-checkout-line b{font-size:12px!important;color:#173E34!important}.dq54-table-checkout .dq-cart-quantity{display:grid!important;grid-template-columns:28px 24px 28px!important;height:30px!important;border:1px solid #CFE0D8!important;border-radius:10px!important;background:#F7FBF9!important;overflow:hidden!important}.dq54-table-checkout .dq-cart-quantity button{width:28px!important;height:30px!important;min-height:30px!important;border:0!important;border-radius:0!important;background:transparent!important;color:#07543F!important}.dq54-table-checkout .dq-cart-quantity span{display:grid!important;place-items:center!important;font-size:10px!important;font-weight:900!important}
.dq54-table-checkout .dq54-offer{margin-top:9px!important}.dq54-table-checkout .dq54-bill{margin-bottom:10px!important;background:#FFF9ED!important}.dq54-table-checkout .dq54-contact{padding:13px!important}.dq54-table-checkout .dq54-contact header small{display:block!important;color:#0F7B5A!important}.dq54-table-checkout .dq54-contact header b{font-size:17px!important}.dq54-table-checkout .dq54-fields{grid-template-columns:1fr!important}.dq54-table-checkout .dq54-contact label{font-weight:800!important}.dq54-table-checkout .dq54-contact label>span{color:#B8323D}.dq54-table-checkout .dq54-contact input:not([type=checkbox]){background:#fff!important}.dq54-table-checkout .dq54-contact details{margin-top:8px!important}
.dq54-table-checkout .whatsapp-update-box{display:grid!important;grid-template-columns:20px minmax(0,1fr)!important;align-items:center!important;column-gap:9px!important;width:100%!important;min-height:50px!important;max-height:58px!important;margin-top:10px!important;padding:8px 11px!important;border:1px solid #BFE0CD!important;border-radius:14px!important;background:linear-gradient(135deg,#F1FAF5,#F8FCFA)!important;overflow:hidden!important;cursor:pointer!important}.dq54-table-checkout .whatsapp-update-box>input{position:relative!important;opacity:1!important;display:grid!important;width:20px!important;height:20px!important;min-width:20px!important;margin:0!important;accent-color:#15915F}.dq54-table-checkout .whatsapp-update-main{display:flex!important;align-items:center!important;gap:8px!important;min-width:0!important}.dq54-table-checkout .whatsapp-check{display:grid!important;place-items:center!important;flex:0 0 28px!important;width:28px!important;height:28px!important;border-radius:50%!important;background:#25D366!important;color:#fff!important;box-shadow:0 3px 10px rgba(37,211,102,.2)!important}.dq54-table-checkout .whatsapp-brand-svg{display:block!important;width:16px!important;height:16px!important;fill:#fff!important;stroke:none!important}.dq54-table-checkout .whatsapp-update-copy{min-width:0!important}.dq54-table-checkout .whatsapp-update-copy b{font-size:11px!important;white-space:nowrap!important;color:#113A2C!important}
.dq54-table-checkout .dq54-pay{margin-bottom:0!important;padding:10px 11px!important}.dq54-table-checkout .dq54-pay legend{font-size:15px!important;color:#173E34!important}.dq54-table-checkout .dq54-place{position:absolute!important;z-index:80!important;left:0!important;right:0!important;bottom:0!important;display:grid!important;grid-template-columns:minmax(0,1fr) minmax(160px,1.15fr)!important;align-items:center!important;gap:10px!important;margin:0!important;padding:11px 16px calc(11px + env(safe-area-inset-bottom))!important;border:0!important;border-top:1px solid #DDECE5!important;border-radius:0!important;background:rgba(255,255,255,.98)!important;box-shadow:0 -10px 24px rgba(16,38,32,.09)!important}.dq54-table-checkout .checkout-footer-summary{font-size:13px!important;font-weight:800!important;color:#0C2923!important}.dq54-table-checkout .place-order-btn{min-height:52px!important;border:2px solid #0F7B5A!important;border-radius:16px!important;background:#FFF9ED!important;color:#07543F!important;font-size:14px!important;font-weight:900!important;box-shadow:none!important}
@media(max-width:600px){body.dd-customer-app:has(.dq54-table-checkout){padding:0!important}.dq54-table-checkout{width:100%!important;height:100dvh!important;border-radius:22px 22px 0 0!important}.dq54-table-checkout .dq54-checkout-grid{padding:10px 10px 92px!important}.dq54-table-checkout .dq54-checkout-head{height:68px!important;padding:22px 54px 9px 15px!important}.dq54-table-checkout>form{height:calc(100% - 68px)!important}.dq54-table-checkout .dq54-checkout-head .dq54-back{top:18px!important;right:12px!important}.dq54-table-checkout .dq54-fields{grid-template-columns:1fr!important}.dq54-table-checkout .dq54-place{left:0!important;right:0!important;bottom:0!important}.dq54-table-checkout .whatsapp-update-copy b{font-size:10px!important}}
@media(max-width:360px){.dq54-table-checkout .dq54-fields{grid-template-columns:1fr!important}.dq54-table-checkout .dq54-place{grid-template-columns:1fr!important;gap:6px!important}.dq54-table-checkout .checkout-footer-summary{text-align:center!important}.dq54-table-checkout .dq54-checkout-grid{padding-bottom:116px!important}}

/* V5.54.0 — one DineQube QR ecosystem, adapted for delivery. */
.dd-delivery-context{display:grid;place-items:center;min-height:42px;padding:0 17px;border-radius:999px;background:#075f49;color:#fff;font-size:10px;font-weight:900;letter-spacing:.03em}
.dd-delivery-mini{display:grid!important;place-items:center!important;min-width:46px!important;border-color:#075f49!important;background:#075f49!important;color:#fff!important}
.dd-qr-location-pill>strong{margin-left:auto;color:#0f7b5a;font-size:9px;white-space:nowrap}
.dd-no-app{font-size:11px!important;color:#54736a!important}.dd-no-app:first-letter{color:#0f8b68}
.menu-section--featured{padding-bottom:8px;border-bottom:8px solid #f7f8f6}

.dq-item-dialog{width:min(500px,calc(100vw - 20px))!important;margin:auto auto 0!important;border-radius:24px 24px 0 0!important;max-height:92dvh!important}
.dq-item-dialog .dd-modal-shell{max-height:92dvh!important}
.dq-item-dialog .dd-modal-head{padding-top:25px!important}
.dq-item-dialog .dd-modal-head:before{content:"";position:absolute;top:9px;left:50%;width:42px;height:4px;transform:translateX(-50%);border-radius:99px;background:#d6e5de}
.dq-item-dialog .dd-modal-head small{display:none}.dq-item-dialog .dd-modal-head h2{font-size:20px!important}
.dq-item-dialog .dd-modal-body{padding:12px 18px 0!important}
.dq-delivery-item-sheet{display:grid;gap:14px}
.dq-item-summary{display:grid;grid-template-columns:124px minmax(0,1fr);gap:14px;align-items:start}
.dq-item-summary>img,.dq-item-placeholder{width:124px;height:112px;object-fit:cover;border-radius:15px;background:#edf6f1;display:grid;place-items:center;font-size:28px}
.dq-item-summary h3{margin:5px 0 4px;font-size:17px;color:#102620}.dq-item-summary p{margin:0 0 6px;color:#687c75;font-size:11px;line-height:1.45}.dq-item-summary b{font-size:15px;color:#102620}
.dq-item-summary .veg-indicator{width:14px;height:14px;border:2px solid #16a34a;border-radius:3px;display:grid;place-items:center}.dq-item-summary .veg-indicator.nonveg{border-color:#d92d20}.dq-item-summary .veg-dot{display:block;width:6px;height:6px;border-radius:50%;background:#16a34a}.dq-item-summary .nonveg .veg-dot{background:#d92d20}
.dq-delivery-item-sheet fieldset{margin:0;padding:12px;border:1px solid #dce9e3;border-radius:14px}.dq-delivery-item-sheet legend{padding:0 5px;font-size:12px;font-weight:900}.dq-delivery-item-sheet legend em{color:#b8323d;font-size:9px;font-style:normal}.dq-delivery-item-sheet legend small{display:inline;color:#71857d;font-size:9px}
.dq-item-instruction{margin:0!important;font-weight:900!important}.dq-item-instruction small{display:inline!important;font-weight:600}.dq-item-instruction textarea{min-height:72px!important;resize:none}
.dq-item-add{position:sticky;bottom:0;display:grid;gap:10px;margin:0 -18px;padding:12px 18px calc(13px + env(safe-area-inset-bottom));border-top:1px solid #dce9e3;background:#fff;box-shadow:0 -8px 20px rgba(12,41,35,.06)}
.dq-item-add>div{display:flex;align-items:center;justify-content:space-between}.dq-item-add>div>b{font-size:13px}.dq-item-qty{display:grid;grid-template-columns:44px 70px 44px;height:46px;overflow:hidden;border-radius:12px;background:#08694f;color:#fff}.dq-item-qty button{min-height:46px!important;padding:0!important;border:0!important;border-radius:0!important;background:transparent!important;font-size:20px!important}.dq-item-qty output{display:grid;place-items:center;font-size:13px;font-weight:900}.dq-item-submit{width:100%;min-height:52px!important;border-radius:13px!important;background:#0f8b68!important;font-size:14px!important}
#dd-place.place-order-btn{border:2px solid #0f7b5a!important;background:#fff9ed!important;color:#07543f!important}
@media(max-width:520px){.dd-delivery-context{min-height:42px;padding:0 13px;font-size:9px}.dq-item-dialog{width:100vw!important;max-width:none!important}.dq-item-summary{grid-template-columns:112px minmax(0,1fr)}.dq-item-summary>img,.dq-item-placeholder{width:112px;height:104px}.dq-item-dialog .dd-modal-body{padding-left:15px!important;padding-right:15px!important}.dq-item-add{margin-left:-15px;margin-right:-15px;padding-left:15px;padding-right:15px}}

/* Focused customer live tracking */
body.dd-tracking-mode{overflow:hidden!important;background:#071912!important}body.dd-tracking-mode .dd-shell{width:100%!important;max-width:none!important;height:100dvh!important;padding:0!important;background:#071912!important}
.dq-live-track{position:relative;width:100%;height:100dvh;overflow:hidden;background:#071912;color:#fff}.dq-track-top{position:absolute;z-index:20;top:0;left:0;right:0;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:10px;padding:calc(13px + env(safe-area-inset-top)) 16px 13px;background:linear-gradient(180deg,rgba(3,20,14,.92),rgba(3,20,14,0));pointer-events:none}.dq-track-top>*{pointer-events:auto}.dq-track-top>div{text-align:center}.dq-track-top small{color:#8dc9b2;font-size:8px;font-weight:900;letter-spacing:.11em}.dq-track-top b{display:block;margin-top:2px;color:#fff;font-size:10px}.dq-track-top button{min-height:38px!important;padding:8px 11px!important;border:1px solid #ffffff36!important;background:#102f25cc!important;color:#fff!important;font-size:10px!important;backdrop-filter:blur(12px)}
.dq-focused-map{position:absolute;inset:0;background:#102f25}.dq-focused-map .dd-fixed-delivery-map{width:100%!important;height:100%!important;min-height:100%!important;margin:0!important;border:0!important;border-radius:0!important;filter:saturate(.8) contrast(1.07)}.dq-focused-map .gm-style-cc,.dq-focused-map .gmnoprint,.dq-focused-map button[title]{display:none!important}.dq-route-caption{position:absolute;z-index:12;top:88px;left:50%;display:grid;grid-template-columns:minmax(110px,1fr) auto minmax(110px,1fr);align-items:center;gap:10px;width:min(620px,calc(100% - 28px));transform:translateX(-50%);padding:10px 13px;border:1px solid #ffffff24;border-radius:16px;background:rgba(4,27,20,.82);backdrop-filter:blur(14px);box-shadow:0 14px 34px #0005}.dq-route-caption>span{display:grid;grid-template-columns:10px 1fr;column-gap:7px;min-width:0}.dq-route-caption i{grid-row:1/3;width:9px;height:9px;margin-top:5px;border-radius:50%;background:#30d998;box-shadow:0 0 0 5px #30d99822}.dq-route-caption i.destination{background:#ffd36e;box-shadow:0 0 0 5px #ffd36e22}.dq-route-caption small{color:#8db6a7;font-size:7px;font-weight:900}.dq-route-caption b{overflow:hidden;color:#fff;font-size:10px;white-space:nowrap;text-overflow:ellipsis}.dq-route-caption em{color:#82b5a2;font-style:normal}.dq-map-legend{position:absolute;z-index:12;left:50%;bottom:220px;display:flex;gap:6px;transform:translateX(-50%);padding:6px;border-radius:999px;background:rgba(4,27,20,.78);backdrop-filter:blur(10px)}.dq-map-legend span{padding:4px 7px;color:#d8eee5;font-size:8px;font-weight:800;white-space:nowrap}
.dq-track-dock{position:absolute;z-index:20;left:50%;bottom:72px;display:grid;grid-template-columns:48px minmax(0,1fr) auto;align-items:center;gap:13px;width:min(680px,calc(100% - 24px));transform:translateX(-50%);padding:14px;border:1px solid #ffffff2e;border-radius:22px;background:rgba(7,39,29,.92);backdrop-filter:blur(18px);box-shadow:0 20px 60px #0008}.dq-track-pulse{display:grid;place-items:center;width:48px;height:48px;border-radius:50%;background:#e8fff5;color:#0f8b68;font-size:20px;box-shadow:0 0 0 7px #30d99818}.dq-track-copy{min-width:0}.dq-track-copy small{color:#8dc9b2;font-size:7px;font-weight:900;letter-spacing:.1em}.dq-track-copy h1{margin:1px 0 2px;color:#fff;font-size:22px;line-height:1.1}.dq-track-copy p{margin:0;overflow:hidden;color:#bcd8cd;font-size:10px;white-space:nowrap;text-overflow:ellipsis}.dq-track-dock>button{min-height:44px!important;background:#effbf6!important;color:#07543f!important;font-size:10px!important}.dq-track-dock.is-placed{animation:dqOrderCelebrate .65s ease-out both}.dq-track-dock.is-placed .dq-track-pulse{animation:dqPlacedPulse 1.5s ease-out 2}@keyframes dqOrderCelebrate{0%{transform:translateX(-50%) translateY(35px);opacity:0}55%{transform:translateX(-50%) translateY(-6px)}100%{transform:translateX(-50%) translateY(0);opacity:1}}@keyframes dqPlacedPulse{50%{box-shadow:0 0 0 18px #30d99805;transform:scale(1.06)}}
.dq-track-shortcuts{position:absolute;z-index:21;left:50%;bottom:14px;display:flex;gap:7px;transform:translateX(-50%)}.dq-track-shortcuts button{min-height:38px!important;padding:7px 12px!important;border-color:#ffffff2c!important;background:#0c6f53e8!important;color:#fff!important;font-size:9px!important;white-space:nowrap}.dq-track-shortcuts button.secondary{background:#102f25dc!important}
.dq-track-dialog{width:min(560px,calc(100vw - 20px))!important;margin:auto auto 0!important;border-radius:24px 24px 0 0!important}.dq-track-popup{display:grid;gap:10px}.dq-popup-status{display:grid;gap:3px;padding:13px;border-radius:15px;background:#eaf8f2}.dq-popup-status b{font-size:18px}.dq-popup-status span{color:#607873;font-size:10px}.dq-popup-progress{display:flex;overflow-x:auto;padding:9px 2px}.dq-popup-progress>span{position:relative;display:grid;flex:1 0 65px;justify-items:center;gap:5px;color:#81918b}.dq-popup-progress>span:before{content:"";position:absolute;top:12px;right:50%;width:100%;height:2px;background:#dce8e2}.dq-popup-progress>span:first-child:before{display:none}.dq-popup-progress i{position:relative;z-index:1;display:grid;place-items:center;width:25px;height:25px;border-radius:50%;background:#e6eeea;font-size:9px;font-style:normal;font-weight:900}.dq-popup-progress small{font-size:7px;font-weight:800}.dq-popup-progress .done i,.dq-popup-progress .active i{background:#0f8b68;color:#fff}.dq-track-popup details{padding:11px;border:1px solid #dce8e2;border-radius:13px}.dq-track-popup summary{cursor:pointer;font-size:11px;font-weight:900}.dq-track-popup .dd-actions{display:grid;grid-template-columns:1fr 1fr}.dq-track-popup .dd-actions>*{font-size:9px!important}.dq-track-popup .dd-items{font-size:11px}
@media(max-width:560px){.dq-track-top{padding-left:10px;padding-right:10px}.dq-track-top button{font-size:9px!important;padding:7px 9px!important}.dq-route-caption{top:75px}.dq-track-dock{bottom:68px;grid-template-columns:42px minmax(0,1fr);padding:12px}.dq-track-pulse{width:42px;height:42px}.dq-track-copy h1{font-size:18px}.dq-track-dock>button{grid-column:1/3;width:100%;min-height:40px!important}.dq-map-legend{bottom:246px}.dq-track-shortcuts{bottom:11px}.dq-track-shortcuts button{padding:6px 9px!important}.dq-track-dialog{width:100vw!important;max-width:none!important}}
@media(prefers-reduced-motion:reduce){.dq-track-dock.is-placed,.dq-track-dock.is-placed .dq-track-pulse{animation:none!important}}

/* V5.54.4 — premium direct-delivery landing, based on the approved DineQube hero direction. */
/* Legacy premium landing styles removed; canonical production landing is scoped under the V5.55.4 landing block below. */

/* V5.55.0 conversion + tracking polish */
body.dd-customer-app{background:linear-gradient(180deg,#fffdf8 0,#fff 36%,#f7fbf9 100%);color:var(--dq-ink)}
.dq-premium-landing .dqp-hero{isolation:isolate}
.dq-premium-landing .dqp-hero h1{letter-spacing:-.04em}
.dq-premium-landing .dqp-location{border:1px solid var(--dq-border);box-shadow:var(--dq-shadow-1)}
.dq-premium-landing .dqp-hero-media{overflow:hidden}
.dq-premium-landing .dqp-hero-media img{object-fit:cover;object-position:center 45%}
.dd-steam-wisp{opacity:.13!important}
.dq54-wa small,.whatsapp-update-box small{display:block;font-weight:500;color:var(--dq-muted);margin-top:2px}
.dq-live-track{min-height:100dvh;background:#f7fbf9}
.dq-track-top{position:sticky;top:0;z-index:35;backdrop-filter:blur(18px);background:rgba(255,255,255,.9);border-bottom:1px solid var(--dq-border)}
.dq-live-track .dq-track-map{height:min(47dvh,440px);border-radius:0 0 28px 28px;overflow:hidden}
.dq-live-track .dq-track-dock{margin:-22px auto 0;position:relative;z-index:4;box-shadow:var(--dq-shadow-2);border:1px solid var(--dq-border);border-radius:24px;background:#fff}
.dq-track-popup .dq-popup-progress{overflow-x:auto;scrollbar-width:none}
.dd-delivery-pin{border:1px solid color-mix(in srgb,var(--dq-primary) 28%,var(--dq-border));background:var(--dq-primary-light)}
.dd-delivery-progress-strip{border:1px solid var(--dq-border);box-shadow:var(--dq-shadow-1)}
.cart-bar{box-shadow:0 14px 44px rgba(7,84,63,.24)}
@media(max-width:480px){.dq-premium-landing .dqp-nav{padding-inline:14px}.dq-premium-landing .dqp-hero{padding-inline:14px}.dq54-checkout-grid{display:block}.dq54-checkout-side{position:static}.dq54-place{position:sticky;bottom:0;z-index:8}.dq-live-track .dq-track-map{height:40dvh}.dq-live-track .dq-track-dock{margin:-16px 12px 12px}.dq-track-top{padding-inline:12px}.dd-delivery-progress-strip .progress-line{overflow-x:auto;scrollbar-width:none}.menu-card{min-height:156px}}
@media(min-width:481px) and (max-width:768px){.dq54-checkout-grid{grid-template-columns:1fr}.dq54-checkout-side{position:static}}

.dq-live-track>.dd-delivery-progress-strip{max-width:860px;margin:14px auto;background:#fff;border-radius:18px;padding:13px 15px}.dq-live-track>.dd-delivery-progress-strip .progress-title{margin-bottom:9px}.dq-live-track>.dd-delivery-progress-strip .progress-line{display:flex;align-items:flex-start}.dq-live-track>.dd-delivery-progress-strip .progress-step{min-width:70px;flex:1;background:transparent!important;border:0!important;box-shadow:none!important;color:var(--dq-muted);padding:0}.dq-live-track>.dd-delivery-progress-strip .progress-step i{margin:auto}.dq-live-track>.dd-delivery-progress-strip em{flex:1;height:2px;background:var(--dq-border);margin:14px -12px 0}.dq-live-track>.dd-delivery-progress-strip .progress-step.done i,.dq-live-track>.dd-delivery-progress-strip .progress-step.active i{background:var(--dq-primary);color:#fff}.dq-live-track>.dd-delivery-progress-strip .progress-step.done+em{background:var(--dq-primary)}@media(max-width:480px){.dq-live-track>.dd-delivery-progress-strip{margin:10px 12px;overflow:hidden}.dq-live-track>.dd-delivery-progress-strip .progress-line{overflow-x:auto}.dq-live-track>.dd-delivery-progress-strip .progress-step{min-width:64px}}


/* =====================================================
   V5.55.1 · Delivery customer navigation + typography + responsive lock
   ===================================================== */
body.dd-customer-app{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif!important;
  background:#f3f1e9!important;
  font-size:15px;
}
.dd-customer-app .dd-canonical-menu{width:min(100%,920px);margin:0 auto;min-height:100dvh;background:#fff;box-shadow:0 0 42px rgba(12,41,35,.08)}
.dd-customer-app .restaurant-hero{padding:calc(16px + env(safe-area-inset-top)) clamp(14px,3vw,26px) 18px}
.dd-customer-app .hero-toolbar-left{display:flex;align-items:center;gap:10px;min-width:0}
.dd-customer-app .dd-back-landing{display:inline-flex;align-items:center;justify-content:center;gap:6px;min-width:76px;min-height:40px;padding:0 12px;border:1px solid #dcebe5;border-radius:13px;background:#fff;color:#07543f;font:800 13px/1 -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;box-shadow:0 4px 14px rgba(7,84,63,.06);white-space:nowrap}
.dd-customer-app .dd-back-landing:hover{background:#e8f6f0}
.dd-customer-app .dd-back-landing--compact{min-width:38px;width:38px;padding:0;font-size:18px;flex:0 0 38px}
.dd-customer-app .hero-powered{font-size:12px}
.dd-customer-app .hero-restaurant-name{font-size:clamp(24px,4vw,32px)!important;line-height:1.14;letter-spacing:-.6px}
.dd-customer-app .hero-cuisine{font-size:13px;line-height:1.45}
.dd-customer-app .hero-meta{font-size:13px}
.dd-customer-app #dd-delivery-address{display:inline-flex;align-items:center;gap:5px;max-width:100%;border:0;background:transparent;color:#0f7b5a;font:750 13px/1.35 inherit;padding:3px 0;text-align:left}
.dd-customer-app #dd-delivery-address svg{width:15px;height:15px;flex:0 0 15px}
.dd-customer-app .menu-main{padding-inline:clamp(0px,1.8vw,14px)}
.dd-customer-app .menu-filters{display:flex;gap:8px;overflow-x:auto;scrollbar-width:none;overscroll-behavior-inline:contain;padding-inline:16px}
.dd-customer-app .menu-filters::-webkit-scrollbar{display:none}
.dd-customer-app .filter-chip{flex:0 0 auto;white-space:nowrap;font-size:12px;min-height:40px}
.dd-customer-app .allergen-note{margin:0;padding:13px 16px;font-size:12px!important;line-height:1.55;color:#50645d;background:#fffdf7;border-bottom:1px solid #edf2ef}
.dd-customer-app .allergen-note strong{color:#102620}
.dd-customer-app .menu-section-heading h2{font-size:20px!important}
.dd-customer-app .menu-section-heading span{font-size:9px}
.dd-customer-app .menu-card{grid-template-columns:minmax(0,1fr) 126px;gap:16px;min-height:168px;padding:18px 0}
.dd-customer-app .item-name{font-size:16px!important;line-height:1.35}
.dd-customer-app .item-desc{font-size:12px!important;line-height:1.5;max-width:52ch}
.dd-customer-app .item-price-stack strong{font-size:15px}
.dd-customer-app .compact-header{max-width:920px}
@media (min-width:769px){
  .dd-customer-app .menu-list{padding-inline:20px}
  .dd-customer-app .restaurant-hero{padding-inline:28px}
  .dd-customer-app .menu-card{grid-template-columns:minmax(0,1fr) 138px}
  .dd-customer-app .menu-card-right,.dd-customer-app .food-image{width:138px}
  .dd-customer-app .food-image{height:126px}
  .dd-customer-app .card-action{width:112px}
}
@media (max-width:600px){
  body.dd-customer-app{background:#fff!important;font-size:14px}
  .dd-customer-app .dd-canonical-menu{width:100%;box-shadow:none}
  .dd-customer-app .restaurant-hero{padding:calc(10px + env(safe-area-inset-top)) 12px 14px}
  .dd-customer-app .hero-toolbar{gap:8px}
  .dd-customer-app .hero-toolbar-left{gap:8px;flex:1}
  .dd-customer-app .dd-back-landing{min-width:42px;width:42px;min-height:42px;padding:0;border-radius:12px;font-size:19px}
  .dd-customer-app .dd-back-landing span{display:none}
  .dd-customer-app .hero-brand-lockup{gap:7px}
  .dd-customer-app .rest-logo{width:38px;height:38px;border-radius:12px;font-size:16px}
  .dd-customer-app .hero-powered{font-size:11px;white-space:nowrap}
  .dd-customer-app .hero-actions{gap:6px}
  .dd-customer-app .hero-search-btn{width:42px;min-width:42px;height:42px;padding:0;justify-content:center;border-radius:12px}
  .dd-customer-app .hero-search-btn span{display:none}
  .dd-customer-app .table-badge{min-height:42px;padding:0 10px;border-radius:12px;font-size:10px}
  .dd-customer-app .hero-copy{margin-top:15px}
  .dd-customer-app .hero-title-row{align-items:flex-start;gap:7px;flex-wrap:wrap}
  .dd-customer-app .hero-restaurant-name{font-size:24px!important;white-space:normal;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
  .dd-customer-app .hero-open-badge{font-size:9px;padding:5px 7px}
  .dd-customer-app .hero-cuisine{margin-top:6px;font-size:12px}
  .dd-customer-app .hero-meta{margin-top:9px;gap:6px 9px}
  .dd-customer-app #dd-delivery-address{max-width:calc(100vw - 32px);font-size:12px;white-space:normal}
  .dd-customer-app .menu-filters{padding:11px 12px 10px;gap:7px}
  .dd-customer-app .filter-chip{min-height:36px;padding:0 12px;border-radius:12px;font-size:11px}
  .dd-customer-app .allergen-note{padding:10px 12px;font-size:11px!important}
  .dd-customer-app .menu-list{padding:0 12px 96px}
  .dd-customer-app .menu-section{padding-top:18px}
  .dd-customer-app .menu-section + .menu-section{margin-inline:-12px;padding-inline:12px;border-top-width:7px}
  .dd-customer-app .menu-section-heading{margin-bottom:2px}
  .dd-customer-app .menu-section-heading h2{font-size:18px!important}
  .dd-customer-app .menu-section-heading>strong{min-width:25px;height:25px;font-size:10px}
  .dd-customer-app .menu-card{grid-template-columns:minmax(0,1fr) 108px;gap:10px;min-height:146px;padding:15px 0}
  .dd-customer-app .menu-card-right,.dd-customer-app .food-image{width:108px}
  .dd-customer-app .food-image{height:102px;border-radius:14px}
  .dd-customer-app .card-action{width:92px;min-height:39px;margin-top:-17px}
  .dd-customer-app .add-btn,.dd-customer-app .qty-control{min-height:39px;height:39px;border-radius:11px;font-size:12px}
  .dd-customer-app .item-name{font-size:15px!important;margin-bottom:4px}
  .dd-customer-app .item-price-stack{margin-top:7px}
  .dd-customer-app .item-price-stack strong{font-size:14px}
  .dd-customer-app .item-desc{margin-top:6px;font-size:11px!important;line-height:1.42;-webkit-line-clamp:2}
  .dd-customer-app .veg-indicator{width:15px;height:15px;margin-bottom:6px}
  .dd-customer-app .veg-dot{width:6px;height:6px}
  .dd-customer-app .compact-header{max-width:100%;padding-inline:8px}
  .dd-customer-app .compact-logo{display:none}
  .dd-customer-app .compact-header-inner{gap:6px}
  .dd-customer-app .compact-search{height:40px;border-radius:12px;padding-inline:9px}
  .dd-customer-app .compact-search input{font-size:12px}
  .dd-customer-app .compact-table-badge{height:40px;min-width:40px;border-radius:12px;font-size:9px}
}
@media (max-width:360px){
  .dd-customer-app .hero-powered{display:none}
  .dd-customer-app .table-badge{padding-inline:8px}
  .dd-customer-app .menu-card{grid-template-columns:minmax(0,1fr) 100px}
  .dd-customer-app .menu-card-right,.dd-customer-app .food-image{width:100px}
  .dd-customer-app .food-image{height:96px}
  .dd-customer-app .card-action{width:86px}
}



/* Initial delivery landing skeleton: lightweight, layout-stable, no JS dependency. */
.dd-landing-skeleton{width:min(100%,1180px);margin:0 auto;padding:0 18px 32px;color:#0c2923}
.dd-landing-skeleton .dd-sk-nav{display:flex;align-items:center;justify-content:space-between;padding:22px 4px 16px}
.dd-landing-skeleton i,.dd-landing-skeleton b,.dd-landing-skeleton span,.dd-landing-skeleton .dd-sk-food,.dd-landing-skeleton .dd-sk-wide{
  display:block;background:linear-gradient(100deg,#e7efeb 20%,#f7fbf9 40%,#e7efeb 60%);background-size:220% 100%;animation:ddLandingSkeleton 1.35s ease-in-out infinite;border-radius:14px
}
.dd-landing-skeleton .dd-sk-nav i:first-child{width:205px;height:40px}.dd-landing-skeleton .dd-sk-nav i:last-child{width:210px;height:68px;border-radius:19px}
.dd-landing-skeleton section{display:grid;grid-template-columns:minmax(0,.95fr) minmax(340px,1.05fr);gap:18px 28px;padding:34px;border:1px solid #e4eee9;border-radius:30px;background:#f2faf5}
.dd-landing-skeleton .dd-sk-copy{align-self:center;display:grid;gap:13px}.dd-landing-skeleton .dd-sk-copy i{width:170px;height:42px;border-radius:999px}.dd-landing-skeleton .dd-sk-copy b:nth-of-type(1){width:72%;height:64px}.dd-landing-skeleton .dd-sk-copy b:nth-of-type(2){width:88%;height:28px}.dd-landing-skeleton .dd-sk-copy span{width:52%;height:22px}
.dd-landing-skeleton .dd-sk-food{justify-self:center;width:min(420px,88%);aspect-ratio:1;border-radius:50%}.dd-landing-skeleton .dd-sk-wide{grid-column:1/3;width:100%;height:50px}.dd-landing-skeleton button{grid-column:1/3;width:100%;min-height:68px;border:0;border-radius:20px;background:#d8e8e0;color:#6d8179;font-weight:800}
@keyframes ddLandingSkeleton{0%{background-position:100% 0}100%{background-position:-120% 0}}
@media(max-width:760px){.dd-landing-skeleton{padding:0 10px 24px}.dd-landing-skeleton .dd-sk-nav{padding:14px 4px 12px}.dd-landing-skeleton .dd-sk-nav i:first-child{width:145px;height:34px}.dd-landing-skeleton .dd-sk-nav i:last-child{width:128px;height:57px}.dd-landing-skeleton section{grid-template-columns:1fr;gap:12px;padding:20px 16px 16px;border-radius:24px}.dd-landing-skeleton .dd-sk-copy b:nth-of-type(1){height:42px}.dd-landing-skeleton .dd-sk-food{width:min(264px,84%)}.dd-landing-skeleton .dd-sk-wide,.dd-landing-skeleton button{grid-column:auto}.dd-landing-skeleton button{min-height:58px}}
@media(prefers-reduced-motion:reduce){.dd-landing-skeleton i,.dd-landing-skeleton b,.dd-landing-skeleton span,.dd-landing-skeleton .dd-sk-food,.dd-landing-skeleton .dd-sk-wide{animation:none}}

/* =====================================================
   V5.55.4 · FINAL MOBILE-FIRST DIRECT DELIVERY LANDING
   Desktop keeps the approved split hero. Mobile stacks cleanly.
   ===================================================== */
body.dd-customer-app:has(.dq-landing-v5554){background:#f3f6f2!important;color:#0c2923!important}
body.dd-customer-app:has(.dq-landing-v5554) #dd-root{width:min(100%,1180px);margin:0 auto}
.dq-landing-v5554{--dqp-green:#0f7b5a;--dqp-green-dark:#07543f;--dqp-ink:#0c2923;--dqp-muted:#607873;--dqp-cream:#fff9ed;--dqp-soft:#e8f6f0;--dqp-line:#dbe9e3;width:100%;padding:0 18px 30px;color:var(--dqp-ink);font-family:'Plus Jakarta Sans',Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif}
.dq-landing-v5554 .dqp-nav{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:20px 4px 15px}
.dq-landing-v5554 .dqp-brand{display:grid;gap:1px;min-width:0;color:#526861;text-decoration:none}.dq-landing-v5554 .dqp-brand img{display:block;width:194px;max-width:42vw;height:auto}.dq-landing-v5554 .dqp-brand span{padding-left:3px;font-size:10px;line-height:1.15}
.dq-landing-v5554 .dqp-location{display:grid!important;grid-template-columns:28px minmax(0,1fr) auto;align-items:center;gap:8px;min-width:198px;min-height:62px!important;padding:9px 13px!important;border:1px solid #d8e4df!important;border-radius:18px!important;background:#fff!important;color:var(--dqp-ink)!important;text-align:left!important;box-shadow:0 9px 24px rgba(7,84,63,.075)!important}.dq-landing-v5554 .dqp-location>svg{width:25px;height:25px;fill:var(--dqp-green);stroke:var(--dqp-green)}.dq-landing-v5554 .dqp-location span{display:grid;min-width:0}.dq-landing-v5554 .dqp-location small{font-size:10px;color:#6c7f79;font-weight:650}.dq-landing-v5554 .dqp-location b{display:block;max-width:132px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.2;color:var(--dqp-ink)}.dq-landing-v5554 .dqp-location strong{font-size:18px;color:var(--dqp-green-dark)}
.dq-landing-v5554 main{display:grid;gap:14px}
.dq-landing-v5554 .dqp-hero{position:relative;isolation:isolate;display:grid;grid-template-columns:minmax(0,.92fr) minmax(300px,1.08fr);gap:14px 22px;overflow:hidden;padding:28px 28px 22px;border:1px solid rgba(15,123,90,.09);border-radius:28px;background:radial-gradient(circle at 78% 39%,rgba(255,255,255,.98) 0 13%,rgba(255,255,255,.56) 34%,transparent 56%),linear-gradient(135deg,#effbef 0%,#fbfffa 54%,#eaf8ee 100%);box-shadow:0 20px 54px rgba(7,84,63,.08),inset 0 0 0 1px rgba(255,255,255,.72)}.dq-landing-v5554 .dqp-hero:after{content:"";position:absolute;inset:auto 0 0;height:100px;z-index:-1;background:linear-gradient(0deg,rgba(203,235,215,.38),transparent)}
.dq-landing-v5554 .dqp-hero-copy{position:relative;z-index:4;align-self:center;min-width:0}.dq-landing-v5554 .dqp-available{display:inline-flex;align-items:center;gap:8px;min-height:39px;padding:7px 14px;border-radius:999px;background:#c9f3d0;color:#08764f;font-size:12px;font-weight:900;letter-spacing:.035em}.dq-landing-v5554 .dqp-available svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:2}.dq-landing-v5554 .dqp-status-busy .dqp-available{background:#fff1c9;color:#9a6200}.dq-landing-v5554 .dqp-status-offline .dqp-available,.dq-landing-v5554 .dqp-status-closed .dqp-available{background:#ffe4e0;color:#a32d24}.dq-landing-v5554 .dqp-welcome{display:block;margin:12px 0 -5px;color:var(--dqp-green);font-size:11px;font-weight:850;letter-spacing:.035em}.dq-landing-v5554 .dqp-hero h1{max-width:540px;margin:16px 0 9px!important;color:var(--dqp-ink)!important;font-size:clamp(42px,5vw,68px)!important;line-height:.98!important;letter-spacing:-.052em!important;text-transform:none}.dq-landing-v5554 .dqp-hero-copy>p{display:-webkit-box;max-width:500px;margin:0!important;overflow:hidden;-webkit-line-clamp:2;-webkit-box-orient:vertical;color:#587069;font-size:clamp(18px,2vw,27px);line-height:1.26}.dq-landing-v5554 .dqp-rating{display:flex;align-items:center;gap:9px;margin-top:16px;font-size:14px}.dq-landing-v5554 .dqp-rating>span{font-size:27px;color:#ffb51c;line-height:1}.dq-landing-v5554 .dqp-rating b{font-size:19px}.dq-landing-v5554 .dqp-rating em{font-style:normal;color:#60736e}.dq-landing-v5554 .dqp-rating-new{display:grid;gap:1px}.dq-landing-v5554 .dqp-rating-new b{font-size:14px;color:var(--dqp-green-dark)}.dq-landing-v5554 .dqp-rating-new em{font-size:11px}
.dq-landing-v5554 .dqp-food-art{position:relative;z-index:2;display:grid;place-items:center;min-height:330px;overflow:visible;border-radius:24px}.dq-landing-v5554 .dqp-food-art>i{position:absolute;z-index:-2;width:91%;aspect-ratio:1;border-radius:50%;background:radial-gradient(circle,#fff 0 43%,rgba(220,244,228,.84) 65%,transparent 72%);filter:drop-shadow(0 24px 18px rgba(6,72,49,.17))}.dq-landing-v5554 .dqp-hero-food{display:block;width:min(390px,88%);max-width:100%;aspect-ratio:1;object-fit:cover;border:11px solid #fff;border-radius:50%;box-shadow:0 24px 34px rgba(6,72,49,.21)}
/* Restaurant mark: glass plaque, never forced into a round badge. */
.dq-landing-v5554 .dqp-restaurant-mark{position:absolute;right:2%;bottom:6%;z-index:6;display:flex;align-items:center;justify-content:center;min-width:112px;max-width:176px;min-height:60px;padding:8px 12px;overflow:hidden;border:1px solid rgba(15,123,90,.18);border-radius:16px;background:rgba(255,255,255,.94);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);box-shadow:0 12px 30px rgba(4,60,43,.18);animation:dqpMarkIn .52s cubic-bezier(.2,.8,.2,1) both}.dq-landing-v5554 .dqp-restaurant-mark img{display:block;max-width:150px;max-height:50px;width:auto;height:auto;object-fit:contain}.dq-landing-v5554 .dqp-restaurant-mark .dqp-name-lockup{display:flex;align-items:center;justify-content:center;width:100%;min-height:42px;padding:7px 10px;border-radius:10px;background:linear-gradient(135deg,#f7fffa,#e9f7ef);color:#07543f;font-size:13px;font-weight:900;line-height:1.05;text-align:center}.dq-landing-v5554 .dqp-food-note{position:absolute;top:4px;right:1%;max-width:130px;color:#086043;font-family:cursive;font-size:16px;font-weight:800;line-height:1.12;transform:rotate(-6deg)}
/* Realistic steam: soft translucent vapour rather than drawn green lines. */
.dq-landing-v5554 .dqp-steam{position:absolute;top:-12px;left:50%;z-index:5;width:150px;height:112px;transform:translateX(-50%);pointer-events:none;overflow:visible}.dq-landing-v5554 .dqp-steam span{position:absolute;bottom:2px;width:30px;height:88px;border:0;border-radius:52% 48% 58% 42%;background:radial-gradient(ellipse at 50% 90%,rgba(255,255,255,.96) 0,rgba(216,229,222,.78) 34%,rgba(169,195,182,.34) 58%,transparent 76%);filter:blur(4.5px);opacity:0;transform-origin:50% 100%;animation:dqpSteamReal 7.4s cubic-bezier(.32,.02,.38,.98) infinite}.dq-landing-v5554 .dqp-steam span:nth-child(1){left:25px;animation-delay:-1.4s}.dq-landing-v5554 .dqp-steam span:nth-child(2){left:61px;animation-delay:-3.6s;width:34px;height:98px}.dq-landing-v5554 .dqp-steam span:nth-child(3){left:96px;animation-delay:-5.7s;width:28px;height:82px}@keyframes dqpSteamReal{0%{opacity:0;transform:translate3d(0,18px,0) scale(.68,.8) rotate(4deg)}18%{opacity:.76}45%{opacity:.58;transform:translate3d(-5px,-4px,0) scale(.92,1.08) rotate(-4deg)}72%{opacity:.34;transform:translate3d(8px,-25px,0) scale(1.08,1.22) rotate(6deg)}100%{opacity:0;transform:translate3d(-6px,-48px,0) scale(1.22,1.4) rotate(-5deg)}}@keyframes dqpMarkIn{from{opacity:0;transform:translateY(6px) scale(.94)}to{opacity:1;transform:none}}
.dq-landing-v5554 .dqp-metrics,.dq-landing-v5554 .dqp-location-hint{position:relative;z-index:3;grid-column:1/3}.dq-landing-v5554 .dqp-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:7px;padding:9px;border:1px solid rgba(15,123,90,.10);border-radius:16px;background:rgba(255,255,255,.72)}.dq-landing-v5554 .dqp-metrics>span{display:grid;grid-template-columns:26px 1fr;grid-template-rows:auto auto;align-items:center;column-gap:8px;min-width:0;padding:5px 8px}.dq-landing-v5554 .dqp-metrics svg{grid-row:1/3;width:21px;height:21px;fill:none;stroke:var(--dqp-green);stroke-width:2}.dq-landing-v5554 .dqp-metrics small{font-size:9px;color:#6b7d77;font-weight:700}.dq-landing-v5554 .dqp-metrics b{font-size:13px;color:var(--dqp-ink);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dq-landing-v5554 .dqp-location-hint{display:flex;align-items:center;gap:8px;flex-wrap:wrap;padding:10px 13px;border-radius:15px;background:rgba(255,255,255,.72);color:#5c716b}.dq-landing-v5554 .dqp-location-hint b{color:var(--dqp-ink);font-size:12px}.dq-landing-v5554 .dqp-location-hint span{font-size:11px;line-height:1.35}.dq-landing-v5554 .dqp-promises{position:relative;z-index:3;grid-column:1/3;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:7px}.dq-landing-v5554 .dqp-promises>span{display:flex;align-items:center;justify-content:center;gap:7px;min-height:44px;padding:6px 8px;border-radius:13px;background:rgba(255,255,255,.64);color:#49625a;font-size:11px;text-align:center}.dq-landing-v5554 .dqp-promises svg{width:18px;height:18px;fill:none;stroke:var(--dqp-green);stroke-width:2}.dq-landing-v5554 .dqp-promises b{font-weight:850}.dq-landing-v5554 .dqp-start{position:relative;z-index:3;grid-column:1/3;width:100%;min-height:62px!important;border:0!important;border-radius:18px!important;background:linear-gradient(110deg,#0f8a60,#0f7b5a 58%,#086f50)!important;color:#fff!important;font-size:18px!important;font-weight:900!important;letter-spacing:.02em!important;box-shadow:0 12px 27px rgba(7,84,63,.17)!important;transition:transform .16s ease,box-shadow .16s ease,filter .16s ease!important}.dq-landing-v5554 .dqp-start:hover{transform:translateY(-1px);box-shadow:0 16px 32px rgba(7,84,63,.22)!important}.dq-landing-v5554 .dqp-start:active{transform:scale(.988)}.dq-landing-v5554 .dqp-start span{display:inline-block;margin-left:8px;font-size:24px;transition:transform .18s ease}.dq-landing-v5554 .dqp-start:hover span{transform:translateX(4px)}.dq-landing-v5554 .dqp-start.is-disabled,.dq-landing-v5554 .dqp-start:disabled{background:#d5ded9!important;color:#60736c!important;box-shadow:none!important;cursor:not-allowed}.dq-landing-v5554 .dqp-unavailable-reason{grid-column:1/3;margin:-3px 4px 0!important;color:#8d4039!important;font-size:11px!important;text-align:center}
.dq-landing-v5554 .dqp-active-strip{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:12px;padding:13px 16px;border:1px solid #cce4da;border-radius:17px;background:linear-gradient(110deg,#effaf4,#fff);box-shadow:0 8px 24px rgba(7,84,63,.055)}.dq-landing-v5554 .dqp-active-strip>div{display:grid;grid-template-columns:auto auto 1fr;align-items:center;gap:7px;min-width:0}.dq-landing-v5554 .dqp-active-strip small{font-size:9px;font-weight:900;letter-spacing:.07em;color:var(--dqp-green)}.dq-landing-v5554 .dqp-active-strip b{font-size:13px;white-space:nowrap}.dq-landing-v5554 .dqp-active-strip span{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#60736d;font-size:11px}.dq-landing-v5554 .dqp-active-strip button{min-height:38px;padding:0 13px;border:1px solid #c9ded5;border-radius:12px;background:#fff;color:var(--dqp-green-dark);font-size:11px;font-weight:850}.dq-landing-v5554 .dqp-returning{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:12px;padding:15px 18px;border:1px solid #eadfbd;border-radius:18px;background:linear-gradient(110deg,#fff9ed,#fff);box-shadow:0 8px 24px rgba(104,75,22,.045)}.dq-landing-v5554 .dqp-returning small{font-size:9px;font-weight:900;letter-spacing:.08em;color:#9a6a11}.dq-landing-v5554 .dqp-returning h2{margin:2px 0!important;font-size:17px!important;color:var(--dqp-ink)!important}.dq-landing-v5554 .dqp-returning p{margin:0;color:#6c756c;font-size:11px}.dq-landing-v5554 .dqp-returning button{min-height:40px;padding:0 15px;border:1px solid #e4c66f;border-radius:12px;background:#ffcf45;color:#352500;font-size:11px;font-weight:900}
.dq-landing-v5554 .dqp-direct{padding:22px 24px;border:1px solid var(--dqp-line);border-radius:22px;background:#fff;box-shadow:0 8px 26px rgba(15,57,45,.05)}.dq-landing-v5554 .dqp-direct h2{margin:0 0 16px!important;color:var(--dqp-ink)!important;font-size:clamp(24px,2.6vw,32px)!important;letter-spacing:-.035em!important}.dq-landing-v5554 .dqp-direct-grid{display:grid;grid-template-columns:1.58fr .68fr;gap:24px}.dq-landing-v5554 .dqp-points{display:grid;gap:11px}.dq-landing-v5554 .dqp-points p{display:grid;grid-template-columns:42px 1fr;align-items:start;gap:11px;margin:0}.dq-landing-v5554 .dqp-points i{display:grid;place-items:center;width:40px;height:40px;border-radius:50%;background:#e6f7ed;color:var(--dqp-green);font-size:18px;font-style:normal;font-weight:900}.dq-landing-v5554 .dqp-points i svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:2}.dq-landing-v5554 .dqp-points p>span{display:grid;gap:2px}.dq-landing-v5554 .dqp-points p b{font-size:13px;color:#223a33}.dq-landing-v5554 .dqp-points p small{font-size:11px;line-height:1.4;color:#60736d}.dq-landing-v5554 .dqp-local{display:grid;place-items:center;align-content:center;gap:6px;padding-left:17px;border-left:1px solid #dce8e2;text-align:center}.dq-landing-v5554 .dqp-bag{position:relative;display:grid;place-items:center;width:88px;height:88px;border-radius:22px;background:#e7f8ed;color:#9f6a33}.dq-landing-v5554 .dqp-bag svg{width:40px;height:40px;fill:none;stroke:#b47637;stroke-width:1.7}.dq-landing-v5554 .dqp-bag span{position:absolute;right:13px;top:0;color:#0b8e4f;font-size:24px}.dq-landing-v5554 .dqp-local b{font-size:12px;line-height:1.22}.dq-landing-v5554 .dqp-local strong{font-size:19px;color:#0f8a60}
.dq-landing-v5554 .dqp-how{overflow:hidden;border:1px solid var(--dqp-line);border-radius:17px;background:#fff;box-shadow:0 6px 18px rgba(15,57,45,.035)}.dq-landing-v5554 .dqp-how summary{display:grid;grid-template-columns:28px 1fr auto;align-items:center;gap:9px;padding:15px 18px;cursor:pointer;list-style:none;font-size:14px;font-weight:900}.dq-landing-v5554 .dqp-how summary::-webkit-details-marker{display:none}.dq-landing-v5554 .dqp-how summary>span{font-size:18px;color:var(--dqp-green)}.dq-landing-v5554 .dqp-how-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;padding:0 16px 15px}.dq-landing-v5554 .dqp-how-steps p{display:grid;grid-template-columns:25px 1fr;gap:7px;align-items:start;margin:0;padding:8px;border-radius:12px;background:#f6fbf8}.dq-landing-v5554 .dqp-how-steps p>b{display:grid;place-items:center;width:23px;height:23px;border-radius:50%;background:var(--dqp-green);color:#fff;font-size:10px}.dq-landing-v5554 .dqp-how-steps p>span{font-size:10px;line-height:1.4;color:#536a63}.dq-landing-v5554 .dqp-contacts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.dq-landing-v5554 .dqp-contacts a{display:grid;grid-template-columns:42px 1fr;align-items:center;gap:10px;min-height:66px;padding:9px 12px;border:1.5px solid var(--dqp-green);border-radius:15px;background:#fff;color:var(--dqp-ink);text-decoration:none}.dq-landing-v5554 .dqp-contacts i{display:grid;place-items:center;width:40px;height:40px;border-radius:50%;background:#e7f8ef;color:var(--dqp-green);font-size:20px;font-style:normal}.dq-landing-v5554 .dqp-contacts i svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2}.dq-landing-v5554 .dqp-contacts i.wa{font-size:28px}.dq-landing-v5554 .dqp-contacts span{display:grid;min-width:0}.dq-landing-v5554 .dqp-contacts b{font-size:12px}.dq-landing-v5554 .dqp-contacts small{margin-top:2px;font-size:9px;color:#60736d}.dq-landing-v5554 .dqp-contact-directions{grid-column:1/3;min-height:48px!important;grid-template-columns:32px 1fr!important;border-color:#d7e7df!important;background:#f9fcfa!important}.dq-landing-v5554 .dqp-contact-directions i{width:30px!important;height:30px!important}.dq-landing-v5554 .dqp-start-bottom{grid-column:auto;min-height:56px!important;font-size:16px!important}.dq-landing-v5554 .dqp-disclosure{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;padding:13px 16px;border:1px solid var(--dqp-line);border-radius:16px;background:#fbfdfc}.dq-landing-v5554 .dqp-disclosure p{margin:0;color:#60736d;font-size:10px;line-height:1.46}.dq-landing-v5554 .dqp-disclosure b{display:block;margin-bottom:2px;color:#29433b;font-size:10px}.dq-landing-v5554 .dqp-footer{display:flex;align-items:center;justify-content:center;gap:28px;margin:16px 0 -30px;padding:17px 18px;background:linear-gradient(90deg,#eaf8ef,#fbfffc,#eaf8ef);color:#60736d;font-size:10px}.dq-landing-v5554 .dqp-footer a{color:var(--dqp-green-dark);font-weight:800;text-decoration:none}.dq-landing-v5554 [data-reveal]{opacity:0;transform:translateY(8px);transition:opacity .34s ease,transform .34s ease}.dq-landing-v5554 [data-reveal].is-visible{opacity:1;transform:none}
/* Location popup */
.dd-location-dialog .dd-modal-shell{overflow:hidden;border:1px solid #d9e9e2;border-radius:24px;background:#fff;box-shadow:0 30px 80px rgba(5,48,36,.22)}.dd-location-dialog .dd-modal-head{padding:18px 18px 10px;background:linear-gradient(180deg,#f5fcf8,#fff);border-bottom:1px solid #edf4f1}.dd-location-dialog .dd-modal-head small{color:#0f7b5a;font-weight:900;letter-spacing:.1em}.dd-location-dialog .dd-modal-head h2{font-size:21px!important;letter-spacing:-.02em!important}.dd-location-dialog .dd-close{display:grid;place-items:center;width:42px!important;height:42px!important;min-width:42px!important;border:1px solid #cfe3da!important;border-radius:50%!important;background:#f0faf5!important;color:#07543f!important;font-size:26px!important;font-weight:500!important;line-height:1!important;box-shadow:0 5px 16px rgba(7,84,63,.08)}.dd-location-dialog .dd-modal-body{padding:16px 18px 20px}
.dd-location-permission-v5554{display:grid;gap:13px;text-align:center;padding:2px 2px 4px}.dd-location-permission-v5554 .dd-location-permission-icon{display:grid;place-items:center;width:76px;height:76px;margin:2px auto 0;border-radius:24px;background:linear-gradient(145deg,#e2f8ec,#f7fffa);color:#0f7b5a;box-shadow:inset 0 0 0 1px #d6eee3;animation:dqpPinDrop .46s cubic-bezier(.2,.8,.2,1) both}.dd-location-permission-v5554 .dd-location-permission-icon svg{width:36px;height:36px;fill:none;stroke:currentColor;stroke-width:2}.dd-location-permission-v5554 h3{margin:3px 0 0;font-size:22px;line-height:1.18;color:#0c2923}.dd-location-permission-v5554 p{margin:0;color:#526a63;font-size:14px;line-height:1.48}.dd-location-permission-v5554>small{display:block;color:#71837d;font-size:11px;line-height:1.45}.dd-current-location{display:grid;gap:3px;padding:12px 14px;border:1px solid #d9e9e2;border-radius:15px;background:#f8fcfa;text-align:left}.dd-current-location small{font-size:9px;font-weight:900;color:#0f7b5a;letter-spacing:.08em}.dd-current-location b{font-size:14px;color:#0c2923}.dd-current-location span{font-size:11px;color:#667b74}.dd-location-permission-v5554 .dd-flow-allow,.dd-location-manual-primary{display:flex!important;align-items:center!important;justify-content:center!important;gap:9px!important;min-height:54px!important;margin-top:5px!important;border:0!important;border-radius:15px!important;background:#0f7b5a!important;color:#fff!important;font-weight:900!important;box-shadow:0 10px 22px rgba(15,123,90,.16)!important}.dd-location-permission-v5554 .dd-flow-allow svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:2}.dd-location-permission-v5554 .dd-choice-secondary{min-height:48px;border-radius:14px!important}.dd-location-permission-v5554 .dd-location-privacy{font-size:10px;color:#80918b}.dd-location-result{display:grid;gap:13px;text-align:center;padding:3px}.dd-location-result-icon{display:grid;place-items:center;width:76px;height:76px;margin:0 auto;border-radius:24px;background:#fff0ed;color:#b33c31}.dd-location-result-icon svg{width:36px;height:36px;fill:none;stroke:currentColor;stroke-width:2}.dd-location-result h3{margin:2px 0 0;font-size:21px;line-height:1.22;color:#0c2923}.dd-location-result p{margin:0;padding:12px 13px;border:1px solid #f0d9d4;border-radius:14px;background:#fff8f6;color:#665651;font-size:13px;line-height:1.48}.dd-location-result p b{color:#8b2e27}.dd-location-result-actions{display:grid;gap:9px}.dd-location-result-actions button{width:100%;min-height:50px;border-radius:14px!important}.dd-location-result>small{color:#84938e;font-size:10px}.dd-location-sheet-v5554{display:grid;gap:12px}.dd-location-sheet-v5554>p{margin:0;color:#5e716b;line-height:1.45}.dd-location-inline-result{min-height:0;color:#60736d;font-size:12px;line-height:1.45}.dd-location-inline-result.is-outside,.dd-location-inline-result.is-error{display:grid;gap:4px;padding:11px 12px;border:1px solid #f0d2cc;border-radius:13px;background:#fff7f5;color:#705650}.dd-location-inline-result.is-outside b{color:#9f3027}.dd-location-inline-result span{display:block}.dd-loc-spinner{width:18px;height:18px;border:2px solid rgba(255,255,255,.38);border-top-color:#fff;border-radius:50%;animation:ddLocSpin .72s linear infinite}@keyframes ddLocSpin{to{transform:rotate(360deg)}}@keyframes dqpPinDrop{from{opacity:0;transform:translateY(-12px) scale(.9)}70%{opacity:1;transform:translateY(3px) scale(1.03)}to{transform:none}}
/* Mobile: stack the hero; never squeeze copy and image side-by-side. */
@media(max-width:760px){body.dd-customer-app:has(.dq-landing-v5554) #dd-root{width:100%}.dq-landing-v5554{padding:0 10px 24px}.dq-landing-v5554 .dqp-nav{padding:12px 3px 10px;gap:8px}.dq-landing-v5554 .dqp-brand img{width:146px;max-width:44vw}.dq-landing-v5554 .dqp-brand span{font-size:7px}.dq-landing-v5554 .dqp-location{min-width:126px;max-width:47vw;min-height:54px!important;padding:7px 8px!important;border-radius:15px!important;grid-template-columns:20px minmax(0,1fr) auto;gap:5px}.dq-landing-v5554 .dqp-location>svg{width:19px;height:19px}.dq-landing-v5554 .dqp-location small{font-size:7.5px}.dq-landing-v5554 .dqp-location b{max-width:80px;font-size:10.5px}.dq-landing-v5554 .dqp-location strong{font-size:15px}.dq-landing-v5554 main{gap:11px}.dq-landing-v5554 .dqp-hero{grid-template-columns:1fr;gap:10px;padding:17px 15px 14px;border-radius:23px}.dq-landing-v5554 .dqp-hero-copy{grid-column:1;align-self:start}.dq-landing-v5554 .dqp-available{min-height:32px;padding:5px 9px;gap:5px;font-size:9px}.dq-landing-v5554 .dqp-available svg{width:16px;height:16px}.dq-landing-v5554 .dqp-welcome{margin:9px 0 -2px;font-size:9px}.dq-landing-v5554 .dqp-hero h1{margin:10px 0 6px!important;font-size:clamp(34px,10.8vw,48px)!important;line-height:.98!important}.dq-landing-v5554 .dqp-hero-copy>p{-webkit-line-clamp:2;font-size:15px;line-height:1.3}.dq-landing-v5554 .dqp-rating{margin-top:10px;gap:6px;font-size:10px}.dq-landing-v5554 .dqp-rating>span{font-size:20px}.dq-landing-v5554 .dqp-rating b{font-size:14px}.dq-landing-v5554 .dqp-rating-new b{font-size:11px}.dq-landing-v5554 .dqp-rating-new em{font-size:9px}.dq-landing-v5554 .dqp-food-art{grid-column:1;min-height:244px;margin-top:2px}.dq-landing-v5554 .dqp-food-art>i{width:min(270px,84%)}.dq-landing-v5554 .dqp-hero-food{width:min(252px,82vw);border-width:8px}.dq-landing-v5554 .dqp-food-note{top:7px;right:8%;max-width:86px;font-size:10px}.dq-landing-v5554 .dqp-restaurant-mark{right:4%;bottom:11px;min-width:92px;max-width:132px;min-height:48px;padding:7px 9px;border-radius:14px}.dq-landing-v5554 .dqp-restaurant-mark img{max-width:112px;max-height:38px}.dq-landing-v5554 .dqp-restaurant-mark .dqp-name-lockup{min-height:34px;padding:5px 7px;font-size:9px}.dq-landing-v5554 .dqp-steam{top:-4px;left:50%;width:112px;height:84px}.dq-landing-v5554 .dqp-steam span{width:24px;height:70px;filter:blur(4px)}.dq-landing-v5554 .dqp-steam span:nth-child(1){left:18px}.dq-landing-v5554 .dqp-steam span:nth-child(2){left:45px;width:27px;height:78px}.dq-landing-v5554 .dqp-steam span:nth-child(3){left:75px;width:22px;height:66px}.dq-landing-v5554 .dqp-metrics,.dq-landing-v5554 .dqp-location-hint,.dq-landing-v5554 .dqp-promises,.dq-landing-v5554 .dqp-start,.dq-landing-v5554 .dqp-unavailable-reason{grid-column:1}.dq-landing-v5554 .dqp-metrics{gap:4px;padding:6px;border-radius:13px}.dq-landing-v5554 .dqp-metrics>span{grid-template-columns:1fr;grid-template-rows:auto auto auto;justify-items:center;text-align:center;gap:1px;padding:4px 2px}.dq-landing-v5554 .dqp-metrics svg{grid-row:auto;width:15px;height:15px}.dq-landing-v5554 .dqp-metrics small{font-size:7px}.dq-landing-v5554 .dqp-metrics b{font-size:9px;max-width:100%}.dq-landing-v5554 .dqp-location-hint{display:grid;gap:2px;padding:9px 10px;border-radius:12px}.dq-landing-v5554 .dqp-location-hint b{font-size:10px}.dq-landing-v5554 .dqp-location-hint span{font-size:8.5px;line-height:1.35}.dq-landing-v5554 .dqp-promises{gap:5px}.dq-landing-v5554 .dqp-promises>span{display:grid;justify-items:center;align-content:center;gap:3px;min-height:48px;padding:5px 3px;font-size:8px;line-height:1.15}.dq-landing-v5554 .dqp-promises svg{width:15px;height:15px}.dq-landing-v5554 .dqp-start{min-height:54px!important;border-radius:15px!important;font-size:14px!important}.dq-landing-v5554 .dqp-start span{font-size:19px}.dq-landing-v5554 .dqp-unavailable-reason{font-size:9px!important;line-height:1.35}.dq-landing-v5554 .dqp-active-strip,.dq-landing-v5554 .dqp-returning{grid-template-columns:1fr;gap:9px;padding:12px 13px;border-radius:15px}.dq-landing-v5554 .dqp-active-strip>div{grid-template-columns:auto auto;gap:4px 6px}.dq-landing-v5554 .dqp-active-strip small{font-size:8px}.dq-landing-v5554 .dqp-active-strip b{font-size:10px}.dq-landing-v5554 .dqp-active-strip span{grid-column:1/3;font-size:9px}.dq-landing-v5554 .dqp-active-strip button,.dq-landing-v5554 .dqp-returning button{width:100%;min-height:40px;font-size:9px}.dq-landing-v5554 .dqp-returning small{font-size:8px}.dq-landing-v5554 .dqp-returning h2{font-size:14px!important}.dq-landing-v5554 .dqp-returning p{font-size:9px}.dq-landing-v5554 .dqp-direct{padding:16px 14px;border-radius:17px}.dq-landing-v5554 .dqp-direct h2{margin-bottom:12px!important;font-size:22px!important}.dq-landing-v5554 .dqp-direct-grid{grid-template-columns:1fr;gap:13px}.dq-landing-v5554 .dqp-points{gap:9px}.dq-landing-v5554 .dqp-points p{grid-template-columns:34px 1fr;gap:8px}.dq-landing-v5554 .dqp-points i{width:33px;height:33px;font-size:15px}.dq-landing-v5554 .dqp-points i svg{width:17px;height:17px}.dq-landing-v5554 .dqp-points p b{font-size:10px}.dq-landing-v5554 .dqp-points p small{font-size:8px}.dq-landing-v5554 .dqp-local{grid-template-columns:auto 1fr auto;place-items:center start;gap:10px;padding:10px 11px;border:0;border-radius:13px;background:#f4fbf7;text-align:left}.dq-landing-v5554 .dqp-bag{width:54px;height:54px;border-radius:15px}.dq-landing-v5554 .dqp-bag svg{width:26px;height:26px}.dq-landing-v5554 .dqp-bag span{right:6px;font-size:14px}.dq-landing-v5554 .dqp-local b{font-size:9px}.dq-landing-v5554 .dqp-local strong{font-size:16px}.dq-landing-v5554 .dqp-how summary{padding:13px 14px;font-size:12px}.dq-landing-v5554 .dqp-how-steps{grid-template-columns:1fr;padding:0 12px 12px;gap:6px}.dq-landing-v5554 .dqp-how-steps p{padding:7px}.dq-landing-v5554 .dqp-how-steps p>span{font-size:8.5px}.dq-landing-v5554 .dqp-contacts{grid-template-columns:1fr;gap:8px}.dq-landing-v5554 .dqp-contacts a{grid-template-columns:38px 1fr;gap:8px;min-height:58px;padding:7px 9px;border-radius:14px}.dq-landing-v5554 .dqp-contacts i{width:36px;height:36px}.dq-landing-v5554 .dqp-contacts b{font-size:10px}.dq-landing-v5554 .dqp-contacts small{font-size:8px}.dq-landing-v5554 .dqp-contact-directions{grid-column:1;min-height:50px!important;grid-template-columns:32px 1fr!important}.dq-landing-v5554 .dqp-start-bottom{min-height:52px!important;font-size:13px!important}.dq-landing-v5554 .dqp-disclosure{grid-template-columns:1fr;gap:8px;padding:11px 12px;border-radius:14px}.dq-landing-v5554 .dqp-disclosure p,.dq-landing-v5554 .dqp-disclosure b{font-size:8.5px}.dq-landing-v5554 .dqp-footer{gap:18px;margin:12px 0 -24px;padding:15px 10px;font-size:8.5px}.dd-location-dialog{width:min(94vw,520px)!important;max-width:520px!important}.dd-location-dialog .dd-modal-shell{border-radius:22px}.dd-location-dialog .dd-modal-head{padding:15px 15px 9px}.dd-location-dialog .dd-modal-head h2{font-size:19px!important}.dd-location-dialog .dd-close{width:40px!important;height:40px!important;min-width:40px!important}.dd-location-dialog .dd-modal-body{padding:14px 15px 18px}.dd-location-permission-v5554 h3,.dd-location-result h3{font-size:19px}.dd-location-permission-v5554 p,.dd-location-result p{font-size:12px}.dd-location-manual-dialog .dd-map{min-height:250px!important}}
@media(max-width:390px){.dq-landing-v5554{padding-inline:7px}.dq-landing-v5554 .dqp-nav{gap:6px}.dq-landing-v5554 .dqp-brand img{width:136px}.dq-landing-v5554 .dqp-brand span{display:none}.dq-landing-v5554 .dqp-location{min-width:122px;max-width:48vw}.dq-landing-v5554 .dqp-location b{max-width:76px}.dq-landing-v5554 .dqp-hero{padding:15px 12px 13px}.dq-landing-v5554 .dqp-hero h1{font-size:36px!important}.dq-landing-v5554 .dqp-food-art{min-height:230px}.dq-landing-v5554 .dqp-hero-food{width:min(236px,80vw)}}
@media(max-width:360px){.dq-landing-v5554 .dqp-brand img{width:126px}.dq-landing-v5554 .dqp-location{min-width:116px}.dq-landing-v5554 .dqp-hero h1{font-size:33px!important}.dq-landing-v5554 .dqp-food-art{min-height:214px}.dq-landing-v5554 .dqp-hero-food{width:min(218px,78vw)}.dq-landing-v5554 .dqp-promises>span{font-size:7.3px}.dq-landing-v5554 .dqp-footer{gap:13px}}
@media(prefers-reduced-motion:reduce){.dq-landing-v5554 *,.dd-location-permission-v5554 *{scroll-behavior:auto!important;animation:none!important;transition:none!important}.dq-landing-v5554 [data-reveal]{opacity:1!important;transform:none!important}}

/* =========================================================
   V5.55.5 · LANDING FINAL POLISH
   Reference-faithful hero + visible steam + compact location dialog
   ========================================================= */
.dq-landing-v5554 .dqp-footer{display:flex!important;align-items:center!important;justify-content:center!important;text-align:center!important;gap:0!important}
.dq-landing-v5554 .dqp-how-payment{display:grid;grid-template-columns:auto 1fr;gap:7px 10px;align-items:start;margin:0 16px 15px;padding:11px 12px;border:1px solid #e8d9b4;border-radius:13px;background:#fffaf0;color:#5b5a4f}
.dq-landing-v5554 .dqp-how-payment b{color:#8a5b00;font-size:10px;line-height:1.35;white-space:nowrap}
.dq-landing-v5554 .dqp-how-payment span{font-size:10px;line-height:1.45}

/* Restaurant branding belongs on the visual side, not below the restaurant name. */
.dq-landing-v5554 .dqp-restaurant-mark{top:10px!important;right:2%!important;bottom:auto!important;min-width:118px;max-width:184px;min-height:54px;border-radius:14px!important;background:rgba(255,255,255,.95)!important;box-shadow:0 12px 28px rgba(6,72,49,.16)!important}
.dq-landing-v5554 .dqp-restaurant-mark img{max-width:156px;max-height:46px}

/* More visible but still soft food steam. */
.dq-landing-v5554 .dqp-steam{top:-22px!important;left:50%!important;width:176px!important;height:126px!important;filter:drop-shadow(0 2px 5px rgba(73,105,90,.13));z-index:7!important}
.dq-landing-v5554 .dqp-steam span{bottom:0!important;width:32px!important;height:96px!important;filter:blur(5px)!important;opacity:0;background:radial-gradient(ellipse at 50% 88%,rgba(255,255,255,.98) 0%,rgba(223,232,227,.90) 32%,rgba(160,184,172,.55) 58%,rgba(120,153,137,.12) 73%,transparent 82%)!important;animation:dqpSteamV5555 4.8s cubic-bezier(.26,.03,.32,.98) infinite!important}
.dq-landing-v5554 .dqp-steam span:nth-child(1){left:18px!important;animation-delay:-.7s!important}
.dq-landing-v5554 .dqp-steam span:nth-child(2){left:55px!important;width:38px!important;height:108px!important;animation-delay:-2.0s!important}
.dq-landing-v5554 .dqp-steam span:nth-child(3){left:96px!important;width:31px!important;height:100px!important;animation-delay:-3.3s!important}
.dq-landing-v5554 .dqp-steam span:nth-child(4){left:128px!important;width:27px!important;height:88px!important;animation-delay:-4.1s!important}
@keyframes dqpSteamV5555{0%{opacity:0;transform:translate3d(0,18px,0) scale(.62,.76) rotate(2deg)}13%{opacity:.88}38%{opacity:.72;transform:translate3d(-6px,-2px,0) scale(.92,1.08) rotate(-4deg)}68%{opacity:.48;transform:translate3d(7px,-31px,0) scale(1.12,1.28) rotate(5deg)}100%{opacity:0;transform:translate3d(-5px,-62px,0) scale(1.28,1.48) rotate(-4deg)}}

/* Location chooser is a centered modal, not a full-screen mobile sheet. */
.dd-location-dialog{position:fixed!important;inset:0!important;margin:auto!important;width:min(430px,calc(100vw - 34px))!important;max-width:430px!important;max-height:min(74dvh,650px)!important;border-radius:24px!important}
.dd-location-dialog.dd-location-manual-dialog{width:min(520px,calc(100vw - 28px))!important;max-width:520px!important;max-height:min(86dvh,780px)!important}
.dd-location-dialog .dd-modal-shell{max-height:inherit!important;border-radius:24px!important;overflow:hidden!important}
.dd-location-dialog .dd-modal-body{overscroll-behavior:contain}
.dd-location-dialog::backdrop{background:rgba(4,27,21,.48)!important;backdrop-filter:blur(6px)!important;-webkit-backdrop-filter:blur(6px)!important}

@media(max-width:760px){
  /* Preserve the reference composition inside the hero: copy left, visual/logo right. */
  .dq-landing-v5554 .dqp-hero{grid-template-columns:minmax(0,1.18fr) minmax(118px,.82fr)!important;column-gap:8px!important;row-gap:10px!important;padding:16px 13px 14px!important}
  .dq-landing-v5554 .dqp-hero-copy{grid-column:1!important;grid-row:1!important;align-self:center!important;min-width:0!important}
  .dq-landing-v5554 .dqp-food-art{grid-column:2!important;grid-row:1!important;align-self:stretch!important;min-height:205px!important;margin:0!important;overflow:visible!important}
  .dq-landing-v5554 .dqp-food-art>i{width:150px!important;max-width:115%!important}
  .dq-landing-v5554 .dqp-hero-food{width:min(168px,42vw)!important;max-width:168px!important;border-width:6px!important}
  .dq-landing-v5554 .dqp-food-note{top:58px!important;right:-2px!important;max-width:82px!important;font-size:8.5px!important;line-height:1.08!important;z-index:8!important}
  .dq-landing-v5554 .dqp-restaurant-mark{top:2px!important;right:-2px!important;bottom:auto!important;min-width:88px!important;max-width:112px!important;min-height:38px!important;padding:5px 7px!important;border-radius:11px!important;z-index:10!important}
  .dq-landing-v5554 .dqp-restaurant-mark img{max-width:98px!important;max-height:30px!important}
  .dq-landing-v5554 .dqp-restaurant-mark .dqp-name-lockup{min-height:30px!important;padding:4px 6px!important;border-radius:8px!important;font-size:8.5px!important;line-height:1!important}
  .dq-landing-v5554 .dqp-steam{top:20px!important;left:52%!important;width:116px!important;height:86px!important;transform:translateX(-50%) scale(.82)!important;transform-origin:center bottom!important}
  .dq-landing-v5554 .dqp-steam span{height:74px!important;filter:blur(4px)!important}
  .dq-landing-v5554 .dqp-steam span:nth-child(1){left:8px!important}.dq-landing-v5554 .dqp-steam span:nth-child(2){left:34px!important;height:82px!important}.dq-landing-v5554 .dqp-steam span:nth-child(3){left:62px!important;height:78px!important}.dq-landing-v5554 .dqp-steam span:nth-child(4){left:88px!important;height:68px!important}
  .dq-landing-v5554 .dqp-available{font-size:8.4px!important;padding:5px 8px!important;min-height:30px!important}
  .dq-landing-v5554 .dqp-welcome{font-size:8px!important;margin-top:8px!important}
  .dq-landing-v5554 .dqp-hero h1{font-size:clamp(31px,9vw,39px)!important;line-height:.96!important;margin:9px 0 7px!important;max-width:100%!important}
  .dq-landing-v5554 .dqp-hero-copy>p{font-size:12.5px!important;line-height:1.27!important;-webkit-line-clamp:3!important}
  .dq-landing-v5554 .dqp-rating{margin-top:8px!important;gap:5px!important}.dq-landing-v5554 .dqp-rating>span{font-size:18px!important}.dq-landing-v5554 .dqp-rating b{font-size:13px!important}.dq-landing-v5554 .dqp-rating em{font-size:8px!important;line-height:1.2!important}
  .dq-landing-v5554 .dqp-metrics,.dq-landing-v5554 .dqp-location-hint,.dq-landing-v5554 .dqp-promises,.dq-landing-v5554 .dqp-start,.dq-landing-v5554 .dqp-unavailable-reason{grid-column:1 / -1!important}
  .dq-landing-v5554 .dqp-how-payment{grid-template-columns:1fr!important;gap:3px!important;margin:0 12px 12px!important;padding:9px 10px!important}.dq-landing-v5554 .dqp-how-payment b,.dq-landing-v5554 .dqp-how-payment span{font-size:8.5px!important}
  .dq-landing-v5554 .dqp-footer{margin:12px 0 -24px!important;padding:16px 10px!important;font-size:9px!important}
  .dd-location-dialog{width:min(398px,calc(100vw - 28px))!important;max-height:72dvh!important;border-radius:22px!important}
  .dd-location-dialog.dd-location-manual-dialog{width:min(430px,calc(100vw - 20px))!important;max-height:84dvh!important}
}
@media(max-width:390px){
  .dq-landing-v5554 .dqp-hero{grid-template-columns:minmax(0,1.16fr) minmax(110px,.84fr)!important;padding:14px 11px 13px!important}
  .dq-landing-v5554 .dqp-food-art{min-height:192px!important}.dq-landing-v5554 .dqp-hero-food{width:min(154px,41vw)!important}.dq-landing-v5554 .dqp-hero h1{font-size:32px!important}.dq-landing-v5554 .dqp-hero-copy>p{font-size:11.7px!important}.dq-landing-v5554 .dqp-restaurant-mark{max-width:104px!important}.dq-landing-v5554 .dqp-food-note{font-size:8px!important;right:-4px!important}
}
@media(max-width:360px){
  .dq-landing-v5554 .dqp-hero{grid-template-columns:minmax(0,1.14fr) minmax(102px,.86fr)!important;column-gap:6px!important}
  .dq-landing-v5554 .dqp-food-art{min-height:180px!important}.dq-landing-v5554 .dqp-hero-food{width:min(145px,40vw)!important}.dq-landing-v5554 .dqp-hero h1{font-size:29px!important}.dq-landing-v5554 .dqp-hero-copy>p{font-size:11px!important}.dq-landing-v5554 .dqp-restaurant-mark{min-width:78px!important;max-width:98px!important}.dq-landing-v5554 .dqp-food-note{display:none!important}
}
@media(prefers-reduced-motion:reduce){.dq-landing-v5554 .dqp-steam span{animation:none!important;opacity:.16!important}}


/* =========================================================
   DineQube Direct Delivery V5.59.0 — Customer Flow Lock
   ========================================================= */
html,body.dd-customer-app{max-width:100%;overflow-x:hidden;background:#FFF9ED!important;color:#0C2923}
.dd-customer-app *{box-sizing:border-box;min-width:0}
.dq59-checkout{background:#FFF9ED!important;color:#0C2923!important}
body.dd-customer-app:has(.dq59-checkout){background:#FFF9ED!important}
.dq59-address{align-items:center!important;overflow:hidden!important}.dq59-address>span:nth-child(2){min-width:0!important}.dq59-address b,.dq59-address em{white-space:normal!important;overflow-wrap:anywhere!important;display:block!important}.dq59-address em{max-width:100%!important}
.dq59-recommend{border:1px solid #DDECE5;border-radius:18px;background:#fff;padding:12px;overflow:hidden}.dq59-recommend>header{display:flex;align-items:end;justify-content:space-between;gap:10px;margin-bottom:9px}.dq59-recommend header small{display:block;color:#0F7B5A;font-size:8px;font-weight:900;letter-spacing:.11em}.dq59-recommend header b{display:block;color:#0C2923;font-size:13px;margin-top:2px}.dq59-recommend header>span{font-size:9px;color:#607873}.dq59-recommend-scroll{display:flex;gap:9px;overflow-x:auto;scroll-snap-type:x mandatory;padding:1px 2px 6px;overscroll-behavior-inline:contain;-webkit-overflow-scrolling:touch;scrollbar-width:none}.dq59-recommend-scroll::-webkit-scrollbar{display:none}.dq59-recommend-scroll article{flex:0 0 168px;scroll-snap-align:start;display:grid;grid-template-columns:44px minmax(0,1fr) 32px;gap:8px;align-items:center;border:1px solid #E0ECE6;border-radius:999px;padding:6px;background:#FBFDFB}.dq59-rec-img{width:44px;height:44px;border-radius:50%;overflow:hidden;background:#E8F6F0;display:grid;place-items:center}.dq59-rec-img img{width:100%;height:100%;object-fit:cover}.dq59-recommend-scroll article b{display:block;font-size:10px;line-height:1.15;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dq59-recommend-scroll article small{display:block;font-size:9px;color:#607873;margin-top:3px}.dq59-recommend-scroll article button{width:32px!important;height:32px!important;min-height:32px!important;padding:0!important;border-radius:50%!important;background:#0F7B5A!important;color:white!important;font-size:18px!important}
.dd-checkout-line{max-width:100%!important;overflow:hidden}.dd-checkout-line>div:first-child{min-width:0!important}.dd-checkout-line b{overflow-wrap:anywhere!important;word-break:normal!important}.dq-cart-quantity{flex-shrink:0!important;white-space:nowrap!important}
.dd-address-form-v590{display:grid;gap:12px}.dd-verified-location{display:grid;grid-template-columns:38px minmax(0,1fr) 28px;gap:10px;align-items:center;padding:12px;border:1px solid #CFE7DC;border-radius:16px;background:#F1FAF5;color:#0C2923}.dd-verified-location>svg{width:24px;height:24px;color:#0F7B5A}.dd-verified-location small{display:block;color:#0F7B5A;font-size:8px;font-weight:900;letter-spacing:.1em}.dd-verified-location b{display:block;margin:2px 0;font-size:12px}.dd-verified-location span{display:block;color:#607873;font-size:10px;line-height:1.35}.dd-verified-location>i{display:grid;place-items:center;width:26px;height:26px;border-radius:50%;background:#0F7B5A;color:#fff;font-style:normal;font-weight:900}.dd-address-actions-single{grid-template-columns:1fr!important}.dd-address-actions-single button{min-height:50px!important}
.dq59-upi-return{text-align:center;display:grid;gap:10px;padding:4px 2px 8px}.dq59-upi-icon{width:58px;height:58px;margin:auto;display:grid;place-items:center;border-radius:20px;background:#E8F6F0;color:#07543F;font-size:28px;font-weight:900}.dq59-upi-return h3{margin:0;font-size:25px}.dq59-upi-return p{margin:0;color:#607873;line-height:1.5}.dq59-upi-return small{color:#718780}.dq59-upi-return>div{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:4px}
.dq59-success-overlay{position:fixed;inset:0;z-index:99999;background:rgba(255,249,237,.97);display:grid;place-items:center;padding:24px;animation:dq59fade .18s ease-out}.dq59-success-card{text-align:center}.dq59-success-ring{width:104px;height:104px;margin:auto;display:grid;place-items:center;border-radius:50%;background:#0F7B5A;box-shadow:0 0 0 14px #E8F6F0,0 24px 60px rgba(15,123,90,.22);animation:dq59pop .38s cubic-bezier(.2,.9,.2,1.15)}.dq59-success-ring i{color:#fff;font-style:normal;font-size:56px;line-height:1;animation:dq59check .36s .15s both}.dq59-success-card h2{margin:28px 0 6px;font-size:28px;color:#0C2923}.dq59-success-card p{margin:0 auto;max-width:300px;color:#607873;line-height:1.5}.dq59-success-overlay.is-leaving{opacity:0;transform:scale(.99);transition:.24s ease}@keyframes dq59pop{from{opacity:0;transform:scale(.45)}to{opacity:1;transform:scale(1)}}@keyframes dq59check{from{opacity:0;transform:scale(.2) rotate(-18deg)}to{opacity:1;transform:none}}@keyframes dq59fade{from{opacity:0}to{opacity:1}}
.dq59-live-track{min-height:100dvh;background:#FFF9ED;padding:10px 12px calc(28px + env(safe-area-inset-bottom));max-width:720px;margin:0 auto}.dq59-live-track .dq-track-top{position:sticky;top:0;z-index:20;background:rgba(255,249,237,.94);backdrop-filter:blur(14px);padding:calc(6px + env(safe-area-inset-top)) 0 8px}.dq59-status-hero{display:grid;grid-template-columns:54px 1fr;gap:12px;align-items:center;padding:16px;border:1px solid #D8E9E1;border-radius:22px;background:#fff;box-shadow:0 12px 30px rgba(12,41,35,.06);margin:8px 0 12px}.dq59-status-icon{width:54px;height:54px;border-radius:18px;background:#E8F6F0;color:#0F7B5A;display:grid;place-items:center;font-size:24px;font-weight:900}.dq59-status-hero h1{margin:2px 0 4px;font-size:23px;line-height:1.1}.dq59-status-hero p{margin:0;color:#607873;line-height:1.4;font-size:12px}.dq59-status-hero small{font-size:8px;letter-spacing:.11em;color:#0F7B5A;font-weight:900}.dq59-payment-note{padding:13px 14px;border:1px solid #E8D6A2;border-radius:17px;background:#FFF9E8;margin-bottom:12px}.dq59-payment-note b{display:block;color:#654900;font-size:12px}.dq59-payment-note p{margin:4px 0 9px;color:#765f24;font-size:11px;line-height:1.45}.dq59-payment-note a{display:inline-flex;padding:9px 12px;border-radius:999px;background:#fff;border:1px solid #E2C97E;color:#07543F;text-decoration:none;font-size:10px;font-weight:900}.dq59-map-wrap{border-radius:22px!important;overflow:hidden!important;border:1px solid #D4E1DB!important;background:#D9DFDC!important}.dq59-map-wrap .dd-track-map{height:min(42vh,360px)!important;min-height:270px!important}.dq59-delivery-card{margin:12px 0;padding:14px;border:1px solid #DDECE5;border-radius:18px;background:#fff}.dq59-delivery-card small{display:block;font-size:8px;font-weight:900;letter-spacing:.11em;color:#0F7B5A}.dq59-delivery-card b{display:block;margin-top:4px;font-size:13px}.dq59-delivery-card p{margin:4px 0;color:#607873;font-size:11px;line-height:1.4;overflow-wrap:anywhere}.dq59-delivery-card span{display:block;color:#607873;font-size:10px}.dq59-delivery-card em{display:inline-flex;margin-top:8px;padding:6px 9px;border-radius:999px;background:#E8F6F0;color:#07543F;font-style:normal;font-size:9px;font-weight:900}.dq59-track-actions{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:8px;position:sticky;bottom:calc(8px + env(safe-area-inset-bottom));z-index:18;padding:8px;border:1px solid #D7E6DF;background:rgba(255,255,255,.95);backdrop-filter:blur(14px);border-radius:18px;box-shadow:0 16px 38px rgba(12,41,35,.15)}.dq59-track-actions>*{min-height:48px!important;display:flex!important;align-items:center;justify-content:center;text-align:center;text-decoration:none;border-radius:13px!important;font-size:10px!important;font-weight:900!important}.dq59-track-links{display:flex!important;justify-content:center;gap:8px!important;flex-wrap:wrap!important;margin:14px 0!important}.dq59-track-links button{min-height:38px!important;background:transparent!important;border:0!important;text-decoration:underline;text-underline-offset:4px;color:#4B665E!important;box-shadow:none!important;padding:6px 8px!important}
.dq59-help{text-align:center;display:grid;gap:10px;padding:6px}.dq59-help-icon{width:54px;height:54px;display:grid;place-items:center;margin:auto;border-radius:18px;background:#E8F6F0;font-size:25px}.dq59-help h3{margin:0}.dq59-help p{margin:0;color:#607873;line-height:1.5}.dq59-help>b{font-size:16px}.dq59-call{background:#0F7B5A!important;color:#fff!important;text-decoration:none!important;justify-content:center!important;min-height:50px!important}
.dq59-track-fullscreen{position:fixed!important;inset:0!important;width:100vw!important;height:100dvh!important;max-width:none!important;max-height:none!important;margin:0!important;border-radius:0!important;padding:0!important;background:#FFF9ED!important}.dq59-track-fullscreen::backdrop{background:rgba(8,28,23,.42)!important}.dq59-track-fullscreen .dd-modal-shell{width:100%!important;height:100%!important;max-width:none!important;max-height:none!important;border-radius:0!important;display:flex!important;flex-direction:column!important;background:#FFF9ED!important}.dq59-track-fullscreen .dd-modal-head{position:sticky!important;top:0!important;z-index:4!important;background:#FFF9ED!important;padding-top:calc(14px + env(safe-area-inset-top))!important}.dq59-track-fullscreen .dd-modal-body{flex:1!important;overflow:auto!important;padding-bottom:calc(24px + env(safe-area-inset-bottom))!important}.dq59-live-full{max-width:680px;margin:auto;display:grid;gap:12px}.dq59-live-status{padding:16px;border:1px solid #DDECE5;border-radius:20px;background:#fff}.dq59-live-status>small,.dq59-detail-card>small{display:block;color:#0F7B5A;font-size:8px;font-weight:900;letter-spacing:.11em}.dq59-live-status h2{margin:4px 0;font-size:24px}.dq59-live-status p{margin:0;color:#607873;line-height:1.45}.dq59-payment{display:inline-flex;margin-top:10px;padding:6px 9px;border-radius:999px;font-size:9px;font-weight:900}.dq59-payment.ok{background:#E8F6F0;color:#07543F}.dq59-payment.pending{background:#FFF4D8;color:#715200}.dq59-detail-card{padding:14px;border:1px solid #DDECE5;border-radius:18px;background:#fff}.dq59-detail-card>p{color:#607873;overflow-wrap:anywhere}.dq59-full-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px}.dq59-full-actions>*{min-height:48px;display:flex;align-items:center;justify-content:center;border-radius:14px;text-decoration:none;font-weight:900;background:#0F7B5A;color:#fff}.dq59-full-actions .secondary{background:#fff!important;color:#07543F!important;border:1px solid #CFE0D8!important}
@media(max-width:560px){.dq54-fields{grid-template-columns:1fr!important}.dq59-upi-return>div{grid-template-columns:1fr}.dq59-track-actions{grid-template-columns:1fr 1fr!important}.dq59-track-actions>#dd-view-tracking{grid-column:1/-1}.dq59-track-actions>#dd-enable-order-alerts{grid-column:1/-1}.dq59-map-wrap .dd-track-map{height:300px!important}.dq54-table-checkout .dd-checkout-line{grid-template-columns:minmax(0,1fr) auto!important}.dq54-table-checkout .dq-cart-quantity{grid-template-columns:30px 24px 30px!important}.dq59-recommend-scroll article{flex-basis:158px}}
@media(max-width:360px){.dq59-live-track{padding-left:8px;padding-right:8px}.dq59-track-actions{grid-template-columns:1fr!important}.dq59-track-actions>#dd-view-tracking,.dq59-track-actions>#dd-enable-order-alerts{grid-column:auto}.dq54-table-checkout .dd-checkout-line{grid-template-columns:1fr!important}.dq54-table-checkout .dq-cart-quantity{justify-self:start!important}.dq59-recommend-scroll article{flex-basis:150px}.dq59-status-hero{grid-template-columns:46px 1fr;padding:13px}.dq59-status-icon{width:46px;height:46px}.dq59-status-hero h1{font-size:20px}}

/* V5.59.0 payment recovery */
.dq59-payment-note.is-warning{border-color:#e7c66f;background:#fff8df}.dq59-payment-recovery{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}.dq59-payment-recovery>*{min-height:44px;flex:1 1 150px;border-radius:14px}
