/* ═══════════════════════════════════════════════════════════════════════════
   BHAGAT CAKE - Theobroma Style Menu
   Clean • Modern • Polished
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --font-primary: "Figtree", "Open Sans", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    --primary: #3BBFAD;
    --primary-dark: #2A9D8F;
    --primary-light: #5DD3C3;
    --header-bg: #1A3A34;
    --text-dark: #1A202C;
    --text-body: #4A5568;
    --text-muted: #718096;
    --text-light: #A0AEC0;
    --bg-white: #FFFFFF;
    --bg-gray: #F7FAFC;
    --bg-light: #FAFAFA;
    --border: #E2E8F0;
    --border-light: #EDF2F7;
    --success: #22C55E;
    --danger: #EF4444;
    --warning: #ECC94B;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: 0.2s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-primary);
    background: var(--bg-light);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.d-none { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER - Dark Teal Style
   ═══════════════════════════════════════════════════════════════════════════ */
.theo-header {
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.theo-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.theo-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theo-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #F5A5A5, #E8847C);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.theo-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F5A5A5;
    /* font-style: italic; */
    letter-spacing: -0.02em;
}

.theo-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theo-nav-link {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.theo-nav-link:hover {
    color: #fff;
}

.theo-nav-link.active {
    color: #fff;
}

.theo-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theo-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    transition: all var(--transition);
}

.theo-cart-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.theo-cart-btn .count {
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    min-width: 20px;
    text-align: center;
}

.theo-login-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.theo-login-link:hover {
    background: rgba(255,255,255,0.2);
}

.theo-login-link #header-cart-count {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    min-width: 18px;
    text-align: center;
}

.theo-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    padding: 0;
}

.theo-menu-toggle:hover {
    background: rgba(255,255,255,0.2);
}

.theo-menu-toggle:active {
    transform: scale(0.95);
}

.theo-menu-toggle span {
    display: block;
    width: 20px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.theo-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.theo-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.theo-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */
.theo-main {
    display: flex;
    min-height: calc(100vh - 56px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.theo-sidebar {
    width: 260px;
    background: var(--bg-white);
    border-right: 1px solid var(--border);
    position: sticky;
    top: 56px;
    height: calc(100vh - 56px);
    overflow-y: auto;
    flex-shrink: 0;
}

.theo-sidebar-header {
    padding: 24px 20px 16px;
}

.theo-sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.theo-sidebar-nav {
    padding: 0;
}

.theo-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-body);
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.theo-sidebar-link:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.theo-sidebar-link.active {
    background: transparent;
    border-left-color: transparent;
    color: var(--text-dark);
    font-weight: 500;
}

.theo-sidebar-link .theo-cat-name {
    display: flex;
    align-items: center;
    gap: 6px;
}

.theo-sidebar-link .theo-expand-icon {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.theo-sidebar-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTENT
   ═══════════════════════════════════════════════════════════════════════════ */
.theo-content {
    flex: 1;
    min-width: 0;
    background: var(--bg-white);
}

/* Store Bar */
.theo-store-bar {
    background: var(--bg-white);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ENHANCED STORE INFO BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.theo-store-bar-enhanced {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

/* Store Header Section */
.store-header-section {
    padding: 20px 28px 16px;
    border-bottom: 1px solid var(--border-light);
}

.store-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.store-name-enhanced {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.info-icon-btn {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.info-icon-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
}

.store-status-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.store-status-badge.open {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
}

.store-status-badge.closed {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.store-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-item-enhanced {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-body);
    font-size: 0.9rem;
}

.meta-item-enhanced svg {
    opacity: 0.7;
}

.meta-divider {
    width: 1px;
    height: 14px;
    background: var(--border);
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-value {
    font-weight: 600;
    color: var(--text-dark);
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Offers and Delivery Inline Container (Desktop) */
.offers-delivery-container {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* Offers Highlight Section */
.offers-highlight-section {
    flex: 1;
    padding: 10px 28px;
    background: linear-gradient(135deg, rgba(59, 191, 173, 0.03) 0%, rgba(59, 191, 173, 0.01) 100%);
    border-bottom: 1px solid var(--border-light);
}

.offer-highlight-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--bg-white);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 4px rgba(59, 191, 173, 0.08);
}

.offer-icon-badge {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.offer-icon-badge svg {
    width: 16px;
    height: 16px;
}

.offer-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.offer-main-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
}

.offer-main-text strong {
    font-weight: 700;
    color: var(--primary);
}

.offer-label-badge {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(255, 193, 7, 0.15);
    color: #F59E0B;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 4px;
}

.offers-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: transparent;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.offers-dropdown-btn:hover {
    background: var(--primary);
    color: white;
}

.dropdown-arrow {
    transition: transform var(--transition);
}

.offers-dropdown-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Offers Dropdown Content */
.offers-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 12px;
}

.offers-dropdown-content.active {
    max-height: 600px;
}

.offers-dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.offer-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.offer-item-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.offer-item-content {
    flex: 1;
}

.offer-item-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.offer-item-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.4;
}

.offer-item-code {
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.offer-item-code strong {
    color: var(--primary);
    background: rgba(59, 191, 173, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

.offer-apply-btn-small {
    padding: 6px 14px;
    background: transparent;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.offer-apply-btn-small:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

/* Delivery Type Section */
.delivery-type-section {
    flex: 0 0 auto;
    min-width: 280px;
    padding: 10px 28px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.delivery-type-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1px 12px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.delivery-type-icon {
    width: 32px;
    height: 32px;
    background: var(--bg-white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.delivery-type-icon svg {
    width: 18px;
    height: 18px;
}

.delivery-type-info {
    flex: 1;
}

.delivery-type-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.delivery-change-btn {
    padding: 6px 16px;
    background: transparent;
    border: 1.5px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
}

.delivery-change-btn:hover {
    background: var(--primary);
    color: white;
}

/* Legacy compatibility */
.theo-store-bar {
    display: none;
}


.theo-store-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theo-store-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.theo-store-name .info-icon {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--text-muted);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-style: normal;
}

.theo-store-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #DCFCE7;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theo-store-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.theo-store-meta .theo-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.theo-store-offer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-gray);
    border-radius: var(--radius-sm);
    margin-left: auto;
}

.theo-offer-badge {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
}

.theo-offer-text {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.theo-offer-text strong {
    color: var(--text-dark);
}

.theo-offers-link {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-left: 8px;
}

.theo-delivery-toggle {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
}

.theo-delivery-toggle .toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.theo-delivery-toggle .toggle-change {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: underline;
    cursor: pointer;
}

/* Filters Bar */
.theo-filters-bar {
    background: var(--bg-white);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.theo-filters-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theo-filter-btn {
    display: none; /* Hide on desktop, show only on mobile */
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition);
    cursor: pointer;
}

.theo-filter-btn:hover {
    border-color: var(--text-light);
}

.theo-clear-filter-btn {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.theo-clear-filter-btn:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.theo-clear-filter-btn.visible {
    display: flex;
}

.theo-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition);
}

.theo-filter-chip:hover {
    border-color: var(--text-light);
}

.theo-filter-chip.active {
    border-color: var(--primary);
    background: rgba(59, 191, 173, 0.05);
}

.theo-chip-indicator {
    width: 14px;
    height: 14px;
    border: 2px solid;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.theo-chip-indicator.veg {
    border-color: var(--success);
    border-radius: 2px;
}

.theo-chip-indicator.veg::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
}

.theo-chip-indicator.non-veg {
    border-color: var(--danger);
    border-radius: 2px;
}

.theo-chip-indicator.non-veg::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 7px solid var(--danger);
}

.theo-chip-icon {
    font-size: 1rem;
}

.theo-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    min-width: 200px;
    transition: all var(--transition);
}

.theo-search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 191, 173, 0.1);
}

.theo-search-icon { font-size: 0.9rem; opacity: 0.5; }

.theo-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    outline: none;
    color: var(--text-dark);
    font-family: var(--font-primary);
}

.theo-search-box input::placeholder { color: var(--text-light); }

/* ═══════════════════════════════════════════════════════════════════════════
   BESTSELLERS CAROUSEL - Vertical Card Style
   ═══════════════════════════════════════════════════════════════════════════ */
.theo-bestsellers {
    padding: 28px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.theo-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.theo-carousel-wrapper {
    position: relative;
}

.theo-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px;
    scrollbar-width: none;
}

.theo-carousel::-webkit-scrollbar { display: none; }

.theo-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--text-body);
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.theo-carousel-btn:hover {
    background: var(--bg-gray);
    box-shadow: var(--shadow-lg);
}

.theo-carousel-btn.prev { left: -20px; }
.theo-carousel-btn.next { right: -20px; }

.theo-bestseller-card {
    flex-shrink: 0;
    width: 220px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.theo-bestseller-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 191, 173, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    pointer-events: none;
}

.theo-bestseller-card:hover::before {
    opacity: 1;
}

.theo-bestseller-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(59, 191, 173, 0.15);
    transform: translateY(-6px);
    border-color: var(--primary-light);
}

.theo-bestseller-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.theo-bestseller-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.theo-img-code {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, rgba(26, 58, 52, 0.9), rgba(42, 157, 143, 0.85));
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    z-index: 2;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Quick add overlay on hover */
.theo-bestseller-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.theo-bestseller-card:hover .theo-bestseller-img::after {
    opacity: 1;
}

.theo-bestseller-card:hover .theo-bestseller-img img { transform: scale(1.1); }

.theo-bestseller-body { 
    padding: 16px 18px;
    position: relative;
    z-index: 1;
}

.theo-bestseller-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.theo-veg-indicator {
    width: 18px;
    height: 18px;
    border: 2px solid var(--success);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(34, 197, 94, 0.08);
}

.theo-veg-indicator::after {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
}

.theo-bestseller-tag {
    padding: 4px 10px;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #92400E;
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 3px rgba(146, 64, 14, 0.15);
}

.theo-bestseller-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.theo-bestseller-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.theo-bestseller-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.theo-bestseller-price::before {
    content: '₹';
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
}

.theo-bestseller-price span {
    font-family: 'Figtree', sans-serif;
}

.theo-add-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(59, 191, 173, 0.3);
}

.theo-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 191, 173, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.theo-add-btn:active {
    transform: translateY(0);
}

.theo-add-btn.added {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MENU PRODUCTS - Combo Style Cards
   ═══════════════════════════════════════════════════════════════════════════ */
.theo-menu-content {
    padding: 0 28px 40px;
}

/* Empty menu state */
.theo-empty-menu {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.theo-empty-menu .theo-empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.theo-empty-menu h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.theo-empty-menu p {
    font-size: 0.95rem;
}

.theo-category-block {
    padding-top: 28px;
}

.theo-category-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.theo-category-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: var(--primary);
    border-radius: 2px;
}

.theo-category-count {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: normal;
    text-transform: none;
}

/* Category Grid - Responsive multi-row grid */
.theo-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.theo-category-grid .theo-bestseller-card {
    flex: none;
    min-width: auto;
    width: 100%;
    flex-shrink: unset;
}

.theo-bestseller-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
    min-height: 2.3em;
}

.theo-customisable-tag {
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(59,191,173,0.18), rgba(42,157,143,0.12));
    color: var(--primary-dark);
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1px solid rgba(59,191,173,0.25);
}

.theo-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.theo-product-card {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.theo-product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.theo-product-info {
    flex: 1;
    min-width: 0;
}

.theo-product-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.theo-product-badge {
    width: 16px;
    height: 16px;
    border: 2px solid;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.theo-product-code {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(59,191,173,0.12), rgba(42,157,143,0.08));
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.theo-product-badge.veg {
    border-color: var(--success);
}

.theo-product-badge.veg::after {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
}

.theo-product-badge.non-veg {
    border-color: var(--danger);
}

.theo-product-badge.non-veg::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 7px solid var(--danger);
}

.theo-product-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.35;
}

.theo-product-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.theo-product-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.theo-customisable {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

.theo-product-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.theo-product-img-wrap {
    position: relative;
    width: 130px;
    height: 110px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-gray);
}

.theo-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.theo-product-card:hover .theo-product-img-wrap img { transform: scale(1.08); }

.theo-product-tag {
    position: absolute;
    bottom: 6px;
    left: 6px;
    padding: 3px 10px;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #92400E;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 4px;
}

.theo-product-add-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theo-product-add-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 191, 173, 0.3);
}

.theo-product-add-btn:active {
    transform: translateY(0);
}

.theo-plus { 
    margin-left: 2px;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════════════ */
.theo-contact {
    background: var(--bg-white);
    padding: 48px 24px;
    border-top: 1px solid var(--border);
}

.theo-contact-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.theo-contact-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.theo-contact-content > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.theo-contact-cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.theo-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.theo-contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.theo-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.theo-contact-info { text-align: left; }

.theo-contact-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.theo-contact-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.theo-footer {
    background: var(--text-dark);
    color: var(--bg-gray);
    padding: 40px 24px 20px;
}

.theo-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.theo-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.theo-footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.theo-footer-brand p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.theo-footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.theo-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.theo-footer-link {
    font-size: 0.85rem;
    color: var(--text-light);
    transition: color var(--transition);
}

.theo-footer-link:hover { color: var(--primary); }

.theo-footer-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.theo-hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

.theo-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.theo-footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.theo-footer-bottom a { 
    color: var(--primary);
    font-weight: 500;
    transition: color var(--transition);
}

.theo-footer-bottom a:hover { color: var(--primary-dark); }

/* ═══════════════════════════════════════════════════════════════════════════
   FLOATING CART
   ═══════════════════════════════════════════════════════════════════════════ */
.floating-cart {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(59, 191, 173, 0.35);
    z-index: 90;
    transition: all 0.25s ease;
    font-weight: 600;
}

.floating-cart:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 191, 173, 0.45);
}

.floating-cart:active {
    transform: translateY(-2px);
}

.floating-cart-icon { 
    font-size: 1.5rem;
    position: relative;
}

.floating-cart-text { 
    display: none;
}

.floating-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF4757;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    min-width: 20px;
    text-align: center;
    border: 2px solid white;
}

/* Scroll Top */
.theo-scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 89;
    box-shadow: var(--shadow-md);
}

.theo-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.theo-scroll-top:hover {
    background: var(--text-dark);
    color: white;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════════════════════════════ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal-backdrop.active { opacity: 1; visibility: visible; }

.modal-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 500;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 24px rgba(0,0,0,0.1);
}

.modal-panel.active { right: 0; }

.modal-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-gray);
}

.modal-title { display: flex; align-items: center; gap: 10px; }
.modal-title span { font-size: 1.2rem; }
.modal-title h3 { font-size: 1rem; font-weight: 600; color: var(--text-dark); }
.modal-title small { font-size: 0.75rem; color: var(--text-muted); display: block; }

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.modal-close:hover { background: var(--border-light); color: var(--text-dark); }

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Mobile Filter Modal Styles */
.mobile-filter-panel { max-width: 90%; }

/* Delivery Type Modal Styles */
.delivery-type-modal { max-width: 500px; }

.delivery-type-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-type-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    width: 100%;
    text-align: left;
}

.delivery-type-option:hover {
    border-color: var(--primary-light);
    background: var(--bg-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.delivery-type-option.active {
    border-color: var(--primary);
    background: rgba(59, 191, 173, 0.05);
}

.delivery-type-icon {
    font-size: 2rem;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.delivery-type-option.active .delivery-type-icon {
    background: var(--primary-light);
}

.delivery-type-info {
    flex: 1;
}

.delivery-type-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.delivery-type-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.delivery-type-time {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.delivery-type-check {
    font-size: 1.5rem;
    color: transparent;
    font-weight: bold;
    transition: all var(--transition);
}

.delivery-type-option.active .delivery-type-check {
    color: var(--primary);
}

/* Offers Modal Styles */
.offers-modal { max-width: 600px; }

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(59, 191, 173, 0.05) 0%, rgba(59, 191, 173, 0.02) 100%);
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.offer-card:hover {
    border-style: solid;
    background: linear-gradient(135deg, rgba(59, 191, 173, 0.1) 0%, rgba(59, 191, 173, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.offer-badge {
    min-width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-badge-icon {
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.offer-content {
    flex: 1;
}

.offer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.offer-description {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 10px;
    line-height: 1.5;
}

.offer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

.offer-code {
    color: var(--text-muted);
}

.offer-code strong {
    color: var(--primary);
    background: rgba(59, 191, 173, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.offer-validity {
    color: var(--text-muted);
}

.offer-apply-btn {
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.offer-apply-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.offers-empty {
    text-align: center;
    padding: 60px 20px;
}

.offers-empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.offers-empty h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.offers-empty p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.filter-search-box {
    position: relative;
    margin-bottom: 20px;
}

.filter-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
}

.filter-search-box input {
    width: 100%;
    padding: 12px 12px 12px 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-primary);
    transition: all var(--transition);
}

.filter-search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91, 181, 166, 0.1);
}

.filter-chips-section,
.filter-categories-section {
    margin-bottom: 24px;
}

.filter-chips-section h4,
.filter-categories-section h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.filter-type-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-filter-chip {
    padding: 8px 14px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    white-space: nowrap;
}

.mobile-filter-chip:hover {
    background: var(--border-light);
}

.mobile-filter-chip.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.mobile-filter-chip .chip-indicator {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    border: 1px solid currentColor;
}

.mobile-filter-chip .chip-indicator.veg {
    background: #22C55E;
    border-color: #22C55E;
}

.mobile-filter-chip .chip-indicator.non-veg {
    background: #EF4444;
    border-color: #EF4444;
}

.mobile-filter-chip .chip-icon {
    font-size: 1rem;
}

.filter-category-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-category-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-body);
    transition: all var(--transition);
    text-align: left;
}

.filter-category-item:hover {
    background: var(--border-light);
    border-color: var(--primary-light);
}

.filter-category-item.active {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary);
    font-weight: 600;
}

.filter-category-item .category-name {
    flex: 1;
}

.filter-category-item .category-count {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.filter-category-item.active .category-count {
    color: var(--primary-dark);
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* Cart Styles */
.cart-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cart-items { display: flex; flex-direction: column; gap: 10px; }

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.cart-item-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.cart-item-price { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }

.cart-empty { text-align: center; padding: 40px 20px; }
.cart-empty-icon { font-size: 2.5rem; margin-bottom: 12px; opacity: 0.3; }
.cart-empty h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.cart-empty p { font-size: 0.85rem; color: var(--text-muted); }

/* Delivery Charge Notice */
.delivery-charge-notice {
    margin: 12px 0 0;
    padding: 12px 14px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3CD 100%);
    border: 1px solid #FFE082;
    border-radius: var(--radius-md);
    animation: fadeSlideIn 0.3s ease;
}
.delivery-notice-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.delivery-notice-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.delivery-notice-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.delivery-notice-text strong {
    font-size: 0.85rem;
    color: #B7791F;
    font-weight: 600;
}
.delivery-notice-text small {
    font-size: 0.78rem;
    color: #975A16;
    line-height: 1.4;
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    margin-top: 12px;
}

.cart-total-label { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.cart-total-value { font-size: 1.25rem; font-weight: 700; color: var(--primary-dark); }

/* Cart Delivery Selector */
.cart-delivery-selector {
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cart-section-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
    display: block;
    margin-bottom: 10px;
}

.cart-delivery-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.cart-delivery-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 8px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-body);
    transition: all var(--transition);
    cursor: pointer;
}

.cart-delivery-option:hover {
    border-color: var(--primary);
    background: rgba(59, 191, 173, 0.03);
}

.cart-delivery-option.active {
    border-color: var(--primary);
    background: rgba(59, 191, 173, 0.08);
    color: var(--primary-dark);
}

.delivery-opt-icon {
    font-size: 1.2rem;
}

.delivery-opt-text {
    font-weight: 600;
    font-size: 0.75rem;
}

/* Promo Code Section */
.cart-promo-section {
    margin: 16px 0;
}

.promo-input-wrapper {
    display: flex;
    gap: 8px;
}

.promo-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 600;
    transition: all var(--transition);
}

.promo-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 191, 173, 0.1);
}

.promo-apply-btn {
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.promo-apply-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.applied-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
    border: 1.5px solid #22C55E;
    border-radius: var(--radius-sm);
}

.applied-promo-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #22C55E;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

.promo-code-text {
    font-weight: 700;
    font-size: 0.85rem;
    color: #15803D;
    text-transform: uppercase;
}

.promo-discount {
    font-weight: 700;
    font-size: 0.85rem;
    color: #22C55E;
}

.promo-remove-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all var(--transition);
}

.promo-remove-btn:hover {
    background: #EF4444;
    color: white;
}

.qty-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.qty-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-body);
    transition: all var(--transition);
}

.qty-btn:hover { background: var(--bg-gray); color: var(--text-dark); }
.qty-val { width: 28px; text-align: center; font-size: 0.85rem; font-weight: 600; }

/* Checkout Form */
.checkout-section { margin-top: 20px; }
.checkout-form { display: flex; flex-direction: column; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-body); }
.form-group .req { color: var(--danger); }

.form-input {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-primary);
    transition: all var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91, 181, 166, 0.1);
}

.form-actions { display: flex; gap: 10px; margin-top: 8px; }

.btn-primary {
    flex: 1;
    padding: 12px 20px;
    background: var(--text-dark);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.btn-primary:hover { background: #2D3748; }

.btn-outline {
    flex: 1;
    padding: 12px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-body);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.btn-outline:hover { border-color: var(--text-light); background: var(--bg-gray); }

.form-msg {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.form-msg.error { background: #FED7D7; color: #C53030; display: block; }
.form-msg.success { background: #C6F6D5; color: #276749; display: block; }

/* Track Order */
.track-search { margin-bottom: 16px; }

.track-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-gray);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.track-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    outline: none;
    font-family: var(--font-primary);
}

.track-search-btn {
    padding: 8px 16px;
    background: var(--text-dark);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.track-search-btn:hover { background: #2D3748; }

.track-hint { font-size: 0.7rem; color: var(--text-light); margin-top: 6px; text-align: center; }

.track-customer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
}

.track-avatar {
    width: 36px;
    height: 36px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.track-customer-info { flex: 1; }
.track-customer-name { font-weight: 600; font-size: 0.9rem; }
.track-customer-stats { font-size: 0.7rem; color: var(--text-muted); }

.track-badge {
    padding: 3px 10px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.track-orders-section { margin-bottom: 14px; }

.track-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.track-section-header span { font-size: 0.8rem; font-weight: 600; }

.track-section-header .count {
    background: var(--bg-gray);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
}

.order-card {
    padding: 12px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    border-left: 3px solid var(--border);
}

.order-card.active { border-left-color: var(--success); background: rgba(72, 187, 120, 0.05); }

.order-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.order-id { font-weight: 600; font-size: 0.85rem; }
.order-date { font-size: 0.7rem; color: var(--text-muted); }

.order-status {
    padding: 3px 8px;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.order-status.pending { background: #FEFCBF; color: #975A16; }
.order-status.confirmed { background: #BEE3F8; color: #2C5282; }
.order-status.preparing { background: #E9D8FD; color: #6B46C1; }
.order-status.out-for-delivery { background: #C6F6D5; color: #276749; }
.order-status.delivered { background: #C6F6D5; color: #276749; }
.order-status.cancelled { background: #FED7D7; color: #C53030; }

.track-empty, .track-error { text-align: center; padding: 32px 16px; }
.track-empty-icon, .track-error-icon { font-size: 2rem; margin-bottom: 10px; }
.track-empty h4, .track-error h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.track-empty p, .track-error p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.btn-sm.primary { background: var(--text-dark); color: white; }
.btn-sm.outline { background: var(--bg-white); border: 1px solid var(--border); color: var(--text-dark); }

/* Mobile Menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active { 
    opacity: 1; 
    visibility: visible; 
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-white);
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active { 
    right: 0; 
}

.mobile-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-header .logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.mobile-header .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F5A5A5, #E8847C);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mobile-header .logo-text h1 { 
    font-size: 1.15rem; 
    font-weight: 700; 
    color: var(--text-dark);
    margin: 0;
}

.mobile-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border-radius: var(--radius-full);
    background: var(--bg-gray);
    color: var(--text-body);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.mobile-close:hover,
.mobile-close:active { 
    background: var(--border);
    color: var(--text-dark);
}

.mobile-nav { 
    flex: 1; 
    padding: 16px 20px; 
    display: flex; 
    flex-direction: column; 
    gap: 6px;
    overflow-y: auto;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-decoration: none;
}

.mobile-link:hover, 
.mobile-link.active { 
    background: var(--bg-gray); 
    color: var(--text-dark); 
}

.mobile-link:active {
    transform: scale(0.98);
}

.mobile-footer { 
    padding: 20px; 
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    background: var(--bg-white);
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.mobile-cta:hover,
.mobile-cta:active { 
    background: var(--primary-dark); 
    transform: scale(0.98);
}

/* Mobile link icon spacing */
.mobile-link span:first-child {
    font-size: 1.15rem;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}

/* Mobile cart badge inside menu */
.mobile-cart-badge {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    min-width: 20px;
    text-align: center;
    margin-left: auto;
    display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT DETAIL MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.product-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    z-index: 10;
    transition: all var(--transition);
}

.product-modal-close:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.product-modal-content {
    display: flex;
    max-height: 90vh;
}

.product-modal-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    background: var(--bg-gray);
}

.product-modal-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-info {
    padding: 20px 24px;
    flex: 1;
    background: var(--bg-white);
}

.product-modal-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.product-modal-veg-badge {
    width: 18px;
    height: 18px;
    border: 2px solid var(--success);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.product-modal-veg-badge::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
}

.product-modal-veg-badge.non-veg {
    border-color: var(--danger);
}

.product-modal-veg-badge.non-veg::after {
    background: var(--danger);
    border-radius: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.product-modal-name {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-modal-share {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition);
}

.product-modal-share:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.product-modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.product-modal-customisable {
    font-size: 0.8rem;
    color: var(--text-light);
}

.product-modal-footer {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: var(--primary);
    gap: 16px;
}

.product-modal-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
}

.product-modal-add-btn {
    flex: 1;
    padding: 14px 24px;
    background: white;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.product-modal-add-btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-1px);
}

/* Right Side - Addons */
.product-modal-right {
    flex: 0 0 50%;
    overflow-y: auto;
    max-height: 90vh;
    background: var(--bg-white);
    border-left: 1px solid var(--border-light);
}

.product-addon-section {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.product-addon-section:last-child {
    border-bottom: none;
}

.addon-section-header {
    margin-bottom: 16px;
}

.addon-section-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.addon-section-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.addon-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.addon-option {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.addon-option:hover {
    border-color: var(--primary);
    background: rgba(59, 191, 173, 0.03);
}

.addon-option.selected {
    border-color: var(--primary);
    background: rgba(59, 191, 173, 0.08);
}

.addon-option-veg {
    width: 16px;
    height: 16px;
    border: 2px solid var(--success);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
}

.addon-option-veg::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
}

.addon-option-name {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.addon-option-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 12px;
}

.addon-option-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.addon-option.selected .addon-option-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.addon-option.selected .addon-option-checkbox::after {
    content: '✓';
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Product Code Badge */
.product-modal-code {
    display: none;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(59,191,173,0.12), rgba(42,157,143,0.08));
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: 10px;
    letter-spacing: 0.02em;
}

/* Loading Spinner in Modal */
.product-modal-loading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--radius-lg);
}

.product-modal-loading .spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Variant Options */
.variant-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.variant-option {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.variant-option:hover {
    border-color: var(--primary-light);
    background: rgba(59, 191, 173, 0.03);
}

.variant-option.selected {
    border-color: var(--primary);
    background: rgba(59, 191, 173, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 191, 173, 0.15);
}

.variant-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 14px;
    transition: all var(--transition);
}

.variant-radio.checked {
    border-color: var(--primary);
    background: var(--primary);
}

.variant-radio.checked::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.variant-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.variant-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.variant-stock {
    font-size: 0.75rem;
    font-weight: 500;
}

.variant-stock.out {
    color: var(--danger);
}

.variant-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Loading message for variants */
.loading-variants,
.no-variants-message {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Flavor Options */
.flavor-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flavor-option {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.flavor-option:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.03);
}

.flavor-option.selected {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.flavor-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 14px;
    transition: all var(--transition);
}

.flavor-radio.checked {
    border-color: #f59e0b;
    background: #f59e0b;
}

.flavor-radio.checked::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.flavor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.flavor-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.flavor-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d97706;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Large Tablets */
@media (max-width: 1200px) {
    .theo-products-grid { grid-template-columns: 1fr; }
    .theo-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .product-modal { max-width: 95%; }
}

/* Tablets */
@media (max-width: 1024px) {
    .theo-sidebar { display: none; }
    .theo-main { display: block; }
    .theo-content { max-width: 100%; }
    .theo-store-bar { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 12px;
        padding: 16px 20px;
    }
    .theo-delivery-toggle { margin-left: 0; }
    .theo-store-offer { flex-wrap: wrap; }
    
    /* Product Modal - Full screen on tablet/mobile */
    .product-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(100%);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        max-width: 100%;
        width: 100%;
        max-height: 100vh;
        max-height: 100dvh;
    }
    .product-modal.active {
        transform: translateY(0);
    }
    .product-modal-content { 
        flex-direction: column; 
        height: 100%;
        overflow-y: auto;
    }
    .product-modal-left, .product-modal-right { 
        flex: none; 
        width: 100%; 
    }
    .product-modal-left {
        position: sticky;
        top: 0;
        z-index: 5;
        background: var(--bg-white);
    }
    .product-modal-right {
        flex: 1;
        max-height: none;
        padding-bottom: 80px;
    }
    .product-modal-image { 
        height: 220px; 
        border-radius: 0;
    }
    .product-modal-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.95);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    .product-modal-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 16px 20px;
        background: var(--primary);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        z-index: 10;
    }
}

/* Mobile Landscape / Small Tablets */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Enhanced Store Bar Mobile */
    .store-header-section {
        padding: 16px;
    }
    
    .store-name-enhanced {
        font-size: 1.4rem;
    }
    
    .store-meta-row {
        gap: 8px;
        font-size: 0.85rem;
    }
    
    .meta-item-enhanced {
        font-size: 0.85rem;
    }
    
    .rating-count {
        display: none;
    }
    
    /* Stack offers and delivery vertically on mobile */
    .offers-delivery-container {
        flex-direction: column;
        gap: 0;
    }
    
    .offers-highlight-section {
        padding: 8px 16px;
        flex: none;
        width: 100%;
    }
    
    .offer-highlight-card {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
    }
    
    .offer-icon-badge {
        width: 28px;
        height: 28px;
    }
    
    .offer-icon-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .offer-content {
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 6px;
    }
    
    .offer-main-text {
        font-size: 0.85rem;
        flex: 1;
    }
    
    .offer-label-badge {
        display: none;
    }
    
    .offers-dropdown-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .delivery-type-section {
        padding: 8px 16px;
        min-width: auto;
        flex: none;
        width: 100%;
    }
    
    .delivery-type-card {
        padding: 1px 10px;
        gap: 8px;
    }
    
    .delivery-type-icon {
        width: 28px;
        height: 28px;
    }
    
    .delivery-type-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .delivery-type-label {
        font-size: 0.85rem;
    }
    
    .delivery-change-btn {
        padding: 5px 12px;
        font-size: 0.8
    }
    
    .delivery-change-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
    
    /* Header - CRITICAL for mobile */
    .theo-nav { 
        display: none !important; 
    }
    .theo-menu-toggle { 
        display: flex !important;
        width: 44px;
        height: 44px;
    }
    .theo-header-inner { 
        padding: 0 12px; 
        height: 56px;
        gap: 8px;
    }
    .theo-logo { 
        flex: 1;
        min-width: 0;
    }
    .theo-logo-icon { 
        width: 36px; 
        height: 36px; 
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .theo-logo-text { 
        font-size: 1.15rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .theo-header-actions {
        gap: 8px;
        flex-shrink: 0;
    }
    .theo-login-link { 
        font-size: 0.8rem;
        padding: 8px 12px;
        gap: 4px;
    }
    .theo-login-link #header-cart-count {
        font-size: 0.65rem;
        padding: 2px 6px;
        min-width: 16px;
    }
    
    /* Mobile Menu Enhancements */
    .mobile-overlay {
        display: block;
    }
    .mobile-menu {
        width: 85%;
        max-width: 320px;
    }
    .mobile-header .logo-icon {
        width: 38px;
        height: 38px;
    }
    .mobile-header .logo-text h1 {
        font-size: 1.1rem;
    }
    .mobile-nav {
        padding: 16px;
    }
    .mobile-link {
        padding: 14px 16px;
        font-size: 1rem;
    }
    .mobile-footer {
        padding: 16px;
    }
    .mobile-cta {
        padding: 14px;
        font-size: 0.95rem;
    }
    
    /* Store Bar */
    .theo-store-bar { 
        padding: 14px 16px;
        gap: 10px;
    }
    .theo-store-name { font-size: 1.3rem; }
    .theo-store-status { 
        font-size: 0.65rem;
        padding: 4px 8px;
    }
    .theo-store-meta { 
        gap: 12px; 
        flex-wrap: wrap;
    }
    .theo-store-offer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
        border-radius: var(--radius-md);
        background: rgba(59, 191, 173, 0.05);
        width: 100%;
    }
    .theo-offers-link { margin-left: 0; }
    .theo-delivery-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 10px 14px;
    }
    
    /* Filters */
    .theo-filters-bar { 
        padding: 12px 16px; 
        flex-direction: column; 
        gap: 12px; 
    }
    .theo-filters-left { 
        width: 100%; 
        overflow-x: auto; 
        flex-wrap: nowrap; 
        padding-bottom: 4px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .theo-filters-left::-webkit-scrollbar { display: none; }
    .theo-filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
        background: var(--primary);
        color: white;
        border-radius: var(--radius-md);
        font-weight: 600;
        display: flex !important;
        align-items: center;
        gap: 6px;
    }
    .theo-filter-btn:hover {
        background: var(--primary-dark);
    }
    .theo-filter-chip {
        padding: 8px 14px;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .theo-filters-right { width: 100%; }
    .theo-search-box { 
        width: 100%; 
        min-width: auto;
        padding: 10px 14px;
    }
    
    /* Mobile Filter Modal */
    .mobile-filter-panel { 
        max-width: 100%; 
        width: 100%;
    }
    
    .theo-clear-filter-btn {
        font-size: 0.8rem;
        padding: 10px 14px;
    }
    .filter-search-box input {
        font-size: 0.95rem;
        padding: 14px 14px 14px 40px;
    }
    .filter-type-chips {
        gap: 8px;
    }
    .mobile-filter-chip {
        font-size: 0.8rem;
        padding: 10px 14px;
    }
    .filter-category-item {
        padding: 14px;
        font-size: 0.9rem;
    }
    .filter-actions button {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    /* Bestsellers */
    .theo-bestsellers { 
        padding: 20px 16px; 
    }
    .theo-section-title { 
        font-size: 0.9rem;
        margin-bottom: 14px;
    }
    .theo-carousel-wrapper { margin: 0 -16px; padding: 0 16px; }
    .theo-carousel { 
        gap: 14px;
        scroll-padding-left: 16px;
    }
    .theo-carousel-btn { display: none; }
    .theo-bestseller-card { 
        width: 170px;
        min-width: 170px;
    }
    .theo-bestseller-card::before { display: none; }
    .theo-bestseller-img { height: 140px; }
    .theo-bestseller-img::after { display: none; }
    .theo-bestseller-body { padding: 14px; }
    .theo-bestseller-name { 
        font-size: 0.88rem;
        min-height: auto;
    }
    .theo-bestseller-price { font-size: 1rem; }
    .theo-add-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    
    /* Menu Content */
    .theo-menu-content { padding: 0 16px 100px; }
    .theo-category-title { 
        font-size: 1rem;
        padding-bottom: 10px;
        margin-bottom: 14px;
    }
    
    /* Category Grid for mobile - 2 columns */
    .theo-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .theo-category-grid .theo-bestseller-card {
        width: 100%;
    }
    .theo-category-grid .theo-bestseller-card::before { display: none; }
    .theo-category-grid .theo-bestseller-img {
        height: 130px;
    }
    .theo-category-grid .theo-bestseller-img::after { display: none; }
    .theo-category-grid .theo-bestseller-body {
        padding: 12px;
    }
    .theo-category-grid .theo-bestseller-meta {
        margin-bottom: 6px;
    }
    .theo-category-grid .theo-bestseller-name {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        min-height: auto;
    }
    .theo-category-grid .theo-bestseller-desc {
        display: none;
    }
    .theo-category-grid .theo-bestseller-footer {
        margin-top: 10px;
        padding-top: 10px;
    }
    .theo-category-grid .theo-add-btn {
        padding: 8px 12px;
        font-size: 0.72rem;
    }
    
    .theo-product-card {
        padding: 14px;
        gap: 14px;
    }
    .theo-product-info { flex: 1; }
    .theo-product-name { 
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    .theo-product-price { 
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    .theo-product-desc { 
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .theo-product-visual { 
        flex-direction: column; 
        align-items: flex-end;
    }
    .theo-product-img-wrap { 
        width: 100px; 
        height: 80px;
        border-radius: var(--radius-sm);
    }
    .theo-product-add-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-top: 8px;
    }
    
    /* Contact */
    .theo-contact { padding: 32px 16px; }
    .theo-contact-content h2 { font-size: 1.5rem; }
    .theo-contact-cards { 
        flex-direction: column;
        gap: 12px;
    }
    .theo-contact-card {
        padding: 14px 16px;
    }
    
    /* Footer */
    .theo-footer { padding: 32px 16px 24px; }
    .theo-footer-grid { 
        grid-template-columns: 1fr; 
        gap: 24px;
        text-align: center;
    }
    .theo-footer-brand { text-align: center; }
    .theo-footer-col h4 { margin-bottom: 12px; }
    .theo-footer-links { align-items: center; }
    .theo-footer-hours { align-items: center; }
    .theo-footer-bottom { 
        flex-direction: column; 
        text-align: center;
        gap: 8px;
        padding-top: 20px;
    }
    
    /* Floating Elements */
    .floating-cart { 
        bottom: 20px; 
        left: 16px;
        width: 56px;
        height: 56px;
    }
    .theo-scroll-top { 
        bottom: 90px; 
        right: 16px; 
        width: 44px; 
        height: 44px;
    }
    
    /* Modals */
    .modal-panel { 
        max-width: 100%;
        width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    /* Product Detail Modal */
    .product-modal { 
        width: 100%; 
        max-width: 100%; 
        height: 100vh; 
        max-height: 100vh; 
        border-radius: 0;
        top: 0;
        left: 0;
        transform: translateY(100%);
    }
    .product-modal.active {
        transform: translateY(0);
    }
    .product-modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.95);
        box-shadow: var(--shadow-sm);
    }
    .product-modal-content { 
        flex-direction: column; 
        height: 100%;
        overflow-y: auto;
    }
    .product-modal-left { 
        flex: none;
        position: relative;
    }
    .product-modal-image { height: 240px; }
    .product-modal-info { 
        padding: 16px 20px;
    }
    .product-modal-name { font-size: 1.15rem; }
    .product-modal-footer { 
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 14px 20px;
        z-index: 10;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    }
    .product-modal-right { 
        flex: 1;
        max-height: none;
        padding-bottom: 100px;
    }
    .product-addon-section { padding: 16px 20px; }
    .addon-option { padding: 12px 14px; }
    .addon-option-name { font-size: 0.9rem; }
    .addon-option-price { font-size: 0.9rem; }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .theo-header-inner { 
        height: 52px;
        padding: 0 10px;
    }
    .theo-logo-icon { 
        width: 32px; 
        height: 32px; 
        font-size: 1rem; 
    }
    .theo-logo-text { font-size: 1rem; }
    .theo-menu-toggle {
        width: 40px;
        height: 40px;
    }
    .theo-menu-toggle span {
        width: 18px;
        height: 2px;
    }
    .theo-login-link {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    .theo-login-link #header-cart-count {
        font-size: 0.6rem;
        padding: 2px 5px;
    }
    
    /* Mobile Menu adjustments */
    .mobile-menu {
        width: 90%;
        max-width: 300px;
    }
    .mobile-header {
        padding: 12px 16px;
    }
    .mobile-header .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    .mobile-header .logo-text h1 {
        font-size: 1rem;
    }
    .mobile-close {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .mobile-nav {
        padding: 12px 14px;
    }
    .mobile-link {
        padding: 12px 14px;
        font-size: 0.95rem;
        gap: 12px;
    }
    .mobile-footer {
        padding: 14px 16px;
    }
    .mobile-cta {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .theo-store-bar { padding: 12px 14px; }
    .theo-store-name { font-size: 1.15rem; }
    .theo-meta-item { font-size: 0.75rem; }
    .theo-offer-text { font-size: 0.8rem; }
    
    .theo-filter-btn { padding: 6px 10px; font-size: 0.75rem; }
    .theo-filter-chip { padding: 6px 12px; font-size: 0.75rem; }
    .theo-chip-indicator { width: 12px; height: 12px; }
    
    .theo-bestsellers { padding: 16px 14px; }
    .theo-bestseller-card { 
        width: 140px;
        min-width: 140px;
    }
    .theo-bestseller-img { height: 110px; }
    .theo-bestseller-body { padding: 10px; }
    .theo-bestseller-meta { gap: 6px; margin-bottom: 6px; }
    .theo-veg-indicator { width: 14px; height: 14px; }
    .theo-bestseller-tag { font-size: 0.6rem; padding: 2px 6px; }
    .theo-bestseller-name { font-size: 0.8rem; }
    .theo-bestseller-price { font-size: 0.9rem; }
    .theo-add-btn { padding: 5px 10px; font-size: 0.7rem; }
    
    .theo-menu-content { padding: 0 14px 100px; }
    .theo-category-title { font-size: 0.95rem; }
    .theo-product-card { 
        padding: 12px; 
        gap: 12px;
    }
    .theo-product-badge { width: 14px; height: 14px; }
    .theo-product-name { font-size: 0.9rem; }
    .theo-product-price { font-size: 0.85rem; }
    .theo-product-desc { 
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    .theo-customisable { font-size: 0.65rem; }
    .theo-product-img-wrap { 
        width: 85px; 
        height: 70px;
    }
    .theo-product-add-btn { 
        padding: 6px 14px; 
        font-size: 0.75rem;
    }
    
    .theo-contact { padding: 24px 14px; }
    .theo-contact-content h2 { font-size: 1.25rem; }
    .theo-contact-content > p { font-size: 0.85rem; }
    .theo-contact-card { padding: 12px 14px; }
    .theo-contact-icon { 
        width: 40px; 
        height: 40px;
        font-size: 1.1rem;
    }
    .theo-contact-info strong { font-size: 0.85rem; }
    .theo-contact-info span { font-size: 0.75rem; }
    
    .theo-footer { padding: 24px 14px 20px; }
    .theo-footer-brand h3 { font-size: 1.1rem; }
    .theo-footer-brand p { font-size: 0.8rem; }
    .theo-footer-col h4 { font-size: 0.85rem; }
    .theo-footer-link { font-size: 0.8rem; }
    .theo-hour-row { font-size: 0.8rem; }
    .theo-footer-bottom p { font-size: 0.75rem; }
    
    .floating-cart { 
        bottom: 16px;
        left: 14px;
        right: 14px;
        padding: 12px 16px;
    }
    .floating-cart-icon { font-size: 1.1rem; }
    .floating-cart-text { font-size: 0.85rem; }
    
    .product-modal-image { height: 200px; }
    .product-modal-info { padding: 14px 16px; }
    .product-modal-name { font-size: 1.05rem; }
    .product-modal-desc { font-size: 0.85rem; }
    .product-modal-footer { padding: 12px 16px; }
    .product-modal-price { font-size: 1.2rem; }
    .product-modal-add-btn { padding: 12px 18px; font-size: 0.85rem; }
    .addon-section-header h3 { font-size: 0.85rem; }
    .addon-section-header p { font-size: 0.7rem; }
    .addon-option { padding: 10px 12px; }
    .addon-option-name { font-size: 0.85rem; }
    .addon-option-price { font-size: 0.85rem; }
    
    /* Modal Panels */
    .modal-panel { border-radius: var(--radius-md) var(--radius-md) 0 0; }
    .modal-header { padding: 14px 16px; }
    .modal-title h3 { font-size: 0.95rem; }
    .modal-body { padding: 16px; }
    .cart-section-title { font-size: 0.8rem; }
    .cart-item-name { font-size: 0.85rem; }
    .cart-total-row { padding: 14px 0; }
    .cart-total-label { font-size: 0.9rem; }
    .cart-total-value { font-size: 1.15rem; }
    .form-group label { font-size: 0.75rem; }
    .form-input { padding: 10px 12px; font-size: 0.85rem; }
    .form-actions .btn-primary, 
    .form-actions .btn-outline { padding: 12px; font-size: 0.85rem; }
}

/* Small phones */
@media (max-width: 360px) {
    .theo-header-inner {
        padding: 0 8px;
    }
    .theo-logo-text { 
        font-size: 0.9rem; 
    }
    .theo-logo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    .theo-menu-toggle {
        width: 36px;
        height: 36px;
    }
    .theo-menu-toggle span {
        width: 16px;
    }
    .theo-login-link {
        font-size: 0.7rem;
        padding: 5px 8px;
    }
    
    /* Mobile menu for very small screens */
    .mobile-menu {
        width: 95%;
        max-width: 280px;
    }
    .mobile-header {
        padding: 10px 12px;
    }
    .mobile-header .logo-icon {
        width: 30px;
        height: 30px;
    }
    .mobile-header .logo-text h1 {
        font-size: 0.9rem;
    }
    .mobile-nav {
        padding: 10px 12px;
    }
    .mobile-link {
        padding: 11px 12px;
        font-size: 0.9rem;
        gap: 10px;
    }
    .mobile-link span:first-child {
        font-size: 1rem;
        width: 22px;
    }
    .mobile-footer {
        padding: 12px;
    }
    .mobile-cta {
        padding: 11px;
        font-size: 0.85rem;
    }
    
    .theo-bestseller-card { 
        width: 130px; 
        min-width: 130px; 
    }
    .theo-bestseller-img { height: 100px; }
    .theo-product-img-wrap { width: 75px; height: 60px; }
    .floating-cart-text { font-size: 0.8rem; }
    
    /* Category grid single column on very small screens */
    .theo-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .theo-category-grid .theo-bestseller-img {
        height: 100px;
    }
    .theo-category-grid .theo-bestseller-body {
        padding: 8px;
    }
    .theo-category-grid .theo-bestseller-name {
        font-size: 0.75rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .theo-product-card:hover { 
        box-shadow: var(--shadow-sm);
        transform: none;
    }
    .theo-bestseller-card:hover { 
        transform: none;
        box-shadow: var(--shadow-sm);
    }
    .theo-add-btn:active,
    .theo-product-add-btn:active {
        transform: scale(0.95);
    }
    .addon-option:active {
        background: rgba(59, 191, 173, 0.1);
    }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .product-modal-image { height: 150px; }
    .product-modal-info { padding: 12px 16px; }
    .product-modal-right { padding-bottom: 80px; }
}

/* Safe area for notched devices */
@supports (padding: env(safe-area-inset-bottom)) {
    .floating-cart {
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }
    .product-modal-footer {
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }
    .theo-footer {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Keeping light theme for now - can be enabled later */
}

body.modal-open { overflow: hidden; }
/* ═══════════════════════════════════════════════════════════════════════════
   NO ITEMS FOUND MESSAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.theo-no-items {
    text-align: center;
    padding: 60px 24px;
    margin: 24px 0;
    background: linear-gradient(135deg, rgba(59, 191, 173, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}

.theo-no-items .no-items-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    opacity: 0.6;
}

.theo-no-items h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.theo-no-items p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.theo-no-items .btn-clear-filters {
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(59, 191, 173, 0.3);
}

.theo-no-items .btn-clear-filters:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 191, 173, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ENHANCED CART ITEM STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
.cart-item-variant {
    color: var(--primary-dark);
    font-weight: 600;
    background: rgba(59, 191, 173, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
}

.cart-item-unit-price {
    color: var(--text-muted);
    font-size: 0.72rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLAVOR OPTIONS
   ═══════════════════════════════════════════════════════════════════════════ */
.flavor-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flavor-option {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.flavor-option:hover {
    border-color: var(--primary-light);
    background: rgba(59, 191, 173, 0.03);
}

.flavor-option.selected {
    border-color: var(--primary);
    background: rgba(59, 191, 173, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 191, 173, 0.15);
}

.flavor-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 14px;
    transition: all var(--transition);
}

.flavor-radio.checked {
    border-color: var(--primary);
    background: var(--primary);
}

.flavor-radio.checked::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.flavor-info {
    flex: 1;
}

.flavor-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.flavor-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

/* Loading variants text */
.loading-variants {
    text-align: center;
    padding: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOAST ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARD SKELETON LOADING
   ═══════════════════════════════════════════════════════════════════════════ */
.theo-bestseller-card.loading .theo-bestseller-img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}