/* ====================================
   LSI - Let's Sizzle It | Main Styles
   Premium Light & Warm Theme
   ==================================== */

:root {
    --gold: #e8a800;
    --gold-light: #ffc50f;
    --gold-dark: #b07800;
    --red: #e8003d;
    --red-light: #ff1f5b;
    --red-dark: #b50030;
    /* Light theme surfaces */
    --dark: #f7f3ed;          /* page background - warm off-white */
    --dark-2: #ffffff;        /* topbar / cards */
    --dark-3: #f2ede6;        /* input backgrounds */
    --dark-4: #e8e2d9;        /* borders, muted surfaces */
    --dark-card: #ffffff;     /* card background */
    --gray: #888888;
    --gray-light: #555555;
    --border: rgba(0,0,0,0.09);
    --white: #1a1208;         /* text - rich dark brown instead of white */
    --off-white: #6b5c3e;     /* secondary text */
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-gold: 0 4px 20px rgba(232,168,0,0.2);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --topbar-h: 64px;
    --bottom-nav-h: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: var(--topbar-h);
    padding-bottom: var(--bottom-nav-h);
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark-4); }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 3px; }

/* ===== TOPBAR ===== */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--topbar-h);
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.topbar-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.brand-icon { font-size: 22px; }

.brand-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--gold-dark);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.location-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--gray);
    max-width: 180px;
}

.location-pill i { color: var(--gold-dark); font-size: 11px; }
.location-pill span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover { color: var(--white); background: var(--dark-3); }
.nav-link.active { color: var(--gold-dark); background: rgba(232,168,0,0.1); }
.nav-link i { font-size: 15px; }

.cart-nav {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 2px; right: 2px;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== MOBILE NAV DROPDOWN ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--topbar-h);
    right: 0;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    padding: 8px;
    min-width: 200px;
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--gray);
    transition: var(--transition);
}

.mobile-nav a:hover { color: var(--white); background: var(--dark-3); }

/* ===== BOTTOM NAV (MOBILE) ===== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: var(--bottom-nav-h);
    background: #ffffff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0 8px;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    padding: 10px 4px;
    color: #aaa;
    font-size: 10px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.bottom-nav-item i { font-size: 20px; }
.bottom-nav-item.active { color: var(--gold-dark); }
.bottom-nav-item:not(.active):hover { color: var(--gray); }

.cart-icon-wrap { position: relative; }

.cart-badge-bottom {
    position: absolute;
    top: -6px; right: -8px;
    background: var(--red);
    color: white;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* ===== PAGE WRAPPER ===== */
.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 16px;
    /* NOTE: do NOT set overflow-x:hidden here — it clips horizontal
       scrollers inside like .category-pills. Body handles page overflow. */
    min-width: 0;
}

.page-wrapper-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 16px;
}

/* ===== HERO / BANNER ===== */
.hero-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
    background: var(--dark-3);
    width: 100%;
    max-width: 100%;
}

.banner-swiper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

@media (min-width: 480px) {
    .banner-swiper { height: 260px; }
}

@media (min-width: 768px) {
    .banner-swiper { height: 340px; }
}

@media (min-width: 1024px) {
    .banner-swiper { height: 400px; }
}

.banner-slides { 
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
}

.banner-slide {
    min-width: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.banner-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.banner-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.banner-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.4);
    transition: var(--transition);
    cursor: pointer;
}

.banner-dot.active {
    width: 20px;
    background: var(--gold);
}

.banner-prev, .banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    font-size: 14px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.banner-prev { left: 12px; }
.banner-next { right: 12px; }
.banner-prev:hover, .banner-next:hover { background: var(--gold); color: var(--dark); }

/* ===== PROMO STRIP ===== */
.promo-strip {
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 28px;
    text-decoration: none;
}

.promo-strip:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255,197,15,0.08), var(--dark-4));
    transform: translateY(-1px);
}

.promo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.promo-text { flex: 1; }
.promo-text strong { display: block; font-size: 14px; color: var(--white); }
.promo-text small { font-size: 12px; color: var(--gray); }

.promo-arrow {
    color: var(--gold);
    font-size: 16px;
}

/* ===== SECTION HEADER ===== */
.section-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.section-subtitle {
    font-size: 13px;
    color: var(--gray);
}

/* ===== CATEGORY GRID ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}

@media (min-width: 480px) {
    .category-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

@media (min-width: 768px) {
    .category-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
}

@media (min-width: 1024px) {
    .category-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.category-card:hover {
    border-color: #e8a800;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(232,168,0,0.18);
}

.category-card:active {
    transform: translateY(-1px);
}

/* Image container — full width, aspect-ratio square */
.category-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #f8f4ee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.category-card:hover .category-img { transform: scale(1.1); }

.category-label {
    width: 100%;
    padding: 8px 6px 9px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: #333;
    line-height: 1.3;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    letter-spacing: 0.1px;
}

/* ===== MENU PAGE ===== */
.menu-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 1024px) {
    .menu-layout {
        grid-template-columns: 260px 1fr;
        gap: 24px;
    }
}

/* Sidebar Category Filter */
.menu-sidebar {
    display: none;
    flex-direction: column;
    gap: 6px;
}

@media (min-width: 1024px) {
    .menu-sidebar { display: flex; position: sticky; top: 80px; max-height: calc(100vh - 100px); overflow-y: auto; }
}

.sidebar-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    padding: 0 12px;
    margin-bottom: 4px;
}

.sidebar-cat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    background: none;
    width: 100%;
    text-align: left;
}

.sidebar-cat:hover { color: var(--white); background: var(--dark-3); }
.sidebar-cat.active { color: var(--gold-dark); background: rgba(232,168,0,0.1); border-color: rgba(232,168,0,0.25); font-weight: 700; }
.sidebar-cat i { font-size: 14px; width: 16px; text-align: center; }

/* Category Pill Row (Mobile) */
.category-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    margin-bottom: 16px;
    /* Enable touch scrolling on iOS */
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    /* Don't let parent clip the scroll */
    position: relative;
}

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

@media (min-width: 1024px) { .category-pills { display: none; } }

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid var(--border);
    background: #ffffff;
    color: var(--gray);
}

.cat-pill:hover { color: var(--white); border-color: rgba(0,0,0,0.15); background: var(--dark-3); }
.cat-pill.active { color: #ffffff; background: var(--gold-dark); border-color: var(--gold-dark); }

/* Search Bar */
.search-wrap {
    position: relative;
    margin-bottom: 20px;
}

.search-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 15px;
}

.search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.search-input::placeholder { color: #bbb; }
.search-input:focus { border-color: var(--gold-light); background: #fff; box-shadow: 0 0 0 3px rgba(232,168,0,0.12); }

.search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-4);
    color: var(--gray);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
}

.search-clear.show { display: flex; }

/* Results Info Bar */
.results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--dark-3);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray);
    border: 1px solid var(--border);
}

.clear-filters-btn {
    font-size: 12px;
    color: var(--red-light);
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== MENU ITEMS GRID ===== */
.items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 600px) {
    .items-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (min-width: 1024px) {
    .items-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (min-width: 1280px) {
    .items-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Item Card */
.item-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: row; /* horizontal on mobile */
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-width: 0;
    max-width: 380px;
}

/* Switch to vertical card layout on larger screens */
@media (min-width: 600px) {
    .item-card {
        flex-direction: column;
    }
}

.item-card:hover {
    border-color: rgba(232,168,0,0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.item-img-wrap {
    position: relative;
    width: 120px;
    min-width: 120px;
    height: 120px;
    overflow: hidden;
    background: var(--dark-3);
    flex-shrink: 0;
}

/* On larger screens, full-width image on top */
@media (min-width: 600px) {
    .item-img-wrap {
        width: 100%;
        min-width: unset;
        height: 180px;
    }
}

.item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.item-card:hover .item-img-wrap img { transform: scale(1.06); }

.bestseller-badge {
    position: absolute;
    top: 0; left: 0;
    background: linear-gradient(135deg, #ff4500, #e8003d);
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-bottom-right-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.bestseller-badge i { font-size: 9px; }

.customize-badge {
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.veg-badge {
    position: absolute;
    bottom: 10px; left: 10px;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 2px solid #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veg-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4CAF50;
}

.item-body { 
    padding: 10px 12px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
    min-width: 0;
    overflow: hidden;
}

@media (min-width: 600px) {
    .item-body { padding: 14px; gap: 8px; }
}

.item-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (min-width: 600px) {
    .item-name { font-size: 15px; }
}

.item-desc {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 600px) {
    .item-desc { font-size: 12px; line-height: 1.5; }
}

.item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    flex-wrap: nowrap;
}

@media (min-width: 600px) {
    .item-footer { padding-top: 10px; gap: 8px; }
}

.item-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-display);
    white-space: nowrap;
}

@media (min-width: 600px) {
    .item-price { font-size: 18px; }
}

.item-price-note {
    font-size: 10px;
    color: var(--gray);
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.add-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: var(--red);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 600px) {
    .add-btn { padding: 8px 16px; font-size: 13px; }
}

.add-btn:hover { background: var(--red-light); transform: scale(1.04); }

/* ===== ITEM DETAIL PAGE ===== */
.item-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

@media (min-width: 900px) {
    .item-detail-layout {
        display: grid;
        grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
        gap: 28px;
        align-items: start;
    }
}

@media (min-width: 1200px) {
    .item-detail-layout {
        grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
        gap: 36px;
    }
}

/* Image wrapper - handles overflow containment */
.item-detail-layout > div:first-child {
    overflow: hidden;
    min-width: 0;
}

.item-hero-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    display: block;
    /* Full bleed on mobile */
    margin: -16px -16px 24px;
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
}

@media (min-width: 480px) {
    .item-hero-img {
        height: 300px;
    }
}

@media (min-width: 900px) {
    .item-hero-img {
        height: 420px;
        position: sticky;
        top: 80px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-lg);
    }
}

/* Prevent right column overflow */
.item-detail-layout > div:last-child {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition);
    border: none;
    background: none;
    padding: 8px 0;
}

.back-btn:hover { color: var(--gold); }

.item-detail-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (min-width: 600px) {
    .item-detail-title { font-size: 26px; }
}

@media (min-width: 900px) {
    .item-detail-title { font-size: 28px; }
}

.item-detail-price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 16px;
}

@media (min-width: 600px) {
    .item-detail-price { font-size: 30px; }
}

@media (min-width: 900px) {
    .item-detail-price { font-size: 32px; }
}

.item-detail-desc {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (min-width: 600px) {
    .item-detail-desc { font-size: 14px; margin-bottom: 24px; padding-bottom: 24px; }
}

/* Variation / Addon Section */
.options-section {
    margin-bottom: 24px;
}

.options-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.options-subtitle {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 10px;
    font-style: italic;
}

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

.option-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    background: #ffffff;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    min-width: 0;
}

@media (min-width: 480px) {
    .option-item { padding: 14px 16px; }
}

.option-item:hover { border-color: rgba(232,168,0,0.4); }
.option-item.selected { border-color: var(--gold-dark); background: rgba(232,168,0,0.04); }

.option-item-left { flex: 1; min-width: 0; }
.option-item-name { font-size: 13px; font-weight: 600; color: var(--white); white-space: normal; word-break: break-word; overflow-wrap: break-word; }
.option-item-name.selected { color: var(--gold-dark); }
.option-item-desc { font-size: 11px; color: var(--gray); margin-top: 3px; font-style: italic; white-space: normal; word-break: break-word; }
.option-item-price { font-size: 13px; font-weight: 700; color: var(--gray); flex-shrink: 0; white-space: nowrap; margin-left: 8px; }
.option-item-price.selected { color: var(--gold-dark); }

/* Radio / Checkbox */
.radio-circle, .checkbox-square {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 1px; /* align with first line of text */
}

.checkbox-square { border-radius: 5px; }

.option-item.selected .radio-circle,
.option-item.selected .checkbox-square {
    border-color: var(--gold-dark);
    background: var(--gold-dark);
}

.radio-dot, .check-mark {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    display: none;
}

.check-mark {
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.option-item.selected .radio-dot,
.option-item.selected .check-mark { display: block; }

/* Addons horizontal scroll */
.addons-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.addons-scroll::-webkit-scrollbar { display: none; }

.addon-chip {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 110px;
    padding: 12px;
    background: var(--dark-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.addon-chip:hover { border-color: rgba(255,197,15,0.3); }
.addon-chip-name { font-size: 12px; font-weight: 600; color: var(--white); }
.addon-chip-price { font-size: 13px; font-weight: 700; color: var(--gold); }

/* Special Instructions */
.instructions-area {
    width: 100%;
    padding: 14px;
    background: var(--dark-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--white);
    min-height: 80px;
    resize: vertical;
    outline: none;
    transition: var(--transition);
}

.instructions-area::placeholder { color: var(--gray); }
.instructions-area:focus { border-color: rgba(255,197,15,0.4); }

/* ===== STICKY BOTTOM BAR (Item Detail) ===== */
.sticky-add-bar {
    position: sticky;
    bottom: 0;
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    z-index: 100;
    margin: 0 -16px;
}

@media (min-width: 480px) {
    .sticky-add-bar { padding: 16px; gap: 12px; flex-wrap: nowrap; }
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-3);
    border-radius: 24px;
    padding: 4px 8px;
    border: 1px solid var(--border);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dark-card);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.qty-btn:hover { background: var(--dark-4); color: var(--gold); }
.qty-num { font-size: 16px; font-weight: 700; color: var(--white); min-width: 24px; text-align: center; }

.buy-now-btn {
    flex: 1;
    min-width: 90px;
    padding: 12px 14px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 28px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.buy-now-btn:hover { background: var(--gold-light); transform: scale(1.02); }

.add-cart-btn {
    flex: 2;
    min-width: 150px;
    padding: 12px 14px;
    background: var(--red);
    color: white;
    border-radius: 28px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.add-cart-btn:hover { background: var(--red-light); transform: scale(1.02); }

/* ===== CHECKOUT PAGE ===== */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 900px) {
    .checkout-grid { grid-template-columns: 1fr 380px; align-items: start; }
}

.checkout-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.checkout-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-card-title i { color: var(--gold-dark); }

/* Form Fields */
.form-group { margin-bottom: 16px; }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    background: var(--dark-3);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: var(--transition);
}

.form-input::placeholder { color: #bbb; }
.form-input:focus { border-color: var(--gold-light); background: #fff; box-shadow: 0 0 0 3px rgba(232,168,0,0.1); }

.form-select {
    width: 100%;
    padding: 12px 14px;
    background: var(--dark-3);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-select option { background: #fff; color: #333; }

/* Delivery Mode Toggle */
.delivery-toggle {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.delivery-option {
    flex: 1;
    min-width: 120px;
    padding: 12px 16px;
    background: var(--dark-3);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.delivery-option.active { border-color: var(--gold); color: var(--gold); background: rgba(255,197,15,0.08); }

/* Slot Grid */
.slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
}

@media (min-width: 480px) {
    .slot-grid { grid-template-columns: repeat(4, 1fr); }
}

.slot-btn {
    padding: 10px 8px;
    background: var(--dark-3);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.slot-btn:hover { border-color: rgba(255,197,15,0.3); color: var(--white); }
.slot-btn.active { border-color: var(--gold); background: rgba(255,197,15,0.1); color: var(--gold); }
.slot-btn.disabled { opacity: 0.35; cursor: not-allowed; }

/* Address Type Toggle */
.address-type-toggle { display: flex; gap: 8px; margin-bottom: 16px; }

.addr-type-btn {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--dark-3);
    color: var(--gray-light);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.addr-type-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(255,197,15,0.08); }

/* Order Summary */
.order-summary-sticky {
    position: sticky;
    top: 80px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.summary-item:last-child { border-bottom: none; }
.summary-item-name { color: var(--gray-light); flex: 1; }
.summary-item-price { font-weight: 600; color: var(--white); }

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 0;
    font-size: 18px;
    font-weight: 800;
}

.summary-total-label { color: var(--white); }
.summary-total-price { color: var(--gold); font-family: var(--font-display); }

/* Checkout Checkboxes */
.policy-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }

.policy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--dark-3);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.policy-check input[type="checkbox"] { 
    width: 18px; height: 18px; 
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.policy-check-label { font-size: 12px; color: var(--gray-light); line-height: 1.5; }
.policy-check-label strong { color: var(--white); }

/* Place Order Button */
.place-order-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--red), #c0003a);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.place-order-btn:hover:not(:disabled) { background: linear-gradient(135deg, var(--red-light), #e8003d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,0,61,0.3); }
.place-order-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Gift Toggle */
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
}

.toggle-label { font-size: 14px; font-weight: 600; color: var(--white); }

.toggle-switch {
    width: 44px;
    height: 24px;
    background: var(--dark-4);
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.toggle-switch.on { background: var(--gold); }

.toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--dark-2);
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.toggle-switch.on .toggle-knob { left: calc(100% - 22px); background: var(--dark-2); }

/* ===== ORDERS PAGE ===== */
.order-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.order-card:hover { border-color: rgba(232,168,0,0.3); box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.order-id { font-size: 14px; font-weight: 700; color: var(--white); }
.order-date { font-size: 12px; color: var(--gray); margin-top: 3px; }

.order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending { background: rgba(255,197,15,0.15); color: var(--gold); }
.status-delivered { background: rgba(76,175,80,0.15); color: #4CAF50; }
.status-cancelled { background: rgba(232,0,61,0.15); color: var(--red-light); }
.status-processing { background: rgba(33,150,243,0.15); color: #2196F3; }

.order-items-list { font-size: 13px; color: var(--gray-light); margin-bottom: 12px; line-height: 1.6; }

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.order-total { font-size: 18px; font-weight: 800; color: var(--gold); font-family: var(--font-display); }

/* ===== LOGIN PAGE ===== */
.login-wrap {
    min-height: calc(100vh - var(--topbar-h));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,197,15,0.08) 0%, transparent 60%);
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
}

.login-logo {
    font-size: 48px;
    margin-bottom: 16px;
}

.login-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    background-color: #600D1F;
    border-radius: var(--radius-sm);
    padding: 12px;
}

.login-subtitle { font-size: 14px; color: var(--gray); margin-bottom: 32px; }

.login-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark-3);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--white);
    outline: none;
    transition: var(--transition);
    margin-bottom: 14px;
}

.login-input::placeholder { color: var(--gray); }
.login-input:focus { border-color: rgba(255,197,15,0.5); }

.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

/* OTP Modal */
.otp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.otp-modal {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 360px;
    width: 100%;
    text-align: center;
}

.otp-title { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.otp-subtitle { font-size: 13px; color: var(--gray); margin-bottom: 24px; }

.otp-inputs { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; }

.otp-input {
    width: 50px;
    height: 56px;
    background: var(--dark-3);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    outline: none;
    transition: var(--transition);
}

.otp-input:focus { border-color: var(--gold); }

.verify-btn {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--dark);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.verify-btn:hover { background: var(--gold-light); }

/* ===== GROUP CART PAGE ===== */
.group-cart-header {
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.group-cart-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.group-cart-info h2 { font-size: 20px; font-weight: 800; color: var(--white); }
.group-cart-info p { font-size: 13px; color: var(--gray); margin-top: 4px; }

.group-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary { background: var(--dark-3); color: var(--white); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-danger { background: var(--red); color: var(--white); }
.btn-danger:hover { background: var(--red-light); }

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 2000;
    display: none;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal-sheet {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    width: 100%;
    max-width: 560px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

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

.modal-handle {
    width: 36px;
    height: 4px;
    background: var(--dark-4);
    border-radius: 2px;
    margin: 12px auto 0;
}

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

.modal-title { font-size: 16px; font-weight: 700; color: var(--white); }

.modal-close {
    width: 32px;
    height: 32px;
    background: var(--dark-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    cursor: pointer;
    font-size: 14px;
    border: none;
    transition: var(--transition);
}

.modal-close:hover { background: var(--dark-4); color: var(--white); }

.modal-body {
    overflow-y: auto;
    padding: 16px 20px;
    flex: 1;
}

.cat-modal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.cat-modal-item:hover { padding-left: 8px; }
.cat-modal-item:last-child { border-bottom: none; }
.cat-modal-item-name { font-size: 14px; font-weight: 600; color: var(--white); flex: 1; }
.cat-modal-item i { color: var(--gold); font-size: 16px; }

/* ===== ALERT / NOTIFICATION MODAL ===== */
.sizzler-guidelines-modal {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    max-width: 460px;
    width: calc(100% - 32px);
    margin: 20px;
}

.guidelines-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--red-light);
    text-align: center;
    margin-bottom: 20px;
}

.guideline-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--dark-3);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.guideline-icon { font-size: 20px; flex-shrink: 0; }
.guideline-text { font-size: 13px; color: var(--gray-light); line-height: 1.6; }
.guideline-text strong { color: var(--white); }

/* ===== LOADING STATES ===== */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    color: var(--gray);
    font-size: 14px;
}

.loading-spinner i { color: var(--gold); }

.skeleton {
    background: linear-gradient(90deg, var(--dark-3) 25%, var(--dark-4) 50%, var(--dark-3) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== EMPTY STATE ===== */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-title { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.empty-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: calc(var(--bottom-nav-h) + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1208;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: calc(100vw - 40px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-left: 4px solid #4CAF50; }
.toast.error { border-left: 4px solid var(--red); }

/* ===== REVIEW FAB ===== */
.review-fab {
    position: fixed;
    bottom: calc(var(--bottom-nav-h) + 16px);
    right: 16px;

    background: linear-gradient(
        135deg,
        rgba(66, 133, 244, 0.12),
        rgba(52, 168, 83, 0.12),
        rgba(251, 188, 5, 0.12),
        rgba(234, 67, 53, 0.12)
    );

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.08);

    color: #000;

    border-radius: 28px;
    padding: 10px 16px;

    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 600;

    z-index: 500;
    text-decoration: none;

    transition: all 0.25s ease;

    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.review-fab:hover {
    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        rgba(66, 133, 244, 0.18),
        rgba(52, 168, 83, 0.18),
        rgba(251, 188, 5, 0.18),
        rgba(234, 67, 53, 0.18)
    );
}
.review-fab i { color: #4285F4; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .topbar-nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; flex-direction: column; }
    .bottom-nav { display: flex; }
    body { padding-bottom: var(--bottom-nav-h); }
    .sticky-add-bar { margin: 0 -16px; border-radius: 0; }
}

@media (min-width: 768px) {
    .location-pill { display: flex; }
    .review-fab { bottom: 24px; }
}

/* ===== UTILITY ===== */
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray); }
.text-red { color: var(--red-light); }
.font-display { font-family: var(--font-display); }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }

/* Divider */
.divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

/* Info Box */
.info-box {
    background: rgba(255,197,15,0.06);
    border: 1px solid rgba(255,197,15,0.2);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.info-box i { color: var(--gold); margin-right: 6px; }

/* Delivery Warning */
.delivery-warning {
    background: rgba(255,197,15,0.08);
    border: 1px solid rgba(255,197,15,0.3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--gold);
    margin-top: 8px;
}

/* Page title */
.page-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.page-title span { color: var(--gold); }
