/**
 * Direct Web Storefront Design System
 * "Modern Glass-Modernist Commerce" - Mobile & Desktop Responsive
 */

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-subtle: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #ca8a04;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 9999px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ========================================== */
/* APP LAYOUT & WRAPPERS */
/* ========================================== */
.app-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
}

@media (min-width: 768px) {
    .app-layout {
        padding-bottom: 30px;
    }
}

/* ========================================== */
/* HEADER SYSTEM */
/* ========================================== */
.main-header {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    min-width: 0;
    flex: 1;
}

.brand-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--primary-light, #eff6ff);
    border-radius: var(--radius-md, 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.brand-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.brand-avatar-emoji {
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    min-width: 0;
}

.brand-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.3px;
    line-height: 1.2;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .brand-title {
        font-size: 18px;
    }
}

.brand-status {
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: color 0.3s;
}

.brand-status.status-open {
    color: #16a34a;
}

.brand-status.status-closed {
    color: #dc2626;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.status-dot.open {
    background-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
    animation: pulseDotGreen 2s infinite;
}

.status-dot.closed {
    background-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25);
}

.status-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-left: 2px;
    padding: 1px 4px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    color: #475569;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-brand:hover .status-info-btn {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #2563eb;
    transform: scale(1.1);
}

@keyframes pulseDotGreen {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.store-closed-banner {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-bottom: 1px solid #fecaca;
    color: #991b1b;
    padding: 10px 16px;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    position: sticky;
    top: 56px;
    z-index: 90;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.08);
}

.closed-banner-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.closed-banner-text {
    flex: 1;
}

/* ========================================== */
/* 🏪 ULTRA-COMPACT 3D STORE INFO CARD */
/* ========================================== */
.store-compact-3d-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px;
    margin: 16px 0 14px 0;
    box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.c3d-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.c3d-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.c3d-icon-box {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(37, 99, 235, 0.12);
}

.c3d-shop-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.c3d-title-meta {
    min-width: 0;
}

.c3d-store-name {
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.c3d-hours-tag {
    font-size: 11px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
}

.c3d-tiny-icon {
    width: 12px;
    height: 12px;
    object-fit: contain;
}

.c3d-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.c3d-status-badge.c3d-open {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.c3d-status-badge.c3d-closed {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.c3d-pulse-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
}

.c3d-open .c3d-pulse-dot {
    background: #22c55e;
    animation: pulseDotGreen 2s infinite;
}

.c3d-closed .c3d-pulse-dot {
    background: #ef4444;
}

/* Info Grid (Address & Phone) */
.c3d-info-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px 0;
}

@media (min-width: 600px) {
    .c3d-info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

.c3d-info-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 5px 9px;
    font-size: 11.5px;
    color: #334155;
    font-weight: 600;
    min-width: 0;
}

.c3d-chip-icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.12));
}

.c3d-chip-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 3D Tactile Buttons Row */
.c3d-actions-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 6px;
    padding-top: 6px;
    border-top: 1px dashed #e2e8f0;
}

.c3d-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 34px;
    padding: 0 10px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.c3d-btn:active {
    transform: translateY(1.5px);
    box-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.06);
}

.c3d-btn-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.c3d-btn-call {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}
.c3d-btn-call:hover {
    background: #dbeafe;
}

.c3d-btn-wa {
    background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
    color: #047857;
    border: 1px solid #a7f3d0;
}
.c3d-btn-wa:hover {
    background: #a7f3d0;
}

.c3d-btn-dir {
    background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
    color: #6d28d9;
    border: 1px solid #ddd6fe;
}
.c3d-btn-dir:hover {
    background: #ddd6fe;
}

.c3d-btn-map {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    color: #475569;
    border: 1px solid #cbd5e1;
}
.c3d-btn-map:hover {
    background: #e2e8f0;
}

/* ========================================== */
/* 🏪 STORE INFO POPUP MODAL SHEET */
/* ========================================== */
.store-info-modal-sheet {
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.15);
    animation: slideUpSheet 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .store-info-modal-sheet {
        border-radius: 18px;
        max-height: 85vh;
        margin: auto;
        box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(226, 232, 240, 0.8);
        animation: popInModal 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

@keyframes slideUpSheet {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes popInModal {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ========================================== */
/* 🎙️ VOICE SEARCH ANIMATED MODAL SHEET */
/* ========================================== */
.voice-search-sheet {
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    max-width: 440px;
    width: 100%;
    padding: 20px 24px 28px;
    text-align: center;
    box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.2);
    animation: slideUpSheet 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .voice-search-sheet {
        border-radius: 20px;
        margin: auto;
        padding: 24px 28px 30px;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
        animation: popInModal 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

.voice-search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.voice-title-tag {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.voice-search-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pulsing Sound Waves */
.voice-mic-wave-container {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.voice-mic-badge {
    position: relative;
    z-index: 5;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.4);
    transition: transform 0.2s ease;
}

.voice-mic-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

.voice-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(244, 63, 94, 0.4);
    opacity: 0;
    pointer-events: none;
}

.voice-mic-wave-container.listening .ring-1 {
    width: 80px;
    height: 80px;
    animation: voicePulseRing 1.8s infinite ease-out;
}

.voice-mic-wave-container.listening .ring-2 {
    width: 105px;
    height: 105px;
    animation: voicePulseRing 1.8s infinite ease-out 0.45s;
}

.voice-mic-wave-container.listening .ring-3 {
    width: 130px;
    height: 130px;
    animation: voicePulseRing 1.8s infinite ease-out 0.9s;
}

@keyframes voicePulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.voice-status-text {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
}

.voice-transcript-preview {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748b;
    min-height: 22px;
    margin-bottom: 20px;
    max-width: 320px;
    word-break: break-word;
}

.voice-transcript-preview.has-text {
    color: #dc2626;
    font-weight: 800;
    font-size: 15px;
}

.voice-suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    border-top: 1px dashed #e2e8f0;
    padding-top: 16px;
    width: 100%;
}

.voice-chip {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.voice-chip:hover {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #2563eb;
    transform: translateY(-1px);
}

.header-search {
    flex: 1;
    max-width: 380px;
    position: relative;
    display: none;
}

@media (min-width: 768px) {
    .header-search {
        display: none; /* Hidden — same search bar already in body content below */
    }
}

.header-search-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    height: 38px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-pill);
    padding: 0 8px 0 14px;
    gap: 8px;
    transition: all 0.2s ease;
}

.header-search-wrap:focus-within {
    background: #ffffff;
    border-color: #fc8019;
    box-shadow: 0 0 0 3px rgba(252, 128, 25, 0.12);
}

.header-search-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    outline: none;
    height: 100%;
    padding: 0;
    font-family: inherit;
}

.header-search-wrap input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.header-search-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-search-mic-3d {
    background: linear-gradient(145deg, #ffffff 0%, #fff1f2 100%);
    border: 1px solid #fecdd3;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(244, 63, 94, 0.15), inset 0 1px 1px #ffffff;
    padding: 0;
}

.btn-search-mic-3d:hover {
    transform: translateY(-1px) scale(1.1);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.28);
    border-color: #fb7185;
    background: #ffe4e6;
}

.btn-search-mic-3d:active {
    transform: translateY(1px) scale(0.95);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

#btnHeaderWallet {
    display: none !important;
}

.btn-header-pill {
    display: none; /* Mobile: Clean header without clutter. Bottom bar handles Wallet & Account! */
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .btn-header-pill {
        display: flex;
    }
}

.btn-header-pill:hover {
    background: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
}

/* Desktop Header Nav Links */
.desktop-header-nav {
    display: none;
    align-items: center;
    gap: 6px;
    margin: 0 16px;
}

@media (min-width: 768px) {
    .desktop-header-nav {
        display: flex;
    }
}

.btn-desktop-nav {
    background: transparent;
    border: none;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-desktop-nav:hover {
    background: var(--bg-subtle);
    color: var(--text-main);
}

.btn-desktop-nav.active {
    background: var(--text-main);
    color: #ffffff;
}

.btn-header-cart {
    position: relative;
    background: #ffffff;
    color: #ff5200; /* Swiggy / Zomato Signature Vibrant Orange */
    border: 1.5px solid #ff5200;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 3px rgba(255, 82, 0, 0.1);
    transition: all 0.15s ease-in-out;
    flex-shrink: 0;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-header-cart:hover {
    background: #fff7ed;
    border-color: #ea580c;
    color: #ea580c;
}

.btn-header-cart:active {
    transform: scale(0.96);
}

/* Active State with Items: Solid Vibrant Swiggy Orange */
.btn-header-cart.has-items {
    background: #ff5200;
    color: #ffffff;
    border-color: #ff5200;
    box-shadow: 0 2px 8px rgba(255, 82, 0, 0.28);
}

.btn-header-cart.has-items:hover {
    background: #ea580c;
    border-color: #ea580c;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-svg-icon {
    stroke: currentColor;
    transition: transform 0.15s ease;
}

.cart-text-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-btn-label {
    font-size: 13px;
    font-weight: 700;
}

.cart-header-subtotal {
    font-size: 12.5px;
    font-weight: 800;
    color: #ff5200;
}

.btn-header-cart.has-items .cart-header-subtotal {
    color: #ffffff;
}

/* Floating Notification Badge */
.cart-badge-floating {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: #ef4444;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
    border-radius: 9999px;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.btn-header-cart.has-items .cart-badge-floating {
    background: #ffffff;
    color: #ff5200;
    border-color: #ff5200;
}

@media (max-width: 767px) {
    .btn-header-cart {
        padding: 0;
        width: 38px;
        height: 38px;
        justify-content: center;
        border-radius: 50%;
    }
    
    .cart-text-group {
        display: none;
    }
    
    .cart-badge-floating {
        top: -4px;
        right: -6px;
    }
}

/* ========================================== */
/* HERO BANNER & CATEGORIES */
/* ========================================== */
.main-content {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 16px;
}

@media (max-width: 767px) {
    .main-content {
        padding: 8px 6px;
    }
}

.store-hero-compact {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: #ffffff;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    font-size: 10px;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.hero-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.categories-bar {
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categories-bar::-webkit-scrollbar {
    display: none;
}

.categories-scroll {
    display: flex;
    gap: 8px;
    padding-bottom: 4px;
}

.cat-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.cat-pill.active, .cat-pill:hover {
    background: var(--text-main);
    color: #ffffff;
    border-color: var(--text-main);
}

/* ========================================== */
/* CATALOG & DESKTOP SIDEBAR GRID */
/* ========================================== */
.catalog-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

@media (min-width: 992px) {
    .catalog-container {
        grid-template-columns: 1fr 340px;
    }
}

/* ================================================= */
/* 5 STOREFRONT FRONT VIEW MODELS (Mobile & Desktop) */
/* ================================================= */

.products-grid {
    display: grid !important;
    width: 100% !important;
}

.products-grid > * {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* MODEL 1: 🍔 DURGER KING (3-Column Fast-Food Grid) */
.products-grid.model_durgerking,
.products-grid.grid_3col {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px 6px !important;
}
.products-grid.model_durgerking .product-card,
.products-grid.grid_3col .product-card {
    padding: 4px 2px !important;
    border-radius: 8px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
.durger-media-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 100%;
    margin-bottom: 2px;
}
.durger-emoji {
    font-size: 38px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.durger-gold-badge {
    position: absolute;
    top: -2px;
    right: 2px;
    background: #f59e0b;
    color: #ffffff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.durger-title-row {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    display: block !important;
    text-align: center !important;
    margin-bottom: 6px !important;
    width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}
.durger-dot {
    opacity: 0.5;
    margin: 0 1px;
}
.durger-btn-add {
    background: #f59e0b !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    width: 100% !important;
    height: 28px !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.1s, background 0.2s !important;
}
.durger-btn-add:active {
    transform: scale(0.96);
}
.durger-qty-controller {
    display: flex !important;
    gap: 4px !important;
    width: 100% !important;
}
.durger-btn-minus {
    flex: 1 !important;
    height: 28px !important;
    background: #ef4444 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}
.durger-btn-plus {
    flex: 1 !important;
    height: 28px !important;
    background: #f59e0b !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}

/* MODEL 2: 🍕 SWIGGY / ZOMATO (Restaurant & Food Menu) */
/* ========================================== */
/* 🍔 SWIGGY COMPLETE USER EXPERIENCE STYLES */
/* ========================================== */
.swiggy-experience-block {
    margin-bottom: 24px;
}

/* 1. Swiggy & Zomato Signature Search Bar */
.swiggy-search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 14px;
    padding: 0 12px 0 16px;
    height: 48px;
    gap: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    margin-bottom: 16px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.swiggy-search-box:focus-within {
    border-color: #fc8019;
    box-shadow: 0 0 0 3px rgba(252, 128, 25, 0.16), 0 6px 20px rgba(252, 128, 25, 0.08);
}

.swiggy-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #64748b;
    transition: color 0.2s ease;
}

.swiggy-search-box:focus-within .swiggy-search-icon {
    color: #fc8019;
}

.swiggy-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    outline: none;
    height: 100%;
    padding: 0;
    font-family: inherit;
}

.swiggy-search-box input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.swiggy-search-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.search-mic-divider {
    width: 1px;
    height: 20px;
    background: #e2e8f0;
}

/* ========================================== */
/* 🎙️ 3D LIVE MICROPHONE BUTTON EFFECT (LITE RED) */
/* ========================================== */
.swiggy-mic-btn-3d {
    background: linear-gradient(145deg, #ffffff 0%, #fff1f2 50%, #ffe4e6 100%);
    border: 1px solid #fecdd3;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(244, 63, 94, 0.16), inset 0 1px 2px #ffffff, inset 0 -1px 2px rgba(251, 113, 133, 0.2);
    position: relative;
    padding: 0;
}

.swiggy-mic-btn-3d:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 16px rgba(244, 63, 94, 0.32), inset 0 1px 2px #ffffff;
    border-color: #fb7185;
    background: #ffe4e6;
}

.swiggy-mic-btn-3d:active {
    transform: translateY(1px) scale(0.95);
    box-shadow: 0 1px 3px rgba(244, 63, 94, 0.2), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mic-3d-img {
    width: 21px;
    height: 21px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(225, 29, 72, 0.22));
    transition: transform 0.25s ease;
    animation: liveMicFloat 3.5s infinite ease-in-out;
}

.btn-search-mic-3d .mic-3d-img {
    width: 17px;
    height: 17px;
}

@keyframes liveMicFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-1.5px) scale(1.08);
    }
}

/* 2. Swiggy Promo Slideshow Carousel */
.swiggy-slideshow-container {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.swiggy-slides-track {
    display: flex;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.swiggy-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 18px;
}
.swiggy-slide.slide-1 {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #fae8ff 100%);
    border: 1px solid #ddd6fe;
}
.swiggy-slide.slide-2 {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fef3c7 100%);
    border: 1px solid #fed7aa;
}
.swiggy-slide.slide-3 {
    background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 50%, #fef3c7 100%);
    border: 1px solid #fecdd3;
}
.swiggy-slide-content {
    flex: 1;
}
.swiggy-slide-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6d28d9;
    margin-bottom: 4px;
}
.swiggy-slide.slide-2 .swiggy-slide-badge {
    color: #c2410c;
}
.swiggy-slide.slide-3 .swiggy-slide-badge {
    color: #be123c;
}
.swiggy-slide-title {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 4px 0;
    line-height: 1.2;
}
.swiggy-slide-desc {
    font-size: 12px;
    color: #475569;
    margin: 0 0 12px 0;
}
.swiggy-slide-btn {
    background: #be185d;
    color: #ffffff;
    border: none;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(190, 24, 93, 0.25);
    transition: all 0.2s;
}
.swiggy-slide.slide-2 .swiggy-slide-btn {
    background: #ea580c;
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.25);
}
.swiggy-slide.slide-3 .swiggy-slide-btn {
    background: #0f172a;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
}
.swiggy-slide-btn:hover {
    transform: translateY(-1px);
}
.swiggy-slide-graphic {
    font-size: 64px;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.15));
    margin-left: 12px;
}

/* Slideshow Dots */
.swiggy-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    align-items: center;
}
.swiggy-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.25);
    cursor: pointer;
    transition: all 0.3s;
}
.swiggy-dot.active {
    width: 18px;
    border-radius: 6px;
    background: #0f172a;
}

/* 3. "WHAT'S ON YOUR MIND ?" Section */
.swiggy-mind-section {
    margin-bottom: 24px;
}
.swiggy-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 10px 0 8px 0;
}
.swiggy-header-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}
.swiggy-section-title {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.6px;
    color: #1e293b;
    text-transform: uppercase;
    white-space: nowrap;
}
.swiggy-mind-grid {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 14px 16px 18px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    align-items: flex-end;
}
.swiggy-mind-grid::-webkit-scrollbar {
    display: none;
}

/* ============================================================ */
/* 🏷️ PREMIUM COMPACT HORIZONTAL MENU FILTER RAIL */
/* ============================================================ */
.menu-filter-rail {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 4px 10px 4px;
    margin-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}
.menu-filter-rail::-webkit-scrollbar {
    display: none;
}
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    height: 32px;
    background: #ffffff;
    border: 1.2px solid #e2e8f0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.18s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    flex-shrink: 0;
    user-select: none;
}
.filter-pill:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}
.filter-pill:active {
    transform: scale(0.96);
}
.filter-pill.active {
    background: #0f172a !important;
    color: #ffffff !important;
    border-color: #0f172a !important;
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.22) !important;
}
.filter-pill.active.filter-pill-veg {
    background: #15803d !important;
    border-color: #15803d !important;
}
.filter-pill.active.filter-pill-nonveg {
    background: #b91c1c !important;
    border-color: #b91c1c !important;
}
.filter-pill.filter-clear-btn {
    background: #fef2f2;
    color: #ef4444;
    border-color: #fecaca;
    font-weight: 800;
}
.filter-pill.filter-clear-btn:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
}

/* Veg / Non-Veg Icon Dots */
.veg-icon-dot {
    width: 13px;
    height: 13px;
    border: 1.5px solid #16a34a;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    flex-shrink: 0;
}
.veg-icon-dot::after {
    content: '';
    width: 5.5px;
    height: 5.5px;
    border-radius: 50%;
    background: #16a34a;
}
.nonveg-icon-dot {
    width: 13px;
    height: 13px;
    border: 1.5px solid #dc2626;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    flex-shrink: 0;
}
.nonveg-icon-dot::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-bottom: 6px solid #dc2626;
}
.swiggy-mind-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
    width: 78px;
    padding: 0;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.swiggy-mind-circle {
    position: relative;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #f8fafc;
    border: 2.5px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-sizing: border-box;
    padding: 2px;
}
.swiggy-mind-circle.has-custom-img {
    background: #ffffff;
}
.swiggy-mind-circle img,
.swiggy-mind-circle img.swiggy-cat-custom-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block !important;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.06));
}
.swiggy-mind-circle img.hd-emoji-img {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain !important;
}

/* 🌟 ACTIVE STATE: EXACT SWIGGY ORANGE CIRCLE RING + TOP-RIGHT BADGE */
.swiggy-mind-check {
    display: none;
    position: absolute;
    top: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: #fc8019;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(252, 128, 25, 0.45);
    z-index: 5;
}
.swiggy-mind-item.active .swiggy-mind-circle {
    border-color: #fc8019 !important;
    box-shadow: 0 0 0 1.5px #ffffff inset, 0 4px 14px rgba(252, 128, 25, 0.25) !important;
    transform: scale(1.04);
}
.swiggy-mind-item.active .swiggy-mind-check {
    display: flex !important;
    animation: swiggyBadgePop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes swiggyBadgePop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.swiggy-mind-label {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-align: center;
    margin: 0;
    display: block;
    letter-spacing: -0.2px;
    transition: color 0.15s, font-weight 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.swiggy-mind-item.active .swiggy-mind-label {
    color: #fc8019 !important;
    font-weight: 800 !important;
}
.swiggy-mind-item:hover:not(.active) .swiggy-mind-label {
    color: #0f172a;
}

/* 4. "TOP RATED NEAR YOU" Horizontal Rail */
.swiggy-top-rated-section {
    margin-bottom: 10px;
}
.swiggy-top-rated-scroll {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 6px 14px 8px 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}
.swiggy-top-rated-scroll::-webkit-scrollbar {
    display: none;
}
.swiggy-rated-card {
    min-width: 210px;
    max-width: 210px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    flex-shrink: 0;
}
.swiggy-rated-media {
    height: 110px;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
}
.swiggy-one-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff5200;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}
.swiggy-heart-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 16px;
    cursor: pointer;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
    z-index: 2;
}
.swiggy-rated-info {
    padding: 10px 12px;
}
.swiggy-rated-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.swiggy-rated-rating {
    font-size: 11px;
    font-weight: 700;
    color: #15803d;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 6px;
}
.swiggy-rated-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.swiggy-rated-price {
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
}
.swiggy-rated-add-btn {
    background: #ffffff;
    color: #16a34a;
    border: 1px solid #16a34a;
    font-weight: 800;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    transition: all 0.15s;
}
.swiggy-rated-add-btn:hover {
    background: #16a34a;
    color: #ffffff;
}

/* ============================================ */
/* PRODUCT DETAIL MODAL                         */
/* ============================================ */
#productDetailModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.product-detail-sheet {
    background: #ffffff;
    border-radius: 22px;
    max-width: 430px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
    position: relative;
    animation: pdSlideUp 0.25s ease-out;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
}
@keyframes pdSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================ */
/* 👑 BRIGHT & COLORFUL LUXURY CUSTOMER PROFILE MODAL */
/* ============================================================ */
.colorful-profile-sheet,
.premium-auth-sheet {
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.25) !important;
    border: 1.5px solid #fed7aa !important;
    background: #ffffff !important;
    animation: authModalFadeUp 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes authModalFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.profile-action-row {
    transition: all 0.18s ease;
}

.profile-action-row:hover {
    background: #fff7ed !important;
}

.profile-action-row:active {
    background: #ffedd5 !important;
    transform: scale(0.99);
}

.btn-profile-logout {
    transition: all 0.2s ease;
}

.btn-profile-logout:hover {
    background: #fee2e2 !important;
    border-color: #fca5a5 !important;
    color: #b91c1c !important;
    transform: translateY(-1px);
}

.btn-profile-logout:active {
    transform: scale(0.97);
}
.product-detail-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(15, 23, 42, 0.72);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}
.product-detail-close:hover {
    background: rgba(15, 23, 42, 0.95);
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.product-detail-close:active {
    transform: scale(0.92);
}
.product-detail-img-box {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border-radius: 18px 18px 0 0;
}
.product-detail-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}
.product-detail-img-box .pd-emoji {
    font-size: 68px;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.18));
}
.product-detail-body {
    padding: 12px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.product-detail-name {
    font-size: 17px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.product-detail-rating {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 4px;
}
.product-detail-desc {
    font-size: 12.5px;
    color: #475569;
    line-height: 1.35;
    margin-bottom: 10px;
}

/* ========================================== */
/* 🍱 COMBO BUNDLE ITEMS SECTION (MATCHING)  */
/* ========================================== */
.product-combo-box {
    background: linear-gradient(135deg, #fffdfa 0%, #fef9ee 50%, #fef3c7 100%);
    border: 1.5px solid #fde68a;
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(180, 83, 9, 0.04);
}

.combo-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.combo-heading small {
    font-size: 9.5px;
    color: #b45309;
    background: #fef3c7;
    border: 1px solid #fde68a;
    padding: 2px 7px;
    border-radius: 5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.combo-items-chips-grid {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.combo-item-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #78350f;
    box-shadow: 0 1px 2px rgba(180, 83, 9, 0.03);
    transition: all 0.15s ease;
}

.combo-item-chip:hover {
    background: #fffbeb;
    border-color: #fcd34d;
    transform: translateX(2px);
}

.combo-qty-pill {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
    padding: 1.5px 7px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 10.5px;
}

/* ========================================== */
/* 🧀 ADD-ONS & EXTRAS SECTION (PREMIUM)     */
/* ========================================== */
.product-addons-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #d1fae5 100%);
    border: 1.5px solid #10b981;
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.06);
}

.addons-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 6px;
}

.addons-heading small {
    font-size: 9.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 2px 7px;
    border-radius: 5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(5, 150, 105, 0.2);
}

/* ========================================== */
/* 🏷️ PRODUCT VARIANTS / SIZES (PREMIUM)     */
/* ========================================== */
.product-variants-box {
    margin-bottom: 10px;
}

.variants-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.variants-heading small {
    font-size: 9.5px;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 2px 7px;
    border-radius: 5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.variants-chips-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.variant-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.variant-chip:hover {
    border-color: #93c5fd;
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

.variant-chip.active {
    border-color: #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
    transform: translateY(-1px);
}

.v-radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.variant-chip:hover .v-radio-circle {
    border-color: #60a5fa;
}

.variant-chip.active .v-radio-circle {
    border-color: #2563eb;
    background: #2563eb;
    box-shadow: inset 0 0 0 3.5px #ffffff, 0 0 6px rgba(37, 99, 235, 0.35);
}

.v-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
}

.v-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.2px;
}

.variant-chip.active .v-title {
    color: #1e3a8a;
    font-weight: 900;
}

.v-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.v-fare {
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
}

.variant-chip.active .v-fare {
    color: #2563eb;
}

.v-orig {
    font-size: 11.5px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.v-qty-badge {
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: none;
    padding: 2px 7px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(22, 163, 74, 0.3);
}

.product-detail-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.product-detail-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.pd-price-label {
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-detail-price {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
}

.pd-orig-price {
    font-size: 11.5px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.product-detail-footer .pd-add-btn {
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.product-detail-footer .pd-add-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}

/* 5. SWIGGY SIGNATURE PRODUCT MENU CARD (List View) */
.products-grid.model_swiggy {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
}
@media (min-width: 768px) {
    .products-grid.model_swiggy {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
.products-grid.model_swiggy .product-card {
    padding: 14px !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03) !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    text-align: left !important;
}
.products-grid.model_swiggy .swiggy-details-col {
    flex: 1 !important;
    min-width: 0 !important;
}
.products-grid.model_swiggy .swiggy-veg-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 14px !important;
    height: 14px !important;
    border: 1.5px solid #16a34a !important;
    border-radius: 3px !important;
    margin-right: 4px !important;
}
.products-grid.model_swiggy .swiggy-veg-icon::after {
    content: '' !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #16a34a !important;
}
.products-grid.model_swiggy .swiggy-nonveg-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 14px !important;
    height: 14px !important;
    border: 1.5px solid #dc2626 !important;
    border-radius: 3px !important;
    margin-right: 4px !important;
}
.products-grid.model_swiggy .swiggy-nonveg-icon::after {
    content: '' !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #dc2626 !important;
}
.products-grid.model_swiggy .swiggy-discount-pill {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    padding: 1px 6px !important;
    border-radius: 4px !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
    border: 1px solid #fecaca !important;
}
.products-grid.model_swiggy .swiggy-bestseller-badge {
    color: #ea580c !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.3px !important;
    text-transform: uppercase !important;
}
.products-grid.model_swiggy .product-name {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin: 4px 0 2px 0 !important;
    line-height: 1.25 !important;
    text-align: left !important;
}
.products-grid.model_swiggy .product-price {
    font-size: 14px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    margin-bottom: 2px !important;
    text-align: left !important;
}
.products-grid.model_swiggy .swiggy-rating-row {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #15803d !important;
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
    margin-bottom: 4px !important;
}
.products-grid.model_swiggy .swiggy-desc-snippet {
    font-size: 12px !important;
    color: #64748b !important;
    line-height: 1.35 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.products-grid.model_swiggy .swiggy-img-box {
    position: relative !important;
    width: 110px !important;
    height: 96px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 46px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05) !important;
    margin-bottom: 6px !important;
}
.products-grid.model_swiggy .swiggy-floating-add-btn {
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 86px !important;
    height: 32px !important;
    background: #ffffff !important;
    color: #16a34a !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.15s !important;
    z-index: 5 !important;
}
.products-grid.model_swiggy .swiggy-floating-add-btn:hover {
    background: #16a34a !important;
    color: #ffffff !important;
    border-color: #16a34a !important;
}
.products-grid.model_swiggy .swiggy-floating-qty {
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 86px !important;
    height: 32px !important;
    background: #16a34a !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 6px !important;
    box-shadow: 0 3px 8px rgba(22, 163, 74, 0.25) !important;
    z-index: 5 !important;
}
.products-grid.model_swiggy .swiggy-btn-step {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    padding: 0 4px !important;
}
.products-grid.model_swiggy .swiggy-step-val {
    font-size: 13px !important;
    font-weight: 900 !important;
}

/* ============================================================ */
/* 🍱 3 CATALOG GRID STYLES (1-COL LIST, 2-COL GRID, 3-COL GRID) */
/* ============================================================ */
.layout-switcher-pill {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2px;
    gap: 2px;
}

.btn-layout-toggle {
    width: 28px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-layout-toggle.active {
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* 🔲 2-COLUMN GRID (Highlights Model - Large Size) */
.products-grid.grid_2col {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 14px !important;
}

.products-grid.grid_2col .catalog-card.card-2col {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    border: 1.5px solid #f1f5f9 !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease !important;
}

.products-grid.grid_2col .catalog-card.card-2col:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07) !important;
}

.products-grid.grid_2col .catalog-card.card-2col .swiggy-rated-media {
    height: 130px !important;
    width: 100% !important;
}

.products-grid.grid_2col .catalog-card.card-2col .swiggy-rated-info {
    padding: 10px 12px !important;
}

.products-grid.grid_2col .catalog-card.card-2col .swiggy-rated-title {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.products-grid.grid_2col .catalog-card.card-2col .swiggy-rated-rating {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #15803d !important;
    margin: 3px 0 6px 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.products-grid.grid_2col .catalog-card.card-2col .swiggy-rated-price {
    font-size: 15px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
}

/* ▦ 3-COLUMN COMPACT GRID (Highlights Model - Compact Size) */
.products-grid.grid_3col {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
    gap: 10px !important;
}

.products-grid.grid_3col .catalog-card.card-3col {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1.2px solid #f1f5f9 !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-media {
    height: 90px !important;
    width: 100% !important;
}

.products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-info {
    padding: 6px 8px !important;
}

.products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-title {
    font-size: 11.5px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-rating {
    font-size: 9.5px !important;
    font-weight: 700 !important;
    color: #15803d !important;
    margin: 2px 0 4px 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-price {
    font-size: 13px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
}

.products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-add-btn {
    padding: 3px 8px !important;
    font-size: 10.5px !important;
    border-radius: 6px !important;
}

.swiggy-rated-qty-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #16a34a;
    border-radius: 6px;
    padding: 1px 3px;
    gap: 3px;
}
.swiggy-rated-qty-box .btn-step-minus {
    border: none;
    background: none;
    color: #ef4444;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    padding: 0 3px;
}
.swiggy-rated-qty-box .btn-step-qty {
    font-size: 11px;
    font-weight: 800;
    color: #16a34a;
    min-width: 10px;
    text-align: center;
}
.swiggy-rated-qty-box .btn-step-plus {
    border: none;
    background: none;
    color: #16a34a;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    padding: 0 3px;
}
.swiggy-rated-added-pill {
    font-size: 10px;
    font-weight: 800;
    color: #16a34a;
    background: #ecfdf5;
    padding: 2px 5px;
    border-radius: 4px;
    border: 1px solid #86efac;
}

/* MODEL 4: 🔑 DIGITAL KEYS & SAAS HUB */
.products-grid.model_digital {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
}
.products-grid.model_digital .product-card {
    padding: 14px !important;
    border-radius: 12px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    border: 1px solid #1e293b !important;
    display: grid !important;
    grid-template-columns: 50px 1fr auto !important;
    align-items: center !important;
    gap: 12px !important;
    text-align: left !important;
}
.products-grid.model_digital .product-media {
    font-size: 30px !important;
    background: #1e293b !important;
    border-radius: 8px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.products-grid.model_digital .product-name {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 2px !important;
    text-align: left !important;
}
.products-grid.model_digital .digital-tag {
    font-size: 10px !important;
    color: #38bdf8 !important;
    font-weight: 700 !important;
    display: inline-block !important;
}
.products-grid.model_digital .product-price {
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #38bdf8 !important;
    text-align: right !important;
}
.products-grid.model_digital .btn-add-pill {
    background: #4f46e5 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    padding: 8px 14px !important;
    border-radius: 6px !important;
    height: auto !important;
    width: auto !important;
}

/* MODEL 5: ✨ LUXURY MINIMALIST BOUTIQUE */
.products-grid.model_boutique {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
}
.products-grid.model_boutique .product-card {
    padding: 16px 12px !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04) !important;
    text-align: center !important;
    align-items: center !important;
}
.products-grid.model_boutique .product-media {
    font-size: 46px !important;
    height: 85px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 8px !important;
}
.products-grid.model_boutique .product-name {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: -0.2px !important;
    margin-bottom: 4px !important;
    color: #0f172a !important;
    text-align: center !important;
}
.products-grid.model_boutique .product-price {
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 8px !important;
    text-align: center !important;
}
.products-grid.model_boutique .btn-add-pill {
    background: #0f172a !important;
    color: #ffffff !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 6px 14px !important;
}

/* MODEL 6: ⚡ ZEPTO / BLINKIT QUICK COMMERCE */
.products-grid.model_zepto {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
}
.products-grid.model_zepto .product-card {
    padding: 10px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    text-align: left !important;
    align-items: flex-start !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03) !important;
}
.products-grid.model_zepto .zepto-eta-badge {
    background: #ecfdf5 !important;
    color: #059669 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 3px !important;
    margin-bottom: 4px !important;
}
.products-grid.model_zepto .product-media {
    width: 100% !important;
    height: 75px !important;
    font-size: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8fafc !important;
    border-radius: 8px !important;
    margin-bottom: 6px !important;
}
.products-grid.model_zepto .product-name {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-align: left !important;
    height: 30px !important;
    line-height: 1.25 !important;
    margin-bottom: 2px !important;
    color: #1e293b !important;
}
.products-grid.model_zepto .zepto-unit {
    font-size: 10px !important;
    color: #64748b !important;
    margin-bottom: 4px !important;
}
.products-grid.model_zepto .product-price {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    text-align: left !important;
    margin-bottom: 6px !important;
}
.products-grid.model_zepto .btn-add-pill {
    background: #ffffff !important;
    color: #059669 !important;
    border: 1.5px solid #059669 !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    padding: 6px 0 !important;
}

@media (min-width: 992px) {
    .products-grid.model_durgerking, .products-grid.grid_3col { grid-template-columns: repeat(4, 1fr) !important; gap: 14px !important; }
    .products-grid.model_swiggy { grid-template-columns: repeat(3, 1fr) !important; gap: 16px !important; }
    .products-grid.model_flipkart, .products-grid.grid_2col { grid-template-columns: repeat(3, 1fr) !important; gap: 16px !important; }
    .products-grid.model_digital { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
    .products-grid.model_boutique { grid-template-columns: repeat(3, 1fr) !important; gap: 18px !important; }
    .products-grid.model_zepto { grid-template-columns: repeat(3, 1fr) !important; gap: 16px !important; }
}

/* Product Card Styling */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.badge-item-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--primary);
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-media {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 8px;
}

.product-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.btn-add-pill {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}

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

.qty-control-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--bg-subtle);
    border-radius: var(--radius-pill);
    padding: 2px;
}

.btn-qty {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.qty-display {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
}

/* ========================================== */
/* DESKTOP STICKY SIDEBAR CART */
/* ========================================== */
.desktop-cart-sidebar {
    display: none;
    position: sticky;
    top: 80px;
}

@media (min-width: 992px) {
    .desktop-cart-sidebar {
        display: block;
    }
}

.sidebar-cart-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.sidebar-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 14px;
}

.sidebar-cart-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.sidebar-item-count {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.sidebar-cart-items {
    max-height: 320px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 13px;
}

.sidebar-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
}

.btn-checkout-primary {
    background: var(--primary);
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ========================================== */
/* MOBILE NAVIGATION & STICKY BOTTOM BAR */
/* ========================================== */
/* ========================================== */
/* 🍔 SWIGGY FLOATING MINI CART CARD (EXACT MODEL) */
/* ========================================== */
.swiggy-floating-cart-bar {
    position: fixed;
    bottom: 68px; /* Floats directly above mobile bottom nav */
    left: 0;
    right: 0;
    padding: 0 12px;
    z-index: 92;
    display: flex;
    justify-content: center;
    pointer-events: none;
    animation: swiggyCardSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes swiggyCardSlideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.swiggy-cart-card {
    pointer-events: auto;
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 16px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14), 0 2px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.swiggy-cart-left {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}

.swiggy-cart-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.swiggy-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiggy-avatar-emoji {
    font-size: 22px;
}

.swiggy-cart-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.swiggy-cart-store-name {
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.swiggy-cart-sublink {
    font-size: 11.5px;
    font-weight: 700;
    color: #64748b;
    text-decoration: underline;
    margin-top: 2px;
}

.swiggy-cart-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* Green Checkout Pill Button */
.swiggy-btn-checkout {
    background: #059669; /* Swiggy Emerald Checkout Green */
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 7px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    transition: all 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.swiggy-btn-checkout:hover {
    background: #047857;
    transform: scale(1.02);
}

.swiggy-btn-checkout:active {
    transform: scale(0.97);
}

.swiggy-checkout-title {
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.2px;
}

.swiggy-checkout-meta {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.95;
    margin-top: 1px;
    white-space: nowrap;
}

/* Dismiss / Clear Button */
.swiggy-btn-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    border: none;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.swiggy-btn-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* ============================================================ */
/* 💎 3D ULTRA-PREMIUM MOBILE BOTTOM NAVIGATION DOCK            */
/* ============================================================ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 3px 8px max(5px, env(safe-area-inset-bottom)) 8px;
    z-index: 95;
    box-shadow: 
        0 -10px 25px -5px rgba(15, 23, 42, 0.06),
        0 -2px 6px -1px rgba(15, 23, 42, 0.03),
        inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
    .mobile-bottom-nav, .mobile-sticky-order-bar {
        display: none !important;
    }
}

.nav-item {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #64748b;
    cursor: pointer;
    flex: 1;
    height: 100%;
    padding: 2px 0;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* 3D Icon Capsule Container */
.nav-icon-wrapper {
    position: relative;
    width: 44px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 3D HD Emoji / Render Image */
.nav-3d-img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.nav-3d-fallback {
    font-size: 20px;
    line-height: 1;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.18));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

/* Typography */
.nav-label {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1px;
    color: #64748b;
    transition: all 0.25s ease;
    line-height: 1.1;
}

/* 🚀 3D ACTIVE STATE (LIFTED & GLOWING EFFECT) */
.nav-item.active .nav-icon-wrapper {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.14) 0%, rgba(59, 130, 246, 0.06) 100%);
    box-shadow: 
        0 4px 12px rgba(37, 99, 235, 0.22),
        inset 0 1px 1.5px rgba(255, 255, 255, 0.95),
        inset 0 -1px 1px rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.18);
    transform: translateY(-4px);
}

.nav-item.active .nav-3d-img {
    transform: scale(1.2) translateY(-1px);
    filter: drop-shadow(0 6px 12px rgba(37, 99, 235, 0.35));
}

.nav-item.active .nav-3d-fallback {
    transform: scale(1.2) translateY(-1px);
    filter: drop-shadow(0 6px 10px rgba(37, 99, 235, 0.38));
}

.nav-item.active .nav-label {
    color: #1d4ed8;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(37, 99, 235, 0.12);
}

/* 3D Glowing Pill Indicator Under Active Label */
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.45);
    animation: nav3dDotPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes nav3dDotPop {
    0% { transform: translateX(-50%) scale(0); opacity: 0; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

/* 3D Tactile Tap Feedback */
.nav-item:active {
    transform: scale(0.92) translateY(1px);
}

.nav-item:active .nav-icon-wrapper {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 3D Notification Dot Badge */
.nav-dot-badge {
    position: absolute;
    top: -2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(239, 68, 68, 0.4);
}


/* Page Headers (Orders, Wallet, etc.) */
.page-header {
    margin-bottom: 14px;
    padding: 2px 2px;
}

.page-header h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 2px 0 !important;
    letter-spacing: -0.3px !important;
}

.page-header p {
    font-size: 12px !important;
    color: #64748b !important;
    margin: 0 !important;
    line-height: 1.35 !important;
}

.auth-prompt-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.auth-prompt-box h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.auth-prompt-box p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
}

/* ========================================== */
/* MODAL & DRAWER SYSTEM */
/* ========================================== */
.modal-overlay,
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.modal-sheet {
    background: var(--bg-card);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .modal-sheet {
        border-radius: var(--radius-lg);
        animation: fadeIn 0.2s ease-out;
    }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.btn-modal-close {
    background: var(--bg-subtle);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Styles */
.form-group {
    margin-bottom: 12px;
    text-align: left;
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: var(--text-main);
}

.input-modern {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.input-modern:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.btn-detect-gps {
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gps-status-badge {
    font-size: 11px;
    font-weight: 600;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.btn-primary-action {
    background: var(--primary);
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 13px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    transition: var(--transition);
}

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

/* ========================================== */
/* LITEPAY / RAZORPAY PRECISE CHECKOUT MODAL  */
/* ========================================== */
.litepay-overlay {
    background: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    z-index: 10050;
}

.litepay-modal-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    width: 100%;
    position: relative;
    box-sizing: border-box;
    animation: litepayFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes litepayFadeIn {
    0% { opacity: 0; transform: scale(0.95) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.litepay-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 3;
}

.litepay-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Brand */
.litepay-brand {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.lp-brand-primary {
    color: #1e40af;
}

.lp-brand-accent {
    color: #2563eb;
}

/* Header Meta */
.litepay-header-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.litepay-order-id {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.litepay-meta-pills {
    display: flex;
    align-items: center;
    gap: 6px;
}

.litepay-pill-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.15s;
}

.litepay-pill-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.litepay-timer-pill {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 800;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: monospace;
}

/* QR Code Container */
.litepay-qr-container {
    display: flex;
    justify-content: center;
}

.litepay-qr-frame {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.litepay-qr-img {
    width: 140px;
    height: 140px;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}

/* UPI ID & Copy Row */
.litepay-upi-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}

.litepay-upi-id {
    color: #0f172a;
    font-weight: 800;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 12px;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.litepay-copy-btn {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: all 0.15s;
    flex-shrink: 0;
}

.litepay-copy-btn:hover {
    background: #dbeafe;
}

.litepay-copy-btn.copied {
    background: #dcfce7 !important;
    border-color: #86efac !important;
    color: #15803d !important;
}

/* Banking Name Pill */
.litepay-banking-pill {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    align-self: center;
}

/* Amount Banner */
.litepay-amount-banner {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-amt-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}

.lp-amt-value {
    font-size: 18px;
    font-weight: 900;
    color: #2563eb;
}

/* Accepting All UPI Apps Card */
.litepay-apps-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 8px 12px;
    text-align: center;
}

.litepay-apps-heading {
    font-size: 11.5px;
    font-weight: 800;
    color: #059669;
    margin-bottom: 6px;
}

.litepay-apps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.lp-app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: #475569;
    font-size: 10px;
    font-weight: 700;
    transition: transform 0.15s;
}

.lp-app-item:hover {
    transform: translateY(-2px);
}

.lp-app-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    font-weight: 900;
    font-size: 14px;
}

.lp-phonepe {
    background: #5f259f;
    color: #ffffff;
    font-size: 15px;
}

.lp-gpay {
    background: #ffffff;
}

.lp-paytm {
    background: #00b9f5;
    color: #ffffff;
    font-size: 11px;
}

.lp-bhim {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    font-size: 10px;
}

/* UTR Box */
.litepay-utr-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lp-utr-label {
    font-size: 11px;
    font-weight: 800;
    color: #334155;
}

.lp-utr-input {
    width: 100%;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align: center;
    box-sizing: border-box;
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.lp-utr-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Submit Button */
.litepay-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 10px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.litepay-submit-btn:hover {
    filter: brightness(1.08);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

.litepay-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ========================================== */
/* DESKTOP UI (2-COLUMN SPLIT - ZERO SCROLL!) */
/* ========================================== */
@media (min-width: 601px) {
    .litepay-modal-card {
        max-width: 660px;
        padding: 22px 24px;
    }
    
    .litepay-content-grid {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 24px;
        align-items: center;
    }
    
    .lp-col-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        border-right: 1px solid #f1f5f9;
        padding-right: 16px;
    }
    
    .lp-col-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-right: 10px;
    }
}

/* ========================================== */
/* MOBILE UI (1-COLUMN - PRESERVED & PERFECT) */
/* ========================================== */
@media (max-width: 600px) {
    .litepay-overlay {
        padding: 8px;
    }
    
    .litepay-modal-card {
        max-width: 410px;
        padding: 14px 16px;
        border-radius: 20px;
        max-height: 96vh;
        overflow-y: auto;
    }
    
    .litepay-content-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .lp-col-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
    
    .lp-col-right {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .litepay-brand {
        font-size: 20px;
        align-self: flex-start;
    }
    
    .litepay-qr-img {
        width: 130px;
        height: 130px;
    }
    
    .litepay-apps-grid {
        gap: 12px;
    }
    
    .lp-app-icon {
        width: 32px;
        height: 32px;
    }
    
    .litepay-submit-btn {
        padding: 10px;
        font-size: 12px;
    }
}

/* ========================================== */
/* ULTRA-PREMIUM VIRTUAL WALLET CARD & FORM   */
/* ========================================== */
.premium-wallet-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-radius: 20px;
    padding: 22px;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.premium-wallet-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.card-chip-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-logo-emoji {
    font-size: 20px;
}

.card-brand-txt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #f8fafc;
}

.card-status-pill {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.card-balance-block {
    margin-bottom: 22px;
}

.card-bal-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #94a3b8;
    display: block;
    margin-bottom: 4px;
}

.card-bal-val {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: -0.5px;
    line-height: 1;
}

.card-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: #cbd5e1;
}

.card-safe-tag {
    font-size: 11px;
    font-weight: 700;
    color: #38bdf8;
}

.wallet-deposit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.deposit-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.deposit-header p {
    font-size: 12px;
    color: #64748b;
}

.preset-pills-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-bottom: 14px;
    scrollbar-width: none;
}

.btn-preset-pill {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #1e293b;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-preset-pill:hover,
.btn-preset-pill:active {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-1px);
}

.custom-amount-input-box {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 6px 16px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.custom-amount-input-box:focus-within {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.currency-prefix {
    font-size: 20px;
    font-weight: 800;
    color: #64748b;
    margin-right: 8px;
}

.input-amount {
    border: none;
    background: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    width: 100%;
    outline: none;
}

.btn-wallet-topup {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
    transition: all 0.2s;
}

.btn-wallet-topup:active {
    transform: scale(0.98);
}

.wallet-perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed #e2e8f0;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.perk-item span {
    font-size: 18px;
}

.perk-item strong {
    display: block;
    color: #1e293b;
    font-size: 11px;
    line-height: 1.2;
}

.perk-item small {
    color: #64748b;
    font-size: 9px;
}

/* ========================================================
   📋 WALLET PASSBOOK & TRANSACTION STATEMENT STYLES
   ======================================================== */
.wallet-passbook-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.passbook-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.btn-refresh-passbook {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #3b82f6;
    font-weight: 800;
    font-size: 11.5px;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-refresh-passbook:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    transform: translateY(-1px);
}

.passbook-filter-tabs {
    display: flex;
    gap: 8px;
    margin: 14px 0 16px 0;
    overflow-x: auto;
    padding-bottom: 2px;
}

.filter-tab-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.filter-tab-pill:hover {
    border-color: #cbd5e1;
    color: #0f172a;
}

.filter-tab-pill.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

.passbook-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.txn-row-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    gap: 12px;
    transition: all 0.2s;
}

.txn-row-item:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.txn-left-col {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.txn-type-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
}

.txn-type-icon.credit {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.txn-type-icon.debit {
    background: #fff1f2;
    color: #e11d48;
    border: 1px solid #fecdd3;
}

.txn-details {
    min-width: 0;
    flex: 1;
}

.txn-title {
    font-weight: 800;
    font-size: 13.5px;
    color: #0f172a;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.txn-ref-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #3b82f6;
    font-size: 10px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 5px;
    font-family: monospace;
    cursor: pointer;
}

.txn-ref-pill:hover {
    background: #eff6ff;
    border-color: #93c5fd;
}

.txn-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.txn-right-col {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.txn-amount-val {
    font-size: 14.5px;
    font-weight: 900;
}

.txn-amount-val.credit {
    color: #16a34a;
}

.txn-amount-val.debit {
    color: #0f172a;
}

.txn-closing-bal {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    background: #ffffff;
    padding: 1px 5px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

/* ========================================== */
/* ========================================== */
/* ULTRA-PREMIUM 3D COMPACT ORDERS & TRACKING */
/* ========================================== */
.orders-list-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-history-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    padding: 13px 15px;
    box-shadow: 0 6px 18px -4px rgba(15, 23, 42, 0.07), 0 2px 6px -1px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 1);
    text-align: left;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Vibrant 3D Left Status Accent Borders */
.order-history-card.card-status-pending {
    border-left: 5px solid #f59e0b;
}

.order-history-card.card-status-preparing {
    border-left: 5px solid #f97316;
}

.order-history-card.card-status-dispatched {
    border-left: 5px solid #2563eb;
}

.order-history-card.card-status-paid_completed {
    border-left: 5px solid #10b981;
}

.order-history-card.card-status-rejected {
    border-left: 5px solid #ef4444;
}

.order-history-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -6px rgba(15, 23, 42, 0.12), 0 6px 10px -2px rgba(15, 23, 42, 0.05);
    border-color: #cbd5e1;
}

.order-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    gap: 8px;
}

.order-code-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    font-weight: 800;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3.5px 9px;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 1);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.2px;
}

.btn-copy-code {
    border: 1px solid #cbd5e1;
    background: #f1f5f9;
    color: #475569;
    border-radius: 5px;
    cursor: pointer;
    padding: 2px 5px;
    font-size: 10px;
    transition: all 0.15s;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-copy-code:hover {
    background: #e2e8f0;
    color: #0f172a;
    border-color: #94a3b8;
    transform: scale(1.05);
}

.order-sub-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
    gap: 8px;
}

/* ============================================================ */
/* ⚡ PREMIUM COMPACT STANDARD ETA DELIVERY PILL                */
/* ============================================================ */
.order-eta-mini-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 7px 11px;
    margin: 4px 0 10px 0;
    box-shadow: 0 1px 4px rgba(245, 158, 11, 0.12);
}

.order-eta-mini-bar.preparing {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-color: #fdba74;
}

.order-eta-mini-bar.dispatched {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #93c5fd;
}

.order-eta-mini-bar.delivered {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: #cbd5e1;
}

.order-eta-mini-bar.rejected {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fca5a5;
}

.eta-left-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eta-spark-icon {
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.eta-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.eta-label-tiny {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #b45309;
}

.order-eta-mini-bar.preparing .eta-label-tiny { color: #c2410c; }
.order-eta-mini-bar.dispatched .eta-label-tiny { color: #1d4ed8; }
.order-eta-mini-bar.delivered .eta-label-tiny { color: #475569; }
.order-eta-mini-bar.rejected .eta-label-tiny { color: #b91c1c; }

.eta-time-highlight {
    font-size: 12.5px;
    font-weight: 800;
    color: #0f172a;
}

.eta-duration-pill {
    font-size: 11px;
    font-weight: 800;
    padding: 3.5px 9px;
    border-radius: 6px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    letter-spacing: 0.2px;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(217, 119, 6, 0.25);
}

.order-eta-mini-bar.preparing .eta-duration-pill { background: #ea580c; }
.order-eta-mini-bar.dispatched .eta-duration-pill { background: #2563eb; }
.order-eta-mini-bar.delivered .eta-duration-pill.completed { background: #64748b; }
.order-eta-mini-bar.rejected .eta-duration-pill { background: #dc2626; }

.order-date-txt {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    margin-bottom: 0;
}

.order-badge-status {
    padding: 3.5px 10px;
    border-radius: 14px;
    font-size: 10.5px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.2px;
}

.status-completed {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #047857;
    border: 1px solid #6ee7b7;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.status-pending {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #b45309;
    border: 1px solid #fcd34d;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.2);
}

.status-rejected {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #b91c1c;
    border: 1px solid #fca5a5;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.2);
}

.status-preparing {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #c2410c;
    border: 1px solid #fdba74;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.2);
}

.status-dispatched {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1d4ed8;
    border: 1px solid #93c5fd;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

/* ============================================================ */
/* 🛵 SWIGGY & ZOMATO LIVE ORDER TRACKING & COUNTDOWN ENGINE    */
/* ============================================================ */
.live-tracker-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.live-tracker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
    flex-wrap: wrap;
}

.live-eta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.live-eta-sub-txt {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 600;
}

/* Progress Track Bar */
.live-progress-track {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 99px;
    overflow: hidden;
    margin: 8px 0 14px 0;
    position: relative;
}

.live-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 99px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 4-Step Animated Status Stepper */
.live-stepper-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    position: relative;
    margin-bottom: 8px;
}

.live-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.live-step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 4px;
    color: #64748b;
    transition: all 0.3s ease;
    z-index: 2;
}

.live-step-node.completed .live-step-icon {
    background: #dcfce7;
    border-color: #16a34a;
    color: #16a34a;
}

.live-step-node.active .live-step-icon {
    background: #2563eb;
    border-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
    animation: stepPulse 1.8s infinite;
}

.live-step-lbl {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    line-height: 1.2;
}

.live-step-node.active .live-step-lbl {
    color: #2563eb;
    font-weight: 800;
}

.live-step-node.completed .live-step-lbl {
    color: #0f172a;
}

@keyframes stepPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.pulse-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
    display: inline-block;
    animation: dotPulse 1.4s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(0.9); opacity: 1; }
}

.live-driver-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 12px;
    margin-top: 10px;
    font-size: 12px;
}

/* Compact Items Box */
.order-items-wrap {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-item-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #334155;
}

.order-item-line .name {
    font-weight: 700;
    color: #1e293b;
}

.order-item-line .qty-tag {
    background: #e0e7ff;
    color: #4338ca;
    font-size: 10.5px;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 4px;
    margin-left: 4px;
}

.order-item-line .price {
    font-weight: 900;
    color: #0f172a;
    font-size: 12.5px;
}

/* Digital Key Vault Box */
.digital-key-vault {
    background: #0f172a;
    color: #ffffff;
    border-radius: 10px;
    padding: 8px 10px;
    margin: 6px 0;
    border: 1px solid #1e293b;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.key-vault-title {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #38bdf8;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.key-vault-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.key-code-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #f8fafc;
    word-break: break-all;
}

.btn-copy-vault {
    background: #38bdf8;
    color: #0f172a;
    border: none;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 10.5px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.1s;
}

.btn-copy-vault:active {
    transform: scale(0.95);
}

/* Compact Colorful Delivery Address & Map Box */
.order-address-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 11.5px;
    color: #0369a1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.btn-open-map {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ffffff;
    color: #2563eb;
    border: 1.5px solid #bfdbfe;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.12);
    transition: all 0.15s ease-in-out;
}

.btn-open-map:hover {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.order-footer-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.order-pay-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 800;
}

.order-pay-pill.pay-wallet {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid #fcd34d;
    box-shadow: 0 1px 3px rgba(245, 158, 11, 0.15);
}

.order-pay-pill.pay-upi {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
    border: 1px solid #a7f3d0;
    box-shadow: 0 1px 3px rgba(16, 185, 129, 0.15);
}

.order-grand-total {
    font-size: 15px;
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    padding: 3px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.35);
    letter-spacing: -0.2px;
}

.btn-view-details-pill {
    background: #f8fafc;
    color: #0284c7;
    border: 1px solid #bae6fd;
    font-size: 11px;
    font-weight: 800;
    padding: 2.5px 8px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: all 0.15s ease-in-out;
}

.btn-view-details-pill:hover {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
}

/* ============================================== */
/* ORDER DETAILS MODAL / POPUP                    */
/* ============================================== */
.order-details-card {
    max-width: 520px;
    width: 92%;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
    animation: popIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.order-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.order-details-title-box {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.order-details-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
    background: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.order-details-status-badge {
    padding: 3px 9px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
}

.btn-close-modal {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-size: 15px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    outline: none;
    line-height: 1;
    padding: 0;
}

.btn-close-modal:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: scale(1.08) rotate(90deg);
    border-color: #94a3b8;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.btn-close-modal:active {
    transform: scale(0.92);
}

.order-details-body {
    padding: 16px 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-section-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.details-section-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.details-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.details-info-item .lbl {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.details-info-item .val {
    font-size: 13px;
    color: #1e293b;
    font-weight: 800;
    word-break: break-all;
}

.details-info-item.full-span {
    grid-column: span 2;
}

.delivery-details-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-modal-map-route {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.25);
    transition: transform 0.15s;
}

.btn-modal-map-route:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(37, 99, 235, 0.35);
}

.details-items-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.details-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    padding: 4px 0;
    border-bottom: 1px dashed #f1f5f9;
}

.bill-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12.5px;
    color: #475569;
}

.bill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bill-row.total-row {
    padding-top: 8px;
    border-top: 1.5px dashed #cbd5e1;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
}

.grand-total-val {
    color: #059669;
    font-size: 16px;
    font-weight: 900;
}

.order-details-footer {
    display: flex;
    gap: 10px;
    padding: 12px 18px;
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
}

.btn-modal-whatsapp {
    flex: 1;
    background: #25D366;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    padding: 9px 12px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
    transition: transform 0.15s;
}

.btn-modal-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35);
}

.btn-modal-footer-close {
    flex: 1;
    background: #0f172a;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    padding: 11px 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-modal-footer-close:hover {
    background: #1e293b;
}

.btn-modal-close,
.btn-close-modal,
.swiggy-btn-close,
.litepay-close-btn,
.customizer-close-btn {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    color: #475569 !important;
    border: 1.5px solid #e2e8f0 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    line-height: 1 !important;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
    flex: none !important;
    user-select: none !important;
    outline: none !important;
}

.btn-modal-close:hover,
.btn-close-modal:hover,
.swiggy-btn-close:hover,
.litepay-close-btn:hover,
.customizer-close-btn:hover {
    background: #ffffff !important;
    color: #0f172a !important;
    border-color: #cbd5e1 !important;
    transform: scale(1.08) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.btn-modal-close:active,
.btn-close-modal:active,
.swiggy-btn-close:active,
.litepay-close-btn:active,
.customizer-close-btn:active {
    transform: scale(0.92) !important;
    background: #f1f5f9 !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08) !important;
}

/* 📸 Custom Uploaded Image Styling - Full Cover View without Borders or White space */
.swiggy-img-box.has-custom-img,
.swiggy-rated-media.has-custom-img,
.product-media.has-custom-img,
.durger-media-box.has-custom-img,
span.has-custom-img,
.dk-item-icon.has-custom-img {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Enable overflow for swiggy image box so floating buttons don't get cut off */
.swiggy-img-box.has-custom-img {
    overflow: visible !important;
}

/* Clip others that don't have floating buttons */
.product-media.has-custom-img,
.durger-media-box.has-custom-img,
span.has-custom-img,
.dk-item-icon.has-custom-img {
    overflow: hidden !important;
}

/* Rated cards need overflow visible so badges show on top of custom images */
.swiggy-rated-media.has-custom-img {
    overflow: hidden !important;
}

.swiggy-img-box.has-custom-img img,
.swiggy-rated-media.has-custom-img img,
.product-media.has-custom-img img,
.durger-media-box.has-custom-img img,
span.has-custom-img img,
.dk-item-icon.has-custom-img img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    filter: none !important;
}

/* ============================================================ */
/* 📱 ULTRA-COMPACT STANDARD MOBILE VIEWPORT (FIT ABOVE-THE-FOLD) */
/* ============================================================ */
@media (max-width: 768px) {
    .swiggy-above-fold-container {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        box-sizing: border-box !important;
    }

    .main-content {
        padding: 6px 8px 80px 8px !important;
    }

    /* 1. Sleek Search Bar */
    .swiggy-search-box {
        height: 46px !important;
        padding: 0 10px 0 14px !important;
        margin-bottom: 12px !important;
        border-radius: 12px !important;
        background: #ffffff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    }
    .swiggy-search-box input {
        font-size: 13.5px !important;
    }

    /* 2. Well-Proportioned Promo Banner Carousel */
    .swiggy-slideshow-container {
        border-radius: 16px !important;
        margin-bottom: 14px !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05) !important;
    }
    .swiggy-slide {
        padding: 15px 16px !important;
        border-radius: 16px !important;
        min-height: 114px !important;
    }
    .swiggy-slide-badge {
        font-size: 9.5px !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 3px !important;
    }
    .swiggy-slide-title {
        font-size: 16.5px !important;
        margin: 0 0 3px 0 !important;
        line-height: 1.2 !important;
        font-weight: 900 !important;
    }
    .swiggy-slide-desc {
        font-size: 11.5px !important;
        margin: 0 0 8px 0 !important;
        line-height: 1.25 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .swiggy-slide-btn {
        padding: 5px 14px !important;
        font-size: 10.5px !important;
        font-weight: 800 !important;
        border-radius: 16px !important;
    }
    .swiggy-slide-graphic {
        font-size: 54px !important;
        margin-left: 10px !important;
    }
    .swiggy-slide-graphic img {
        width: 60px !important;
        height: 60px !important;
    }
    .swiggy-dots {
        bottom: 5px !important;
        gap: 5px !important;
    }
    .swiggy-dot {
        width: 6px !important;
        height: 6px !important;
    }
    .swiggy-dot.active {
        width: 16px !important;
    }

    /* 3. "WHAT'S ON YOUR MIND ?" Category Section (Fixed Left Clip) */
    .swiggy-mind-section {
        margin-bottom: 14px !important;
    }
    .swiggy-mind-section .swiggy-section-header,
    .swiggy-top-rated-section .swiggy-section-header {
        gap: 10px !important;
        margin: 10px 0 8px 0 !important;
        padding: 0 4px !important;
    }
    .swiggy-section-title {
        font-size: 16px !important;
        font-weight: 800 !important;
        letter-spacing: -0.3px !important;
    }
    .swiggy-mind-grid {
        gap: 12px !important;
        padding: 6px 12px 14px 12px !important;
    }
    .swiggy-mind-item {
        width: 72px !important;
        min-width: 72px !important;
        gap: 5px !important;
    }
    .swiggy-mind-circle,
    .swiggy-mind-circle.has-custom-img {
        width: 68px !important;
        height: 68px !important;
        border-radius: 50% !important;
    }
    .swiggy-mind-circle img.hd-emoji-img {
        width: 42px !important;
        height: 42px !important;
    }
    .swiggy-mind-label {
        font-size: 13px !important;
        font-weight: 600 !important;
        margin: 0 !important;
    }

    /* 4. "TOP RATED NEAR YOU" Horizontal Cards (Seamless Fit Above Bottom Bar) */
    .swiggy-top-rated-section {
        margin-bottom: 4px !important;
    }
    .swiggy-top-rated-scroll {
        gap: 12px !important;
        padding: 4px 12px 6px 12px !important;
    }
    .swiggy-rated-card {
        min-width: 154px !important;
        max-width: 154px !important;
        border-radius: 14px !important;
    }
    .swiggy-rated-media {
        height: 92px !important;
        font-size: 44px !important;
    }
    .swiggy-rated-info {
        padding: 8px 10px !important;
    }
    .swiggy-rated-title {
        font-size: 12.5px !important;
        font-weight: 800 !important;
        margin-bottom: 2px !important;
    }
    .swiggy-rated-rating {
        font-size: 9.5px !important;
        margin-bottom: 3px !important;
    }
    .swiggy-rated-price {
        font-size: 13.5px !important;
        font-weight: 900 !important;
    }
    .swiggy-rated-add-btn {
        font-size: 10.5px !important;
        padding: 4px 10px !important;
        border-radius: 6px !important;
    }

    /* 5. "EXPLORE OUR MENU" Header & Catalog Grid (Clean Standard Spacing) */
    #swiggyRecommendedHeader,
    .swiggy-section-header.swiggy-recommended-header,
    .swiggy-recommended-header,
    #swiggyExperienceBlock .swiggy-recommended-header {
        margin-top: 6px !important;
        margin-bottom: 8px !important;
        padding-top: 0 !important;
    }

    .catalog-container {
        display: block !important;
        width: 100% !important;
        gap: 0 !important;
    }
    .catalog-main {
        width: 100% !important;
    }
    .desktop-cart-sidebar {
        display: none !important;
    }

    .products-grid {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .products-grid.model_swiggy {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    .products-grid.grid_3col,
    .products-grid.model_durgerking {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
    }
    .products-grid.grid_2col,
    .products-grid.model_flipkart,
    .products-grid.model_zepto,
    .products-grid.model_boutique {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .products-grid.model_digital {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .products-grid.grid_3col .catalog-card.card-3col {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }
    .products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-media {
        height: 78px !important;
    }
    .products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-info {
        padding: 5px 6px !important;
    }
    .products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-title {
        font-size: 11px !important;
        line-height: 1.2 !important;
        margin-bottom: 1px !important;
    }
    .products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-rating {
        font-size: 8.5px !important;
        margin-bottom: 2px !important;
    }
    .products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-price {
        font-size: 11.5px !important;
    }
    .products-grid.grid_3col .catalog-card.card-3col .swiggy-rated-add-btn {
        font-size: 9.5px !important;
        padding: 2px 6px !important;
        border-radius: 5px !important;
    }

    .products-grid.grid_2col .catalog-card.card-2col {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        border-radius: 14px !important;
        box-sizing: border-box !important;
    }
    .products-grid.grid_2col .catalog-card.card-2col .swiggy-rated-media {
        height: 105px !important;
    }
    .products-grid.grid_2col .catalog-card.card-2col .swiggy-rated-info {
        padding: 8px 10px !important;
    }
    .products-grid.grid_2col .catalog-card.card-2col .swiggy-rated-title {
        font-size: 13px !important;
        font-weight: 800 !important;
    }
    .products-grid.grid_2col .catalog-card.card-2col .swiggy-rated-rating {
        font-size: 10px !important;
    }
    .products-grid.grid_2col .catalog-card.card-2col .swiggy-rated-price {
        font-size: 13.5px !important;
        font-weight: 900 !important;
    }
    .products-grid.grid_2col .catalog-card.card-2col .swiggy-rated-add-btn {
        font-size: 10.5px !important;
        padding: 3px 10px !important;
    }

    .products-grid.model_swiggy .product-card {
        padding: 8px 10px !important;
        border-radius: 12px !important;
        background: #ffffff !important;
        border: 1px solid #f1f5f9 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .products-grid.model_swiggy .swiggy-details-col {
        flex: 1 !important;
        min-width: 0 !important;
    }
    .products-grid.model_swiggy .product-name {
        font-size: 13px !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        margin: 2px 0 1px 0 !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .products-grid.model_swiggy .product-price {
        font-size: 13px !important;
        font-weight: 900 !important;
        color: #0f172a !important;
        margin-bottom: 1px !important;
    }
    .products-grid.model_swiggy .swiggy-rating-row {
        font-size: 9.5px !important;
        font-weight: 700 !important;
        color: #15803d !important;
        display: flex !important;
        align-items: center !important;
        gap: 2px !important;
        margin-bottom: 2px !important;
    }
    .products-grid.model_swiggy .swiggy-desc-snippet {
        font-size: 10.5px !important;
        color: #64748b !important;
        line-height: 1.25 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .products-grid.model_swiggy .swiggy-img-box {
        position: relative !important;
        width: 82px !important;
        height: 72px !important;
        border-radius: 10px !important;
        font-size: 34px !important;
        flex-shrink: 0 !important;
        margin-bottom: 4px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04) !important;
    }
    .products-grid.model_swiggy .swiggy-floating-add-btn {
        position: absolute !important;
        bottom: -6px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 68px !important;
        height: 25px !important;
        background: #ffffff !important;
        color: #16a34a !important;
        border: 1px solid #d1d5db !important;
        border-radius: 6px !important;
        font-size: 10.5px !important;
        font-weight: 900 !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.12) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        z-index: 5 !important;
    }
    .products-grid.model_swiggy .swiggy-floating-qty {
        position: absolute !important;
        bottom: -6px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 68px !important;
        height: 25px !important;
        background: #16a34a !important;
        color: #ffffff !important;
        border-radius: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 3px !important;
        box-shadow: 0 2px 6px rgba(22, 163, 74, 0.25) !important;
        z-index: 5 !important;
    }
    .products-grid.model_swiggy .swiggy-btn-step {
        background: transparent !important;
        border: none !important;
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        cursor: pointer !important;
        padding: 0 3px !important;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 18px !important;
        height: 100% !important;
    }
    .products-grid.model_swiggy .swiggy-step-val {
        font-size: 11px !important;
        font-weight: 900 !important;
        color: #ffffff !important;
        line-height: 1 !important;
        min-width: 12px !important;
        text-align: center !important;
        display: inline-block !important;
    }
}

/* ============================================================ */
/* 📲 DYNAMIC PWA FLOATING INSTALL BANNER & IOS MODAL STYLES   */
/* ============================================================ */
.pwa-install-banner {
    position: fixed;
    bottom: 74px;
    left: 12px;
    right: 12px;
    max-width: 440px;
    margin: 0 auto;
    z-index: 10000;
    animation: pwaSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pwaSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pwa-banner-card {
    background: #0f172a;
    color: #ffffff;
    border-radius: 16px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
    position: relative;
}

.pwa-btn-dismiss {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
    transition: color 0.15s;
}

.pwa-btn-dismiss:hover {
    color: #ffffff;
}

.pwa-banner-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.pwa-app-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.pwa-app-icon-badge-sm {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    overflow: hidden;
}

.pwa-banner-info {
    min-width: 0;
}

.pwa-banner-title {
    font-size: 13px;
    font-weight: 800;
    color: #f8fafc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.pwa-banner-sub {
    font-size: 10.5px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pwa-banner-actions {
    flex-shrink: 0;
    margin-right: 14px;
}

.pwa-btn-install {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: transform 0.15s;
    white-space: nowrap;
}

.pwa-btn-install:active {
    transform: scale(0.96);
}

/* iOS Safari Instruction Modal */
.pwa-ios-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
}

.pwa-ios-card {
    background: #ffffff;
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    animation: pwaSlideUp 0.3s ease-out;
}

.pwa-ios-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.pwa-ios-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.pwa-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #334155;
}

.pwa-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 800;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================================ */
/* 📱 PWA STANDALONE SPECIFIC LAYOUT SCALING (FILL VERTICAL FOLD) */
/* ============================================================ */
@media (display-mode: standalone) and (max-width: 768px) {
    /* Adjust container spacing */
    .swiggy-search-box {
        margin-bottom: 16px !important;
    }
    .swiggy-slideshow-container {
        margin-bottom: 18px !important;
    }
    
    /* Scale Promo Slideshow Banner */
    .swiggy-slide {
        min-height: 128px !important;
        padding: 16px 18px !important;
    }
    .swiggy-slide-title {
        font-size: 18px !important;
        margin-bottom: 4px !important;
    }
    .swiggy-slide-desc {
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }
    .swiggy-slide-graphic img {
        width: 72px !important;
        height: 72px !important;
    }

    /* Scale Category Bubbles */
    .swiggy-mind-section {
        margin-bottom: 14px !important;
    }
    .swiggy-mind-circle {
        width: 64px !important;
        height: 64px !important;
    }
    .swiggy-mind-circle img.hd-emoji-img {
        width: 38px !important;
        height: 38px !important;
    }
    .swiggy-mind-item {
        width: 66px !important;
        min-width: 66px !important;
    }
    .swiggy-mind-label {
        font-size: 12px !important;
    }

    /* Scale Top Rated Product Cards */
    .swiggy-top-rated-scroll {
        padding: 6px 12px 18px 12px !important;
    }
    .swiggy-rated-card {
        min-width: 162px !important;
        max-width: 162px !important;
        border-radius: 16px !important;
    }
    .swiggy-rated-media {
        height: 98px !important;
    }
    .swiggy-rated-title {
        font-size: 13px !important;
    }
}

/* ==================================================== */
/* 💳 PAYTM / PHONEPE EMERALD GREEN SUCCESS MODAL SCREEN */
/* ==================================================== */
.paytm-success-overlay {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    animation: paytmFadeIn 0.3s ease-out;
}

@keyframes paytmFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.paytm-success-card {
    background: #ffffff;
    border-radius: 22px;
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 60px -12px rgba(5, 150, 105, 0.45), 0 0 0 1px rgba(16, 185, 129, 0.15);
    position: relative;
    animation: paytmPopUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
}

@keyframes paytmPopUp {
    0% { transform: scale(0.88) translateY(24px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Emerald Green Radiant Header */
.paytm-banner {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #047857 100%);
    padding: 22px 16px 18px 16px;
    text-align: center;
    color: #ffffff;
    position: relative;
    flex-shrink: 0;
}

.paytm-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.paytm-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.22);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 5;
}

.paytm-close-btn:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Animated Checkmark in Glowing Rings */
.paytm-check-wrapper {
    position: relative;
    width: 58px;
    height: 58px;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paytm-ripple-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    animation: paytmRipple 2s infinite ease-out;
}

.paytm-ripple-ring.delay-1 {
    animation-delay: 0.6s;
}

@keyframes paytmRipple {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.paytm-check-circle {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: paytmCheckPop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s both;
}

@keyframes paytmCheckPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.paytm-check-svg {
    width: 34px;
    height: 34px;
    stroke: #059669;
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.paytm-check-path {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: paytmCheckStroke 0.45s cubic-bezier(0.65, 0, 0.45, 1) 0.35s forwards;
}

@keyframes paytmCheckStroke {
    100% { stroke-dashoffset: 0; }
}

.paytm-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}

.paytm-title {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 3px 0;
    letter-spacing: -0.3px;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0,0,0,0.12);
}

.paytm-subtitle {
    font-size: 11.5px;
    opacity: 0.95;
    margin: 0 0 12px 0;
    font-weight: 600;
    line-height: 1.35;
}

.paytm-amount-display {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    background: #ffffff;
    padding: 6px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}

.paytm-currency {
    font-size: 17px;
    font-weight: 800;
    color: #047857;
    margin-right: 2px;
}

.paytm-amount {
    font-size: 23px;
    font-weight: 900;
    color: #047857;
    letter-spacing: -0.4px;
}

/* Receipt Body */
.paytm-body {
    padding: 14px 16px 16px 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-height: 0;
}

.paytm-order-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.paytm-order-id-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 800;
    color: #0f172a;
}

.paytm-order-id-chip .lbl {
    font-size: 9.5px;
    color: #64748b;
    font-weight: 700;
}

.btn-copy-sm {
    border: none;
    background: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    padding: 2px 4px;
    font-size: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.paytm-live-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.paytm-live-chip.status-pending {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #b45309;
}

.paytm-live-chip.status-pending .pulse-dot {
    background: #d97706;
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
    animation: dotPulsePending 1.5s infinite;
}

@keyframes dotPulsePending {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(217, 119, 6, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}

.paytm-details-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.paytm-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 12px;
    gap: 8px;
}

.paytm-lbl {
    color: #64748b;
    font-weight: 600;
    flex-shrink: 0;
}

.paytm-val {
    color: #0f172a;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.paytm-highlight-pay {
    color: #059669;
    font-weight: 800;
}

.paytm-delivery-row {
    border-top: 1px dashed #cbd5e1;
    padding-top: 6px;
    margin-top: 2px;
}

/* Items Preview Pill List */
.paytm-items-summary {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-height: 90px;
    overflow-y: auto;
    background: #f8fafc;
    border-radius: 10px;
    padding: 6px 8px;
    border: 1px solid #f1f5f9;
}

.paytm-item-line {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    color: #334155;
}

.paytm-item-line .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 8px;
}

.paytm-item-line .price {
    font-weight: 800;
    color: #0f172a;
    flex-shrink: 0;
}

/* Action Buttons */
.paytm-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-paytm-track {
    width: 100%;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
    transition: all 0.2s;
    letter-spacing: 0.2px;
}

.btn-paytm-track:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.45);
}

.paytm-secondary-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
}

.btn-paytm-shop {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #334155;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 11.5px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-paytm-shop:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

.btn-paytm-share {
    background: #ecfdf5;
    border: 1.5px solid #a7f3d0;
    color: #047857;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 11.5px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-paytm-share:hover {
    background: #d1fae5;
}

@media (max-width: 480px) {
    .paytm-success-overlay {
        padding: 8px;
    }
    .paytm-success-card {
        max-height: 94vh;
        border-radius: 18px;
    }
    .paytm-banner {
        padding: 18px 14px 16px 14px;
    }
    .paytm-check-wrapper {
        width: 52px;
        height: 52px;
        margin: 0 auto 8px auto;
    }
    .paytm-check-circle {
        width: 46px;
        height: 46px;
    }
    .paytm-check-svg {
        width: 30px;
        height: 30px;
    }
    .paytm-title {
        font-size: 17px;
    }
    .paytm-amount-display {
        padding: 5px 16px;
    }
    .paytm-amount {
        font-size: 21px;
    }
    .paytm-body {
        padding: 12px 14px 14px 14px;
        gap: 8px;
    }
}

/* =================================================== */
/* 🧀 PRODUCT CUSTOMIZER & TOPPINGS MODAL STYLES       */
/* =================================================== */

.customizer-card {
    max-width: 460px;
    width: 100%;
    max-height: 85vh;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: popIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.customizer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.customizer-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.customizer-sub {
    font-size: 12px;
    font-weight: 700;
    color: #059669;
    margin: 0;
}

.customizer-body {
    padding: 16px 18px;
    overflow-y: auto;
    flex: 1;
}

.customizer-section-title {
    font-size: 12px;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.customizer-addons-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.addon-choice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.addon-choice-row:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.addon-choice-row.is-selected {
    border-color: #10b981;
    background: #f0fdf4;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.12);
}

.addon-left-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.addon-custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    color: #ffffff;
    background: #ffffff;
    transition: all 0.15s;
    flex-shrink: 0;
}

.addon-choice-row.is-selected .addon-custom-checkbox {
    background: #10b981;
    border-color: #10b981;
}

.addon-name-txt {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
}

.addon-price-pill {
    font-size: 12px;
    font-weight: 800;
    color: #059669;
    background: #ecfdf5;
    padding: 3px 8px;
    border-radius: 8px;
    border: 1px solid #a7f3d0;
}

.customizer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.03);
}

.customizer-footer-price-box {
    display: flex;
    flex-direction: column;
}

.customizer-footer-price-box .lbl {
    font-size: 10.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.customizer-footer-price-box .val {
    font-size: 18px;
    font-weight: 900;
    color: #0f172a;
}

.btn-confirm-customizer {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    transition: all 0.2s;
}

.btn-confirm-customizer:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.btn-confirm-customizer:active {
    transform: scale(0.97);
}

.product-customise-badge {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    margin-top: 3px;
    display: block;
    text-align: center;
}

.badge-combo-pill {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2.5px 7px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.3);
    z-index: 2;
}

.combo-bundle-tags {
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
    line-height: 1.3;
}

/* ============================================================ */
/* 🗺️ INTERACTIVE MAP PICKER (SWIGGY STYLE) MODAL STYLES       */
/* ============================================================ */

.map-picker-sheet {
    background: #ffffff;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

@media (max-width: 768px) {
    .map-picker-sheet {
        max-width: 100%;
        max-height: 94vh;
        border-radius: 20px 20px 0 0;
        margin-top: auto;
    }
}

.map-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    z-index: 10;
}

.btn-close-map {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #64748b;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}
.btn-close-map:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.map-distance-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 16px;
    font-size: 12.5px;
    font-weight: 700;
    z-index: 10;
    transition: all 0.25s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.map-distance-banner.status-inside {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.map-distance-banner.status-outside {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.map-viewport-wrap {
    position: relative;
    width: 100%;
    height: 380px;
    min-height: 300px;
    background: #e2e8f0;
    overflow: hidden;
}

/* Floating Map Controls (Top-Right on Canvas) */
.map-floating-controls {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.btn-map-control {
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    user-select: none;
}

.btn-map-control:active {
    transform: scale(0.92);
}

.btn-map-type {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-map-type:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

.btn-map-gps {
    background: #ffffff;
    color: #0f172a;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 17px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-map-gps:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .map-picker-sheet {
        max-width: 100%;
        max-height: 94vh;
        border-radius: 22px 22px 0 0;
        margin-top: auto;
    }
    .map-viewport-wrap {
        height: min(55vh, 420px);
        min-height: 320px;
    }
    .map-distance-banner {
        font-size: 12px;
        padding: 9px 12px;
    }
    .map-floating-controls {
        top: 10px;
        right: 10px;
    }
}

.map-picker-container {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-picker-container .leaflet-tile {
    filter: contrast(1.05) saturate(1.08) brightness(1.02);
}

/* Center Pin (Fixed over the moving map) */
.map-center-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 500;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-pin-icon {
    font-size: 38px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
    animation: pinBounce 0.6s infinite alternate ease-in-out;
}

@keyframes pinBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

.map-pin-pulse {
    width: 14px;
    height: 6px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    margin-top: -6px;
}

.map-pin-label {
    background: #0f172a;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    margin-top: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    white-space: nowrap;
}

.map-picker-footer {
    padding: 14px 18px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 10;
}

.btn-confirm-map {
    flex: 1;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-confirm-map:disabled {
    background: #cbd5e1 !important;
    color: #64748b !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

.btn-confirm-map:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* ============================================================ */
/* 🌟 ULTRA-PREMIUM PWA LAUNCH SPLASH SCREEN                   */
/* ============================================================ */
.pwa-splash-screen {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: radial-gradient(circle at 50% 35%, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    user-select: none;
    touch-action: none;
}

.pwa-splash-screen.splash-hidden {
    opacity: 0;
    transform: scale(1.05);
    visibility: hidden;
    pointer-events: none;
}

.pwa-splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    animation: pwaSplashFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes pwaSplashFadeIn {
    0% { opacity: 0; transform: scale(0.92); }
    100% { opacity: 1; transform: scale(1); }
}

.pwa-splash-logo-wrap {
    position: relative;
    width: 104px;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pwa-splash-pulse-ring {
    position: absolute;
    inset: -12px;
    border-radius: 36px;
    background: radial-gradient(circle, rgba(252, 128, 25, 0.25) 0%, rgba(252, 128, 25, 0) 75%);
    animation: pwaPulseRing 2.2s infinite ease-out;
}

@keyframes pwaPulseRing {
    0% { transform: scale(0.85); opacity: 0.8; }
    50% { transform: scale(1.18); opacity: 0.35; }
    100% { transform: scale(1.35); opacity: 0; }
}

.pwa-splash-logo-card {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 26px;
    background: #ffffff;
    border: 2px solid rgba(241, 245, 249, 0.9);
    box-shadow: 0 16px 36px -8px rgba(15, 23, 42, 0.15), 0 6px 14px -3px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    transition: all 0.3s;
}

/* Style 1: 🌟 Circular Emblem Badge */
.splash-style-circular .pwa-splash-logo-card {
    border-radius: 50% !important;
    border: 3.5px solid #f59e0b;
    box-shadow: 0 16px 36px -6px rgba(245, 158, 11, 0.35), 0 6px 16px rgba(0,0,0,0.1);
}

.splash-style-circular .pwa-splash-pulse-ring {
    border-radius: 50% !important;
}

/* Style 2: 🍏 Apple iOS Squircle */
.splash-style-squircle .pwa-splash-logo-card {
    border-radius: 24px !important;
    border: 2px solid #e2e8f0;
}

/* Style 3: 🎉 Festive Offer Theme */
.splash-style-festive_offer .pwa-splash-badge {
    background: linear-gradient(135deg, #fef08a 0%, #fde047 100%) !important;
    color: #854d0e !important;
    border-color: #facc15 !important;
    font-weight: 800 !important;
    box-shadow: 0 2px 8px rgba(250, 204, 21, 0.4);
}

.splash-style-festive_offer .pwa-splash-tagline {
    color: #ea580c !important;
    font-weight: 800 !important;
}

.pwa-splash-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pwa-splash-emoji {
    font-size: 48px;
    line-height: 1;
}

.pwa-splash-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.pwa-splash-tagline {
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 22px 0;
    letter-spacing: 0.1px;
}

.pwa-splash-loader-bar {
    width: 130px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 99px;
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
}

.pwa-splash-loader-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
    background: linear-gradient(90deg, #fc8019, #f59e0b);
    border-radius: 99px;
    animation: pwaLoaderShimmer 1.2s infinite ease-in-out;
}

@keyframes pwaLoaderShimmer {
    0% { left: -45%; width: 35%; }
    50% { left: 35%; width: 55%; }
    100% { left: 100%; width: 35%; }
}

.pwa-splash-badge {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 5px 12px;
    border-radius: 99px;
    letter-spacing: 0.2px;
}



