/* ============================================
   SPICE ROUTE RESTAURANT - MASTER STYLESHEET
   Luxury Indian Restaurant Theme
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
    --primary:       #C8102E;
    --primary-dark:  #9B0021;
    --primary-light: #f5e6e8;
    --accent:        #D4AF37;
    --accent-light:  #FFF8E1;
    --dark:          #1A0A00;
    --dark2:         #2D1500;
    --brown:         #6B3A2A;
    --cream:         #FDF6EC;
    --text:          #2C1A0E;
    --text-muted:    #7A5C4A;
    --border:        #E8D5C4;
    --white:         #FFFFFF;
    --success:       #2D7A4F;
    --warning:       #E07B00;
    --info:          #1565C0;
    --shadow-sm:     0 2px 8px rgba(26,10,0,0.08);
    --shadow-md:     0 4px 20px rgba(26,10,0,0.12);
    --shadow-lg:     0 8px 40px rgba(26,10,0,0.16);
    --radius-sm:     8px;
    --radius-md:     14px;
    --radius-lg:     20px;
    --radius-xl:     28px;
    --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
    --font-display:  'Playfair Display', Georgia, serif;
    --font-body:     'DM Sans', system-ui, sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    color: var(--dark);
    line-height: 1.3;
}
a { color: var(--primary); transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }

/* ---- PAGE LOADER ---- */
.page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-size: 3rem; animation: pulse 1s infinite; }
.loader-spinner {
    width: 40px; height: 40px; border-radius: 50%;
    border: 3px solid rgba(212,175,55,0.2);
    border-top-color: var(--accent);
    animation: spin 0.8s linear infinite;
    margin-top: 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    font-size: 12.5px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.top-bar span { letter-spacing: 0.3px; }
.top-bar i { color: var(--accent); }

/* ---- NAVBAR ---- */
.main-navbar {
    background: var(--white);
    padding: 14px 0;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid var(--border);
    transition: all var(--transition);
}
.main-navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

/* Brand */
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-icon { font-size: 2rem; line-height: 1; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1.1;
}
.brand-tagline {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Nav Links */
.main-navbar .nav-link {
    font-weight: 500;
    color: var(--text) !important;
    padding: 6px 14px !important;
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    transition: all var(--transition);
    position: relative;
}
.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }
.main-navbar .nav-link.active,
.main-navbar .nav-link:hover { color: var(--primary) !important; }

/* Mega Menu */
.mega-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 200px;
}
.mega-menu .dropdown-item {
    border-radius: var(--radius-sm);
    font-size: 14px;
    padding: 8px 12px;
    color: var(--text);
    transition: all var(--transition);
}
.mega-menu .dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Nav Action Icons */
.nav-icon-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--dark);
    border: 1px solid var(--border);
    text-decoration: none;
    font-size: 16px;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
}
.nav-icon-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.cart-badge {
    position: absolute; top: -4px; right: -4px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px; font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--white);
    animation: cartBounce 0.3s ease;
}
@keyframes cartBounce { 0% { transform: scale(0); } 70% { transform: scale(1.2); } 100% { transform: scale(1); } }

/* User Button */
.user-btn {
    width: 38px; height: 38px; border-radius: 50%;
    border: 2px solid var(--border);
    background: none; cursor: pointer;
    overflow: hidden; padding: 0;
    transition: all var(--transition);
}
.user-btn:hover { border-color: var(--primary); }
.user-avatar { width: 100%; height: 100%; object-fit: cover; }
.user-initials {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white; font-weight: 700; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
}

/* User Dropdown */
.user-dropdown {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 220px;
}
.user-info-item {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}
.user-dropdown .dropdown-item {
    border-radius: var(--radius-sm);
    font-size: 14px;
    padding: 8px 12px;
    transition: all var(--transition);
}
.user-dropdown .dropdown-item:hover { background: var(--cream); }

/* ---- SEARCH OVERLAY ---- */
.search-overlay {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(26,10,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 1100;
    padding: 40px 0;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.search-overlay.active { transform: translateY(0); }
.search-form { display: flex; align-items: center; gap: 8px; }
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--accent);
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-display);
    padding: 8px 0;
    outline: none;
}
.search-input::placeholder { color: rgba(255,255,255,0.4); }
.search-btn, .search-close {
    background: none; border: none; color: var(--accent);
    font-size: 1.2rem; cursor: pointer;
    padding: 8px; border-radius: 50%;
    transition: all var(--transition);
}
.search-btn:hover, .search-close:hover { color: var(--white); }
.search-suggestions {
    margin-top: 20px;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.search-suggestion-item {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all var(--transition);
}
.search-suggestion-item:hover { background: var(--primary); border-color: var(--primary); }

/* ---- HERO SECTION ---- */
.hero-section {
    min-height: 92vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 40%, #4A1800 100%);
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23D4AF37" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23D4AF37" opacity="0.5"/><circle cx="80" cy="30" r="0.8" fill="%23D4AF37" opacity="0.3"/><circle cx="10" cy="70" r="0.6" fill="%23D4AF37" opacity="0.4"/><circle cx="90" cy="80" r="1" fill="%23D4AF37" opacity="0.3"/><circle cx="60" cy="90" r="0.5" fill="%23D4AF37" opacity="0.5"/></svg>');
    background-size: 200px;
    animation: starFloat 20s linear infinite;
}
@keyframes starFloat { to { background-position: 200px 200px; } }

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.4);
    color: var(--accent);
    font-size: 13px; font-weight: 500;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title .accent { color: var(--accent); }

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
    display: flex; gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }

.hero-image-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.hero-food-img {
    width: 100%;
    max-width: 520px;
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 0 80px rgba(212,175,55,0.3);
    animation: heroFloat 4s ease-in-out infinite;
    border: 4px solid rgba(212,175,55,0.3);
}
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    animation: heroFloat 3s ease-in-out infinite;
}
.hero-floating-card.card-1 { bottom: 20%; left: -10%; animation-delay: 0.5s; }
.hero-floating-card.card-2 { top: 20%; right: -5%; animation-delay: 1s; }
.hero-card-text { font-size: 12px; color: var(--text-muted); }
.hero-card-value { font-size: 14px; font-weight: 700; color: var(--dark); }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px; font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--dark);
    margin-bottom: 14px;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
}
.title-divider {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin: 16px 0;
}
.title-divider::before, .title-divider::after {
    content: ''; flex: 1; max-width: 80px;
    height: 1px; background: var(--border);
}
.title-divider-icon { color: var(--accent); font-size: 1.2rem; }

/* ---- BUTTONS ---- */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 26px;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,16,46,0.35);
}
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 26px;
    transition: all var(--transition);
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,16,46,0.25);
}
.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 26px;
    transition: all var(--transition);
}
.btn-accent:hover {
    background: #B8962A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}
.btn-add-cart {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: flex; align-items: center; gap: 6px;
    white-space: nowrap;
}
.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(200,16,46,0.3);
}
.btn-add-cart.adding {
    animation: addingPulse 0.4s ease;
}
@keyframes addingPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(0.95); } }

/* ---- CATEGORY TABS ---- */
.category-tabs {
    display: flex; flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 0 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 13.5px; font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition);
    text-decoration: none;
    flex-shrink: 0;
}
.cat-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
.cat-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.cat-tab .cat-count {
    background: rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 1px 7px;
    font-size: 11px;
}
.cat-tab:not(.active) .cat-count { background: var(--cream); color: var(--text-muted); }

/* ---- MENU ITEM CARDS ---- */
.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    height: 100%;
    position: relative;
    display: flex; flex-direction: column;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,16,46,0.15);
}

.menu-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream);
}
.menu-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.06); }
.menu-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--cream), #F5E6D8);
}

.menu-card-badges {
    position: absolute; top: 10px; left: 10px;
    display: flex; flex-direction: column; gap: 5px;
}
.badge-veg { background: var(--success); color: white; font-size: 10px; padding: 3px 8px; border-radius: 4px; }
.badge-nonveg { background: var(--primary); color: white; font-size: 10px; padding: 3px 8px; border-radius: 4px; }
.badge-bestseller { background: var(--accent); color: var(--dark); font-size: 10px; padding: 3px 8px; border-radius: 4px; font-weight: 700; }
.badge-featured { background: var(--primary); color: white; font-size: 10px; padding: 3px 8px; border-radius: 4px; }

.menu-card-actions {
    position: absolute; top: 10px; right: 10px;
    display: flex; flex-direction: column; gap: 6px;
    opacity: 0; transform: translateX(10px);
    transition: all var(--transition);
}
.menu-card:hover .menu-card-actions { opacity: 1; transform: translateX(0); }
.action-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 14px;
    color: var(--text);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.action-btn:hover { background: var(--primary); color: white; }
.action-btn.wishlisted { color: var(--primary); }

.menu-card-body {
    padding: 16px;
    flex: 1; display: flex; flex-direction: column;
}
.menu-card-category { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.menu-card-name {
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.menu-card-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; flex: 1; margin-bottom: 10px; }

.menu-card-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.prep-time { font-size: 11.5px; color: var(--text-muted); display: flex; align-items: center; gap: 3px; }

.menu-card-rating { display: flex; align-items: center; gap: 4px; font-size: 12px; }
.stars { color: var(--accent); letter-spacing: 1px; }
.rating-count { color: var(--text-muted); font-size: 11px; }

.menu-card-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
    background: var(--cream);
}

.price-wrap { display: flex; flex-direction: column; }
.price-from { font-size: 10px; color: var(--text-muted); text-transform: uppercase; }
.price-amount {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700;
    color: var(--primary);
}
.price-original {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ---- VARIANT SELECTOR (Modal) ---- */
.variant-modal .modal-content {
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.variant-modal .modal-header {
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    color: white;
    border: none;
    padding: 20px 24px;
}
.variant-modal .modal-title { font-family: var(--font-display); font-size: 1.3rem; }

.variant-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.variant-card {
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 12px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    position: relative;
}
.variant-card:hover { border-color: var(--primary); background: var(--primary-light); }
.variant-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}
.variant-card.selected::after {
    content: '✓';
    position: absolute; top: 6px; right: 8px;
    font-size: 12px; font-weight: 700;
    color: var(--primary);
}
.variant-name { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.variant-price { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--primary); }
.variant-original { font-size: 11px; color: var(--text-muted); text-decoration: line-through; }
.variant-discount { font-size: 10px; color: var(--success); font-weight: 600; }

/* Qty Stepper */
.qty-stepper {
    display: flex; align-items: center; gap: 0;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    background: var(--white);
}
.qty-btn {
    background: none; border: none;
    width: 36px; height: 36px;
    font-size: 1.1rem; font-weight: 700;
    cursor: pointer;
    color: var(--primary);
    transition: all var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--primary); color: white; }
.qty-value {
    min-width: 36px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    border: none;
    outline: none;
    background: none;
}

/* ---- CART SIDEBAR ---- */
.cart-sidebar-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1200;
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
}
.cart-sidebar-overlay.active { opacity: 1; visibility: visible; }

.cart-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 100%; max-width: 420px;
    background: var(--white);
    z-index: 1201;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.cart-sidebar.active { transform: translateX(0); }

.cart-sidebar-header {
    background: var(--dark);
    color: white;
    padding: 20px;
    display: flex; align-items: center; justify-content: space-between;
    flex-shrink: 0;
}
.cart-sidebar-header h5 { margin: 0; font-family: var(--font-display); font-size: 1.1rem; }
.cart-count-badge {
    background: var(--primary);
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px; font-weight: 700;
    margin-left: 8px;
}

.cart-sidebar-body { flex: 1; overflow-y: auto; padding: 16px; }

.cart-item {
    display: flex; gap: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    background: var(--white);
    transition: all var(--transition);
}
.cart-item:hover { box-shadow: var(--shadow-sm); }
.cart-item-img {
    width: 60px; height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--cream);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13.5px; font-weight: 600; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-variant { font-size: 11.5px; color: var(--text-muted); margin-bottom: 6px; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--primary); }
.cart-remove-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 13px; transition: color var(--transition); padding: 2px 6px; }
.cart-remove-btn:hover { color: var(--primary); }

.cart-sidebar-footer {
    background: var(--cream);
    padding: 16px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}
.cart-totals { margin-bottom: 14px; }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 13.5px; }
.cart-total-row.grand { font-weight: 700; font-size: 1rem; padding-top: 8px; border-top: 1px solid var(--border); color: var(--dark); }
.cart-total-row .free-text { color: var(--success); font-weight: 600; }
.cart-total-row .discount-text { color: var(--success); }

/* ---- FEATURE STRIP ---- */
.feature-strip {
    background: var(--dark);
    padding: 24px 0;
}
.feature-item { display: flex; align-items: center; gap: 14px; }
.feature-icon {
    width: 48px; height: 48px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--accent);
    flex-shrink: 0;
}
.feature-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 2px; }
.feature-sub { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
    position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 10px; left: 20px;
    line-height: 1;
}
.testimonial-text { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--primary);
    font-size: 14px;
    border: 2px solid var(--border);
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ---- SPECIAL OFFER SECTION ---- */
.offer-section {
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    position: relative; overflow: hidden;
}
.offer-section::before {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 300px; height: 300px;
    background: rgba(212,175,55,0.08);
    border-radius: 50%;
}
.offer-section::after {
    content: ''; position: absolute; bottom: -80px; left: -30px;
    width: 250px; height: 250px;
    background: rgba(200,16,46,0.1);
    border-radius: 50%;
}

/* ---- RESERVATION SECTION ---- */
.reservation-section { background: var(--cream); }
.reservation-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid var(--border);
}

/* ---- FORM STYLES ---- */
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    transition: all var(--transition);
    background: var(--white);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
    outline: none;
}
.form-label { font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-floating label { font-size: 13.5px; color: var(--text-muted); }

/* ---- CART PAGE ---- */
.cart-item-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    transition: all var(--transition);
}
.cart-item-card:hover { box-shadow: var(--shadow-sm); }

.order-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    position: sticky; top: 90px;
}
.order-summary-header {
    background: var(--dark);
    color: white;
    padding: 16px 20px;
    font-family: var(--font-display);
    font-size: 1.05rem;
}
.order-summary-body { padding: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; }
.summary-total { font-size: 1.05rem; font-weight: 700; padding-top: 12px; border-top: 2px solid var(--border); color: var(--dark); }

/* Coupon Input */
.coupon-input-group { display: flex; gap: 8px; }
.coupon-input-group .form-control { border-radius: var(--radius-sm) !important; }
.coupon-applied { background: rgba(45,122,79,0.08); border: 1px solid var(--success); border-radius: var(--radius-sm); padding: 8px 14px; color: var(--success); font-size: 13.5px; display: flex; align-items: center; justify-content: space-between; }

/* ---- ORDER STATUS TIMELINE ---- */
.order-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0;
    list-style: none;
}
.order-timeline::before {
    content: '';
    position: absolute;
    top: 20px; left: 0; right: 0;
    height: 2px;
    background: var(--border);
    z-index: 0;
}
.timeline-step {
    display: flex; flex-direction: column; align-items: center;
    position: relative; z-index: 1;
    flex: 1;
}
.timeline-dot {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; margin-bottom: 8px;
    transition: all var(--transition);
}
.timeline-step.active .timeline-dot { background: var(--primary); border-color: var(--primary); color: white; }
.timeline-step.done .timeline-dot { background: var(--success); border-color: var(--success); color: white; }
.timeline-label { font-size: 11px; text-align: center; color: var(--text-muted); }
.timeline-step.active .timeline-label,
.timeline-step.done .timeline-label { color: var(--primary); font-weight: 600; }

/* ---- ADMIN LAYOUT ---- */
.admin-sidebar {
    width: 260px;
    background: var(--dark);
    min-height: 100vh;
    position: fixed; top: 0; left: 0; bottom: 0;
    overflow-y: auto;
    transition: transform var(--transition);
    z-index: 100;
}
.admin-content {
    margin-left: 260px;
    min-height: 100vh;
    background: #F7F0EA;
    transition: margin var(--transition);
}
.admin-sidebar-logo {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-nav-link {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 20px;
    color: rgba(255,255,255,0.65);
    font-size: 14px; font-weight: 500;
    text-decoration: none;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(255,255,255,0.08);
    color: white;
    border-left-color: var(--accent);
}
.admin-nav-link i { width: 18px; text-align: center; }
.admin-nav-section { padding: 20px 20px 6px; font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.3); letter-spacing: 1.5px; text-transform: uppercase; }
.admin-topbar {
    background: white;
    padding: 14px 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 50;
}
.stat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.stat-card.primary::before { background: var(--primary); }
.stat-card.gold::before { background: var(--accent); }
.stat-card.green::before { background: var(--success); }
.stat-card.blue::before { background: var(--info); }
.stat-card-value { font-size: 1.8rem; font-weight: 800; font-family: var(--font-display); }
.stat-card-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-card-icon { position: absolute; top: 18px; right: 18px; font-size: 2rem; opacity: 0.1; }

/* ---- TABLES (Admin) ---- */
.admin-table { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-table thead { background: var(--dark); color: white; }
.admin-table thead th { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; padding: 12px 14px; border: none; }
.admin-table tbody tr { transition: background var(--transition); }
.admin-table tbody tr:hover { background: var(--cream); }
.admin-table tbody td { font-size: 13.5px; vertical-align: middle; padding: 12px 14px; }

/* ---- FILTER BAR ---- */
.filter-bar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.filter-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: 13px; font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}
.filter-chip:hover, .filter-chip.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* ---- SPICE BADGE ---- */
.spice-badge { font-size: 10px; padding: 2px 7px; border-radius: 10px; }

/* ---- PAGE HERO ---- */
.page-hero {
    background: linear-gradient(135deg, var(--dark), var(--dark2));
    padding: 60px 0;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M0 50 Q25 0 50 50 Q75 100 100 50' stroke='%23D4AF37' stroke-width='0.3' fill='none' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 100px;
    opacity: 0.4;
}
.page-hero-title { font-size: clamp(1.8rem,4vw,2.8rem); color: white; margin-bottom: 8px; }
.page-hero-sub { color: rgba(255,255,255,0.65); font-size: 1rem; }
.breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,0.4); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.breadcrumb-item a { color: var(--accent); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.7); }

/* ---- FOOTER ---- */
.main-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 60px 0; }
.footer-brand { max-width: 320px; }
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}
.footer-heading { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; font-size: 13.5px; margin-bottom: 10px; align-items: flex-start; }
.footer-contact i { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 14px;
    transition: all var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-3px); }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 16px 0; font-size: 13px; border-top: 1px solid rgba(255,255,255,0.06); }
.payment-icons i { font-size: 1.3rem; margin-left: 8px; color: rgba(255,255,255,0.5); }

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: white;
    border: none; border-radius: 50%;
    cursor: pointer; font-size: 16px;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
    z-index: 500;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---- FLASH ---- */
.flash-container { position: fixed; top: 80px; right: 16px; z-index: 1050; min-width: 300px; max-width: 400px; }
.flash-alert { font-size: 14px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.alert-success { background: #d1fae5; border-color: var(--success); color: #065f46; }
.alert-error, .alert-danger { background: #fee2e2; border-color: var(--primary); color: #991b1b; }
.alert-warning { background: #fef3c7; border-color: #d97706; color: #92400e; }
.alert-info { background: #dbeafe; border-color: var(--info); color: #1e40af; }

/* ---- TOAST ---- */
.custom-toast {
    background: var(--dark);
    color: white;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 13.5px;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 10px;
    min-width: 280px;
}
.toast-icon { font-size: 1.1rem; flex-shrink: 0; }
.toast-success .toast-icon { color: #6ee7b7; }
.toast-error .toast-icon { color: #fca5a5; }
.toast-warning .toast-icon { color: var(--accent); }

/* ---- EMPTY STATE ---- */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state-icon { font-size: 4rem; margin-bottom: 16px; opacity: 0.6; }
.empty-state-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--dark); margin-bottom: 8px; }
.empty-state-text { color: var(--text-muted); font-size: 14px; max-width: 320px; margin: 0 auto 24px; }

/* ---- ANIMATIONS ---- */
.fade-in-up { animation: fadeInUp 0.5s ease both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Skeleton Loading */
.skeleton { background: linear-gradient(90deg, #f0e8e0 25%, #e8ddd5 50%, #f0e8e0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-content { margin-left: 0; }
    .hero-stats { gap: 16px; }
    .hero-image-wrap { display: none; }
    .hero-section { min-height: 75vh; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 12px; }
    .stat-number { font-size: 1.4rem; }
    .cart-sidebar { max-width: 100%; }
    .reservation-form-card { padding: 24px; }
    .feature-strip .col-6 { text-align: center; }
    .feature-item { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .variant-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- UTILITY CLASSES ---- */
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.bg-primary-soft { background: var(--primary-light) !important; }
.bg-cream { background: var(--cream) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.border-primary-soft { border-color: rgba(200,16,46,0.15) !important; }
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }
