@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/merriweather/v33/u-4e0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiSeqqJ-k.woff2) format('woff2');
}
@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/merriweather/v33/u-4e0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiSeqqJ-k.woff2) format('woff2');
}
@font-face {
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/merriweather/v33/u-4e0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiSeqqJ-k.woff2) format('woff2');
}

:root {
    --gold-color: #D4AF37;
    --gold-dark: #B8941F;
    --gold-light: #F0E68C;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body { 
    font-family: 'Merriweather', serif; 
    overflow-x: hidden; 
    color: #333;
    background: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

/* Menu Header */
.menu-header {
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(0,0,0,0.9) 100%), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    color: white;
    text-align: center;
    position: relative;
}

.menu-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-color), var(--gold-light), var(--gold-color));
}

.menu-header h1 {
    font-size: 3.5rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--gold-light);
}

/* Navigation */
.navbar { 
    background: rgba(0,0,0,0.95) !important; 
    padding: 1rem 0; 
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.navbar-scrolled { 
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
    background: rgba(0,0,0,1) !important;
}

.navbar-brand { 
    color: var(--gold-color) !important;
    font-weight: 700; 
    font-size: 1.8rem;
}

.nav-link { 
    color: #fff !important; 
    font-weight: 500; 
    padding: 0.5rem 1rem !important; 
    transition: all 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link:hover { 
    color: var(--gold-color) !important;
    transform: translateY(-2px);
}

/* ============================================
   HORIZONTAL SCROLLING MENU NAVIGATION
   ============================================ */

.menu-nav {
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 990;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0;
}

.menu-nav .container {
    padding: 0;
    position: relative;
}

.menu-nav .nav {
    display: flex;
    padding: 10px 0;
    position: relative;
    margin: 0;
}

.menu-nav .nav.horizontal-scroll-nav {
    overflow: hidden;
    padding: 10px 15px;
}

.menu-nav .nav-scroll-wrapper {
    display: flex;
    width: 100%;
}

/* Mobile-specific styles */
.menu-nav .nav-scroll-wrapper.scroll-wrapper-mobile {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding: 5px 0 15px 0;
    margin: -5px 0 -15px 0;
    cursor: grab;
}

.menu-nav .nav-scroll-wrapper.scroll-wrapper-mobile::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.menu-nav .nav-scroll-wrapper.scroll-wrapper-mobile:active {
    cursor: grabbing;
}

/* Menu navigation links */
.menu-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #666;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 100px;
    position: relative;
    margin-right: 8px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.menu-nav .nav-link:last-child {
    margin-right: 0;
}

.menu-nav .nav-link:hover {
    background: #e9ecef;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.menu-nav .nav-link.active {
    color: #d4af37;
    background: #fff9e6;
    font-weight: 600;
    border-color: #ffd700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.menu-nav .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
}

.menu-nav .nav-link i {
    font-size: 20px;
    margin-bottom: 8px;
    color: #666;
}

.menu-nav .nav-link.active i {
    color: #d4af37;
}

.menu-nav .nav-link .nav-text {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Scroll indicators */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: none;
}

.scroll-indicator:hover {
    opacity: 1;
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.scroll-indicator i {
    color: #333;
    font-size: 14px;
}

.scroll-indicator.left-indicator {
    left: 5px;
}

.scroll-indicator.right-indicator {
    right: 5px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .menu-nav {
        top: 0;
        z-index: 1000;
    }
    
    .menu-nav .nav.horizontal-scroll-nav {
        padding: 10px 40px;
    }
    
    .menu-nav .nav-link {
        min-width: 90px;
        padding: 10px 16px;
        margin-right: 6px;
    }
    
    .menu-nav .nav-link i {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .menu-nav .nav-link .nav-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .menu-nav .nav.horizontal-scroll-nav {
        padding: 10px 35px;
    }
    
    .menu-nav .nav-link {
        min-width: 85px;
        padding: 8px 12px;
    }
    
    .scroll-indicator {
        width: 32px;
        height: 32px;
    }
    
    .scroll-indicator i {
        font-size: 12px;
    }
}

/* Active state animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.menu-nav .nav-link.active {
    animation: pulse 2s infinite;
}

/* Search Bar */
.menu-search-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 76px;
    z-index: 99;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

#menuSearch {
    width: 100%;
    padding: 12px 45px 12px 45px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    transition: var(--transition);
    background: white;
}

#menuSearch:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    display: none;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 500px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-results.active {
    display: block;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.search-results-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.close-results {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-results:hover {
    background: #eee;
    color: #333;
}

.search-results-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.search-result-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.search-result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--gold-color);
}

.result-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-content {
    flex: 1;
    min-width: 0;
}

.result-content h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.result-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.result-price {
    color: var(--gold-color);
    font-weight: 700;
    font-size: 16px;
}

.result-section {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.result-section i {
    font-size: 12px;
}

.btn-view-item {
    background: var(--gold-color);
    color: #000;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-view-item:hover {
    background: var(--gold-dark);
    color: #000;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 15px;
}

.no-results p {
    margin: 0 0 10px 0;
}

.suggestion {
    font-size: 14px;
    color: #999;
}

.highlight {
    background-color: #fff3cd;
    color: #856404;
    padding: 0 2px;
    border-radius: 2px;
}

/* Menu Sections */
.menu-section {
    padding: 80px 0;
}

.menu-section.hidden-section {
    display: none;
}

.section-title {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title .subtitle {
    font-size: 1rem;
    color: var(--gold-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-color);
}

/* Menu Items */
.menu-category {
    margin-bottom: 4rem;
}

.menu-category h3 {
    font-size: 1.8rem;
    color: var(--gold-color);
    margin-bottom: 2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold-color);
}

/* CARD LAYOUT WITH BETTER IMAGE DISPLAY */
.menu-item-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item-card.hidden {
    display: none !important;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border: 1px solid var(--gold-light);
}

.menu-item-card.highlighted {
    border: 2px solid var(--gold-color);
    animation: highlightPulse 2s infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        border-color: var(--gold-color);
    }
    50% {
        border-color: var(--gold-light);
    }
}

/* FIXED: Improved image container for better desktop display */
.menu-item-image {
    height: 260px;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
    flex-shrink: 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    object-position: center;
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.menu-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
    flex: 1;
    margin-right: 1rem;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold-color);
    white-space: nowrap;
}

.menu-item-description {
    color: #666;
    margin-bottom: 1.2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.menu-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.menu-tag {
    background: #f8f9fa;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

.menu-tag.vegetarian {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #c8e6c9;
}

.menu-tag.spicy {
    background: #ffebee;
    color: #c62828;
    border-color: #ffcdd2;
}

.menu-tag.gluten-free {
    background: #fff3e0;
    color: #ef6c00;
    border-color: #ffe0b2;
}

.menu-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

/* IMPROVED ORDER BUTTON - More elegant and matching the theme */
.order-btn {
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: #000 !important;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    color: #000;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-color));
}

.order-btn:active {
    transform: translateY(-1px);
}

.order-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.order-btn:hover i {
    transform: translateX(3px);
}

.order-btn.added-to-cart {
    animation: gentlePulse 0.8s ease;
}

@keyframes gentlePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* ============================================
   FIXED ORDER COUNTER - RIGHT SIDE, HIGHER THAN CHATBASE
   ============================================ */

.order-counter {
    position: fixed;
    bottom: 200px; /* Positioned HIGH above where chatbase bot usually sits */
    right: 30px;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: #000;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 99999; /* Extremely high z-index to beat chatbase bot */
    transition: var(--transition);
    border: 4px solid white;
    text-align: center;
    line-height: 1.2;
}

.order-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.3));
}

.order-counter:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.order-counter.has-items::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid var(--gold-color);
    animation: gentlePulse 2s infinite;
}

.order-counter span {
    display: block;
    position: relative;
    z-index: 1;
    font-weight: 900;
}

.order-counter small {
    font-size: 0.65rem;
    display: block;
    opacity: 0.9;
    margin-top: 2px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* IMPROVED ORDER MODAL - More elegant */
.order-modal .modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    background: white;
    position: relative;
}

.order-modal .modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-color), var(--gold-light), var(--gold-color));
}

.order-modal .modal-header {
    background: white;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-modal .modal-title {
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    color: #333;
    margin: 0;
}

.order-modal .modal-title i {
    color: var(--gold-color);
    font-size: 1.5rem;
}

.order-modal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 25px 30px;
    background: #fafafa;
}

.order-modal .close {
    color: #666;
    opacity: 1;
    font-size: 1.8rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.order-modal .close:hover {
    color: #000;
    background: #f0f0f0;
    transform: rotate(90deg);
}

/* IMPROVED ORDER ITEMS - More elegant */
.order-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border: 1px solid transparent;
}

.order-item:hover {
    background: rgba(212, 175, 55, 0.03);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-color: var(--gold-light);
}

.order-item-image {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
    border: 2px solid var(--gold-color);
    background: white;
    position: relative;
}

.order-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1));
    z-index: 1;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

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

.order-item-title {
    font-weight: 800;
    margin-bottom: 8px;
    color: #333;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.2px;
}

.order-item-price {
    color: var(--gold-color);
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* IMPROVED QUANTITY CONTROLS - More elegant */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: bold;
    font-size: 1.2rem;
}

.quantity-btn:hover {
    background: var(--gold-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.quantity-input {
    width: 70px;
    text-align: center;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #333;
    background: white;
    transition: var(--transition);
}

.quantity-input:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* IMPROVED REMOVE BUTTON - More elegant */
.remove-btn {
    background: white;
    color: #666;
    border: 2px solid #eee;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.remove-btn:hover {
    background: #ffebee;
    color: #c62828;
    border-color: #ffcdd2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
}

.order-item-subtotal {
    margin-left: 20px;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold-color);
    min-width: 100px;
    text-align: right;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* IMPROVED ORDER SUMMARY - More elegant */
.order-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
    border: 1px solid #f0f0f0;
}

.order-summary .row {
    align-items: center;
}

.total-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-color);
    text-align: right;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
}

.total-label {
    font-weight: 700;
    color: #666;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* IMPROVED EMPTY ORDER - More elegant */
.empty-order {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    background: white;
    border-radius: 16px;
    border: 2px dashed #e0e0e0;
    transition: var(--transition);
}

.empty-order:hover {
    border-color: var(--gold-light);
    background: rgba(212, 175, 55, 0.02);
}

.empty-order i {
    font-size: 4.5rem;
    color: #f0f0f0;
    margin-bottom: 25px;
    transition: var(--transition);
}

.empty-order:hover i {
    color: var(--gold-light);
    transform: translateY(-5px);
}

.empty-order p {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #666;
}

.empty-order .text-muted {
    font-size: 1rem;
    opacity: 0.7;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.5;
}

/* IMPROVED SPECIAL INSTRUCTIONS - More elegant */
.special-instructions {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.special-instructions h6 {
    color: #333;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.special-instructions h6 i {
    color: var(--gold-color);
}

.special-instructions textarea {
    border: 2px solid #eee;
    border-radius: 8px;
    resize: vertical;
    transition: var(--transition);
    padding: 15px;
    font-size: 14px;
    color: #333;
    background: white;
}

.special-instructions textarea:focus {
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: white;
}

/* IMPROVED MODAL FOOTER - More elegant */
.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: #fafafa;
    border-top: 1px solid #eee;
    border-radius: 0 0 16px 16px;
}

/* IMPROVED CHECKOUT BUTTON - More elegant */
.checkout-btn {
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: #000 !important;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.checkout-btn:hover::before {
    left: 100%;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #000 !important;
}

/* IMPROVED CLEAR ORDER BUTTON - More elegant */
.clear-order-btn {
    background: white;
    color: #666;
    border: 2px solid #eee;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.clear-order-btn:hover {
    background: #fff5f5;
    color: #c62828;
    border-color: #ffcdd2;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
}

/* ============================================
   FIXED ORDER TOAST - RIGHT SIDE, ABOVE ORDER COUNTER
   ============================================ */

.order-toast {
    position: fixed;
    bottom: 285px; /* Positioned well above the order counter */
    right: 30px;
    background: white;
    color: #333;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 99998; /* High but just below order counter */
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 350px;
    border-left: 4px solid var(--gold-color);
    border-top: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.order-toast.show {
    transform: translateX(0);
}

.order-toast i {
    font-size: 1.8rem;
    color: var(--gold-color);
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-toast strong {
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.order-toast p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    opacity: 0.9;
}

.order-toast.toast-warning {
    border-left-color: #ffc107;
}

.order-toast.toast-warning i {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR ORDER COUNTER
   ============================================ */

/* Desktop positioning */
@media (min-width: 768px) {
    .order-counter {
        bottom: 200px;
        right: 30px;
        width: 75px;
        height: 75px;
        font-size: 1.4rem;
        z-index: 99999;
    }
    
    .order-toast {
        bottom: 285px;
        right: 30px;
        max-width: 350px;
    }
    
    /* If chatbase bot is detected (this class would be added via JS) */
    body.has-chatbase-bot .order-counter {
        bottom: 220px; /* Even higher if chatbase bot detected */
        right: 30px; /* Still on the right side */
    }
    
    body.has-chatbase-bot .order-toast {
        bottom: 305px; /* Even higher */
        right: 30px; /* Still on the right side */
    }
}

/* Mobile positioning */
@media (max-width: 767px) {
    .order-counter {
        bottom: 140px;
        right: 20px;
        width: 65px;
        height: 65px;
        font-size: 1.3rem;
        z-index: 99999;
    }
    
    .order-counter small {
        font-size: 0.6rem;
    }
    
    .order-toast {
        bottom: 215px;
        right: 20px;
        max-width: 300px;
        padding: 15px 20px;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .order-counter {
        bottom: 120px;
        right: 15px;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .order-counter small {
        font-size: 0.55rem;
    }
    
    .order-toast {
        bottom: 190px;
        right: 15px;
        max-width: 260px;
        padding: 12px 18px;
    }
    
    .order-toast i {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Featured Items */
.featured-items {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: white;
    padding: 80px 0;
}

.featured-items .section-title .subtitle {
    color: var(--gold-light);
}

.featured-items .section-title h2 {
    color: white;
}

.featured-item {
    text-align: center;
    padding: 2rem;
}

.featured-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000;
    font-size: 2rem;
}

.featured-item h4 {
    color: var(--gold-color);
    margin-bottom: 1rem;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(184, 134, 11, 0.9) 100%), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer { 
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #999; 
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-color), var(--gold-light), var(--gold-color));
}

footer a { 
    color: #999; 
    text-decoration: none; 
    transition: color 0.3s; 
}

footer a:hover { 
    color: var(--gold-color);
}

footer h6 {
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-color);
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
    color: #000;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
}

/* ====================================
   SIMPLE & BEAUTIFUL LITRES SECTION - UPDATED WITH LARGER VIDEOS
   ==================================== */

.simple-litres-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.simple-litres-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title .subtitle {
    color: var(--gold-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.section-title h2 {
    color: #333;
    font-size: 32px;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
}

/* Main Showcase Layout */
.litres-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 2rem;
    width: 100%;
}

/* Main Video Container - MADE BIGGER */
.video-side {
    position: relative;
    width: 100%;
    order: 1;
}

.simple-litres-section .video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 380px; /* Increased from 300px */
    background: #000;
    width: 100%;
}

.simple-litres-section .video-container video,
.simple-litres-section .video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
}

.video-text h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.9);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
}

.video-text p {
    color: white;
    font-size: 14px;
    margin: 0;
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 15px;
    margin-top: 5px;
}

/* Info Side */
.info-side {
    padding: 0;
    order: 2;
    width: 100%;
}

.litre-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-color);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 14px;
}

.litre-tag i {
    font-size: 16px;
}

.info-side h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 900;
    line-height: 1.3;
}

.info-side .description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Food Video Gallery - MADE MUCH BIGGER */
.food-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Increased from 15px */
    margin-bottom: 25px;
    width: 100%;
}

.gallery-item.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    background: #000;
    display: block;
    border: none;
    outline: none;
    aspect-ratio: 4/5; /* Maintains portrait ratio */
    transition: all 0.3s ease;
}

.gallery-item.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item.video-item video,
.gallery-item.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-position: center center;
    transition: transform 0.5s ease;
}

.gallery-item.video-item:hover video,
.gallery-item.video-item:hover img {
    transform: scale(1.05);
}

/* Food Label - Made larger */
.food-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    padding: 18px; /* Increased from 15px */
    color: white;
    z-index: 2;
    border: none;
}

.food-label h5 {
    margin: 0;
    font-size: 18px; /* Increased from 16px */
    font-weight: 700;
    line-height: 1.2;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.food-label span {
    font-size: 16px; /* Increased from 14px */
    color: var(--gold-color);
    font-weight: 600;
    display: block;
    margin-top: 6px; /* Increased from 4px */
}

/* Play overlay for videos */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item.video-item:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    background: rgba(212, 175, 55, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simple Call to Action */
.simple-cta {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    margin-top: 25px;
    width: 100%;
}

.simple-cta p {
    color: #333;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.simple-cta p i {
    color: var(--gold-color);
    font-size: 16px;
    flex-shrink: 0;
}

.simple-cta p strong {
    color: var(--gold-color);
    font-weight: 900;
    font-size: 16px;
    display: inline;
    margin-left: 4px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 16px;
}

/* ====================================
   RESPONSIVE DESIGN - UPDATED FOR LARGER VIDEOS
   ==================================== */

/* Mobile: 2 cards per row (below 768px) */
@media (max-width: 767px) {
    /* Litres section adjustments */
    .simple-litres-section .video-container {
        height: 280px; /* Increased from 250px */
    }
    
    .food-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item.video-item {
        aspect-ratio: 16/9; /* Wider aspect ratio for mobile */
        height: 250px; /* Fixed height for mobile */
    }
    
    .food-label {
        padding: 15px;
    }
    
    .food-label h5 {
        font-size: 16px;
    }
    
    .food-label span {
        font-size: 14px;
    }
    
    /* Fix for litres section layout on mobile */
    .litres-showcase {
        gap: 30px;
    }
}

/* Tablet (768px to 991px) - 3 cards per row */
@media (min-width: 768px) and (max-width: 991px) {
    /* Litres section adjustments */
    .simple-litres-section .video-container {
        height: 380px; /* Increased from 350px */
    }
    
    .food-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 15px;
    }
    
    .gallery-item.video-item {
        aspect-ratio: 3/4;
        height: 280px; /* Fixed height for tablet */
    }
}

/* DESKTOP (992px and above) - Larger videos */
@media (min-width: 992px) {
    /* Litres section desktop layout */
    .litres-showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
        margin-top: 3rem;
    }
    
    .video-side {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
    
    .simple-litres-section .video-container {
        height: 450px; /* Increased from 400px */
    }
    
    .food-gallery {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
        gap: 15px;
    }
    
    .gallery-item.video-item {
        aspect-ratio: 3/4;
        height: 220px; /* Fixed height for desktop gallery */
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .simple-litres-section .video-container {
        height: 500px; /* Increased from 450px */
    }
    
    .food-gallery {
        gap: 18px; /* Slightly larger gap */
    }
    
    .gallery-item.video-item {
        height: 240px; /* Slightly larger on big screens */
    }
}

/* Extra Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .simple-litres-section .video-container {
        height: 550px; /* Even larger on extra large screens */
    }
    
    .food-gallery {
        gap: 20px; /* Larger gap */
    }
    
    .gallery-item.video-item {
        height: 260px; /* Larger gallery items */
    }
}

/* Additional styles for video containers */
.gallery-item.video-item .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item.video-item:hover .play-overlay {
    opacity: 1;
}

/* Video loading state */
.gallery-item.video-item.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

/* Ensure video containers are clickable */
.gallery-item.video-item {
    cursor: pointer;
}

/* Fix for video aspect ratio on all devices */
.gallery-item.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Simple Call to Action */
.simple-cta {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    margin-top: 25px;
    width: 100%;
}

.simple-cta p {
    color: #333;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.simple-cta p i {
    color: var(--gold-color);
    font-size: 16px;
    flex-shrink: 0;
}

.simple-cta p strong {
    color: var(--gold-color);
    font-weight: 900;
    font-size: 16px;
    display: inline;
    margin-left: 4px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 16px;
}

/* ====================================
   VIDEO MODAL
   ==================================== */

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000; /* Higher than everything else */
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 800px;
    position: relative;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.modal-content video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 20px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    background: var(--gold-color);
    color: #000;
}

.modal-food-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 15px;
    color: white;
}

.modal-food-info h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
}

.modal-food-info span {
    color: var(--gold-color);
    font-weight: 600;
    font-size: 14px;
}

/* ====================================
   RESPONSIVE DESIGN - FIXED
   ==================================== */

/* Mobile: 2 cards per row (below 768px) */
@media (max-width: 767px) {
    .menu-category .row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .menu-category .row > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .menu-item-card {
        margin-bottom: 0 !important;
        height: 100% !important;
        min-height: 380px;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Better image display on mobile */
    .menu-item-image {
        height: 180px !important;
        min-height: 180px !important;
        flex-shrink: 0 !important;
    }
    
    .menu-item-image img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .menu-item-content {
        padding: 1rem !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .menu-item-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-bottom: 0.5rem !important;
    }
    
    .menu-item-title {
        font-size: 1rem !important;
        margin-bottom: 0.3rem !important;
        margin-right: 0 !important;
        line-height: 1.3 !important;
    }
    
    .menu-item-price {
        font-size: 1.2rem !important;
        margin-top: 0.2rem !important;
    }
    
    .menu-item-description {
        flex: 1 !important;
        margin-bottom: 0.8rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        line-height: 1.4 !important;
        font-size: 0.85rem !important;
    }
    
    .menu-item-tags {
        margin-bottom: 0.8rem !important;
    }
    
    .btn-gold, .order-btn {
        width: 100% !important;
        padding: 0.65rem 1rem !important;
        font-size: 0.85rem !important;
        margin-top: auto !important;
    }
    
    /* Section spacing */
    .menu-header {
        padding: 120px 0 60px !important;
    }

    .menu-header h1 {
        font-size: 2.5rem !important;
    }

    .section-title h2 {
        font-size: 2rem !important;
    }
    
    .menu-category h3 {
        margin-bottom: 1.5rem !important;
        font-size: 1.5rem !important;
    }
    
    /* Fix container padding */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Search bar adjustments */
    .menu-search-bar {
        top: 56px;
    }
    
    /* Litres section adjustments */
    .simple-litres-section .video-container {
        height: 250px;
    }
    
    .food-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item.video-item {
        aspect-ratio: 16/9;
    }
    
    /* Fix for litres section layout on mobile */
    .litres-showcase {
        gap: 30px;
    }
}

/* Very small mobile */
@media (max-width: 479px) {
    .menu-category .row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .menu-item-card {
        min-height: 350px !important;
    }
    
    .menu-item-image {
        height: 180px !important;
        min-height: 180px !important;
    }
    
    .menu-item-content {
        padding: 0.8rem !important;
    }
    
    .menu-item-title {
        font-size: 0.95rem !important;
    }
    
    .menu-item-price {
        font-size: 1.1rem !important;
    }
    
    .menu-item-description {
        font-size: 0.8rem !important;
        -webkit-line-clamp: 2 !important;
    }
    
    .btn-gold, .order-btn {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
    
    .food-gallery {
        grid-template-columns: 1fr;
    }
}

/* Tablet (768px to 991px) - 3 cards per row */
@media (min-width: 768px) and (max-width: 991px) {
    .menu-category .row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-left: -10px !important;
        margin-right: -10px !important;
    }
    
    .menu-category .row > [class*="col-"] {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .menu-item-card {
        height: 100% !important;
    }
    
    /* Better image display on tablets */
    .menu-item-image {
        height: 220px !important;
    }
    
    .menu-item-image img {
        object-fit: cover;
        object-position: center;
    }
    
    /* Litres section adjustments */
    .simple-litres-section .video-container {
        height: 350px;
    }
    
    .food-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item.video-item {
        aspect-ratio: 3/4;
    }
}

/* DESKTOP (992px and above) - 3 cards per row with better images */
@media (min-width: 992px) {
    .menu-category .row {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
    }
    
    .menu-category .row > [class*="col-"] {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-bottom: 30px !important;
    }
    
    .menu-item-card {
        height: 100% !important;
    }
    
    /* Better image display on desktop */
    .menu-item-image {
        height: 280px !important;
        min-height: 280px;
    }
    
    .menu-item-image img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease;
    }
    
    .menu-item-card:hover .menu-item-image img {
        transform: scale(1.05);
    }
    
    /* Litres section desktop layout - FIXED */
    .litres-showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
        margin-top: 3rem;
    }
    
    .video-side {
        position: sticky;
        top: 100px;
        height: fit-content;
    }
    
    .simple-litres-section .video-container {
        height: 400px;
    }
    
    .food-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-item.video-item {
        aspect-ratio: 3/4;
    }
}

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .menu-item-image {
        height: 300px !important;
        min-height: 300px;
    }
    
    .simple-litres-section .video-container {
        height: 450px;
    }
    
    .food-gallery {
        gap: 20px;
    }
}

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .menu-item-image {
        height: 320px !important;
        min-height: 320px;
    }
    
    .menu-item-card {
        max-width: 100%;
    }
}

/* Nav scroll buttons for mobile menu */
.nav-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.nav-scroll-btn:hover {
    opacity: 1;
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.nav-scroll-btn i {
    color: #333;
    font-size: 14px;
}

.nav-scroll-left {
    left: 5px;
}

.nav-scroll-right {
    right: 5px;
}

@media (max-width: 767px) {
    .menu-nav .nav.scrollable {
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 10px;
    }
    
    .menu-nav .nav.scrollable::-webkit-scrollbar {
        display: none;
    }
    
    .menu-nav .nav.scrollable .nav-item {
        flex: 0 0 auto;
        max-width: none;
        padding: 0 5px;
    }
    
    .nav-scroll-btn {
        display: flex;
    }
}

/* Loading state for images */
.menu-item-image.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Play overlay for videos */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 5;
    transition: opacity 0.3s;
}

.play-overlay i {
    background: rgba(212, 175, 55, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Special scrollbar styling */
.order-modal .modal-body::-webkit-scrollbar {
    width: 8px;
}

.order-modal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.order-modal .modal-body::-webkit-scrollbar-thumb {
    background: var(--gold-color);
    border-radius: 4px;
}

.order-modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Print styles */
@media print {
    .order-counter,
    .order-toast,
    .modal-footer,
    .special-instructions,
    .empty-order,
    .navbar,
    .menu-nav,
    .menu-search-bar,
    .order-btn {
        display: none !important;
    }
    
    .order-modal .modal-content {
        border: none;
        box-shadow: none;
    }
    
    .order-modal .modal-header {
        background: #fff;
        color: #000;
        border-bottom: 2px solid #000;
    }
    
    .order-item {
        border-bottom: 1px solid #000;
        break-inside: avoid;
    }
    
    .total-amount {
        color: #000;
    }
}

/* Utility Classes */
.bg-light {
    background-color: #f8f9fa !important;
}

.btn-gold {
    background: var(--gold-color);
    color: #000;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: #000;
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
    background: transparent;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold-color);
    color: #000;
    transform: translateY(-2px);
}

.mr-3 {
    margin-right: 1rem !important;
}

.text-right {
    text-align: right !important;
}

/* Additional fixes for the litres section */
.gallery-item.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Fix for video modal close button */
.close-modal {
    z-index: 10001;
}

/* Fix for food gallery on smaller screens */
@media (max-width: 767px) {
    .food-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Fix for grid items to ensure proper display */
.gallery-item {
    width: 100%;
}

/* Fix for litres section layout issues */
.info-side {
    display: flex;
    flex-direction: column;
}

/* Fix for order modal on mobile */
@media (max-width: 767px) {
    .order-modal .modal-dialog {
        margin: 10px;
    }
    
    .order-item {
        flex-direction: column;
        text-align: center;
    }
    
    .order-item-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .order-item-subtotal {
        margin-left: 0;
        margin-top: 15px;
        text-align: center;
    }
}
/* ============================================
   RESPONSIVE MENU GRID LAYOUT
   2 Columns on Mobile | 3 Columns on Desktop
   ============================================ */

/* MOBILE FIRST - Default for small screens */
.menu-category .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.menu-category .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
}

.menu-item-card {
    margin-bottom: 0 !important;
    height: 100% !important;
    min-height: 380px;
    display: flex !important;
    flex-direction: column !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item-card.hidden {
    display: none !important;
}

/* Better image display on mobile */
.menu-item-image {
    height: 180px !important;
    min-height: 180px !important;
    flex-shrink: 0 !important;
    overflow: hidden;
    position: relative;
    background-color: #f8f9fa;
}

.menu-item-image img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.5s ease;
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-content {
    padding: 1rem !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.menu-item-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 0.5rem !important;
}

.menu-item-title {
    font-size: 1rem !important;
    margin-bottom: 0.3rem !important;
    margin-right: 0 !important;
    line-height: 1.3 !important;
    font-weight: 700;
}

.menu-item-price {
    font-size: 1.2rem !important;
    margin-top: 0.2rem !important;
    font-weight: 900;
}

.menu-item-description {
    flex: 1 !important;
    margin-bottom: 0.8rem !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    line-height: 1.4 !important;
    font-size: 0.85rem !important;
    color: #666;
}

.menu-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem !important;
}

.menu-tag {
    background: #f8f9fa;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
}

.menu-tag.vegetarian {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #c8e6c9;
}

.menu-tag.spicy {
    background: #ffebee;
    color: #c62828;
    border-color: #ffcdd2;
}

.btn-gold,
.order-btn {
    width: 100% !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.85rem !important;
    margin-top: auto !important;
    background: linear-gradient(135deg, #D4AF37, #B8941F);
    color: #000 !important;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    cursor: pointer;
}

.btn-gold:hover,
.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    color: #000 !important;
}

/* ============================================
   TABLET LAYOUT (768px - 991px)
   ============================================ */

@media (min-width: 768px) and (max-width: 991px) {
    .menu-category .row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .menu-item-card {
        min-height: 420px;
    }

    .menu-item-image {
        height: 240px !important;
        min-height: 240px !important;
    }

    .menu-item-content {
        padding: 1.2rem !important;
    }

    .menu-item-title {
        font-size: 1.1rem !important;
    }

    .menu-item-price {
        font-size: 1.3rem !important;
    }

    .menu-item-description {
        font-size: 0.9rem !important;
        -webkit-line-clamp: 2 !important;
    }

    .btn-gold,
    .order-btn {
        padding: 0.75rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
}

/* ============================================
   DESKTOP LAYOUT (992px and above)
   3 Columns on Desktop
   ============================================ */

@media (min-width: 992px) {
    .menu-category .row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .menu-category .row > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0 !important;
    }

    .menu-item-card {
        min-height: 480px;
        transition: all 0.3s ease;
    }

    .menu-item-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    /* Better image display on desktop */
    .menu-item-image {
        height: 280px !important;
        min-height: 280px !important;
    }

    .menu-item-image img {
        object-fit: cover;
        object-position: center;
    }

    .menu-item-content {
        padding: 1.5rem !important;
    }

    .menu-item-header {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
    }

    .menu-item-title {
        font-size: 1.2rem !important;
        margin-right: 1rem !important;
        flex: 1;
        line-height: 1.3;
    }

    .menu-item-price {
        font-size: 1.3rem !important;
        white-space: nowrap;
    }

    .menu-item-description {
        font-size: 0.95rem !important;
        -webkit-line-clamp: 2 !important;
        margin-bottom: 1.2rem !important;
    }

    .btn-gold,
    .order-btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
}

/* ============================================
   LARGE DESKTOP (1200px and above)
   ============================================ */

@media (min-width: 1200px) {
    .menu-item-image {
        height: 300px !important;
        min-height: 300px !important;
    }

    .menu-item-card {
        min-height: 500px;
    }

    .menu-item-title {
        font-size: 1.25rem !important;
    }

    .menu-item-description {
        font-size: 1rem !important;
    }
}

/* ============================================
   EXTRA LARGE DESKTOP (1400px and above)
   ============================================ */

@media (min-width: 1400px) {
    .menu-item-image {
        height: 320px !important;
        min-height: 320px !important;
    }

    .menu-item-card {
        min-height: 520px;
    }
}

/* ============================================
   SMALL MOBILE (below 480px)
   ============================================ */

@media (max-width: 479px) {
    .menu-category .row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .menu-item-card {
        min-height: 360px;
    }

    .menu-item-image {
        height: 160px !important;
        min-height: 160px !important;
    }

    .menu-item-content {
        padding: 0.8rem !important;
    }

    .menu-item-title {
        font-size: 0.95rem !important;
    }

    .menu-item-price {
        font-size: 1.1rem !important;
    }

    .menu-item-description {
        font-size: 0.8rem !important;
        -webkit-line-clamp: 2 !important;
    }

    .btn-gold,
    .order-btn {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
}
/* ============================================
   COMPLETE MENU NAVIGATION TEXT VISIBILITY FIX
   Shows nav text on all screen sizes - NO DUPLICATION
   ============================================ */

/* Base menu nav styling */
.menu-nav {
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 990;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0;
}

.menu-nav .container {
    padding: 0;
    position: relative;
}

.menu-nav .nav {
    display: flex;
    padding: 10px 0;
    position: relative;
    margin: 0;
    align-items: stretch;
}

.menu-nav .nav.horizontal-scroll-nav {
    overflow: hidden;
    padding: 10px 15px;
}

.menu-nav .nav-scroll-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

/* Mobile-specific styles */
.menu-nav .nav-scroll-wrapper.scroll-wrapper-mobile {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 5px 0 15px 0;
    margin: -5px 0 -15px 0;
    cursor: grab;
}

.menu-nav .nav-scroll-wrapper.scroll-wrapper-mobile::-webkit-scrollbar {
    display: none;
}

.menu-nav .nav-scroll-wrapper.scroll-wrapper-mobile:active {
    cursor: grabbing;
}

/* Menu navigation links - Base styles */
.menu-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 20px;
    text-decoration: none;
    color: #333 !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: normal;
    flex-shrink: 0;
    min-width: 100px;
    position: relative;
    margin-right: 8px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 70px;
}

.menu-nav .nav-link:last-child {
    margin-right: 0;
}

.menu-nav .nav-link:hover {
    background: #e9ecef;
    color: #333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.menu-nav .nav-link.active {
    color: #333 !important;
    background: #fff9e6;
    border-color: #ffd700;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    animation: pulse 2s infinite;
}

.menu-nav .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
}

/* Icon styling */
.menu-nav .nav-link i {
    font-size: 20px;
    margin-bottom: 8px;
    color: #666 !important;
    display: block;
}

.menu-nav .nav-link.active i {
    color: #d4af37 !important;
}

.menu-nav .nav-link:hover i {
    color: #333 !important;
}

/* Text styling - MAIN FIX */
.menu-nav .nav-link .nav-text {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 4px;
    white-space: normal !important;
    word-wrap: break-word;
    color: #333 !important;
    word-break: break-word;
    hyphens: auto;
    padding: 2px 0;
    font-size: clamp(9px, 2vw, 13px);
}

.menu-nav .nav-link.active .nav-text {
    color: #d4af37 !important;
    font-weight: 700;
}

.menu-nav .nav-link:hover .nav-text {
    color: #333 !important;
    font-weight: 600;
}

/* Scroll indicators */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.scroll-indicator i {
    color: #333;
    font-size: 14px;
}

.scroll-indicator.left-indicator {
    left: 5px;
}

.scroll-indicator.right-indicator {
    right: 5px;
}

/* Active state animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Mobile adjustments (below 768px) */
@media (max-width: 767px) {
    .menu-nav {
        top: 0;
        z-index: 1000;
    }
    
    .menu-nav .nav.horizontal-scroll-nav {
        padding: 10px 40px;
    }
    
    .menu-nav .nav-link {
        min-width: 90px;
        padding: 10px 16px;
        margin-right: 6px;
        min-height: 65px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    
    .menu-nav .nav-link i {
        font-size: 18px;
        margin-bottom: 6px;
        display: block;
    }
    
    .menu-nav .nav-link .nav-text {
        font-size: 11px !important;
        font-weight: 600;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: 80px;
        word-break: break-word;
        line-height: 1.1;
        margin-top: 4px;
    }
}

/* Extra small mobile (below 480px) */
@media (max-width: 480px) {
    .menu-nav .nav.horizontal-scroll-nav {
        padding: 10px 35px;
    }
    
    .menu-nav .nav-link {
        min-width: 85px;
        padding: 8px 12px;
        margin-right: 6px;
        min-height: 60px;
    }
    
    .menu-nav .nav-link i {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .menu-nav .nav-link .nav-text {
        font-size: 10px !important;
        font-weight: 600;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: 75px;
        line-height: 1;
        margin-top: 3px;
    }
    
    .scroll-indicator {
        width: 32px;
        height: 32px;
    }
    
    .scroll-indicator i {
        font-size: 12px;
    }
}

/* Tablet adjustments (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .menu-nav .nav-link {
        padding: 12px 18px;
        min-width: 95px;
        min-height: 65px;
    }
    
    .menu-nav .nav-link i {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .menu-nav .nav-link .nav-text {
        font-size: 12px !important;
        font-weight: 500;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        line-height: 1.2;
    }
}

/* Desktop adjustments (992px and above) */
@media (min-width: 992px) {
    .menu-nav .nav-link {
        padding: 12px 20px;
        min-width: 100px;
        min-height: 70px;
    }
    
    .menu-nav .nav-link i {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .menu-nav .nav-link .nav-text {
        font-size: 13px !important;
        font-weight: 500;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        line-height: 1.2;
    }
}

/* Ensure nav text is never hidden */
.menu-nav .nav-link[data-section] .nav-text,
.menu-nav .nav-link[href*="#"] .nav-text {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

/* Fix for horizontal scroll nav wrapper */
.menu-nav .nav-scroll-wrapper.scroll-wrapper-mobile .nav-link .nav-text {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: inherit;
}
/* Search Bar Styling for Lounge */
.lounge-search-bar {
    margin: 20px auto 30px;
    max-width: 600px;
}

.lounge-search-bar .search-container {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border-radius: 50px;
    padding: 5px;
    border: 2px solid var(--gold-color);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.lounge-search-bar .search-container:focus-within {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.lounge-search-bar .search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-color);
    font-size: 18px;
    z-index: 2;
}

.lounge-search-bar #loungeMenuSearch {
    width: 100%;
    padding: 15px 60px 15px 50px;
    background: white;
    border: none;
    border-radius: 45px;
    font-size: 16px;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.lounge-search-bar #loungeMenuSearch::placeholder {
    color: #888;
    font-weight: 400;
}

.lounge-search-bar #loungeMenuSearch:focus {
    background: #f8f9fa;
}

/* Clear Search Button - Small and Elegant */
.lounge-search-bar .clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold-color);
    color: #000;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
    z-index: 3;
    font-size: 14px;
}

.lounge-search-bar .clear-search:hover {
    background: var(--gold-light);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 3px 8px rgba(212, 175, 55, 0.4);
}

.lounge-search-bar .clear-search:active {
    transform: translateY(-50%) scale(0.95);
}

/* Search Results */
.lounge-search-bar .search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    animation: fadeIn 0.3s ease;
}

.lounge-search-bar .search-results.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.lounge-search-bar .search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: 2px solid var(--gold-color);
}

.lounge-search-bar .search-results-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.lounge-search-bar .close-results {
    background: none;
    border: none;
    color: var(--gold-color);
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lounge-search-bar .close-results:hover {
    background: rgba(212, 175, 55, 0.2);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .lounge-search-bar {
        margin: 15px 15px 20px;
    }
    
    .lounge-search-bar #loungeMenuSearch {
        padding: 12px 55px 12px 45px;
        font-size: 15px;
    }
    
    .lounge-search-bar .search-container i {
        left: 15px;
        font-size: 16px;
    }
    
    .lounge-search-bar .clear-search {
        right: 12px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .lounge-search-bar .search-results {
        border-radius: 10px;
    }
}

/* Small extra touches */
.lounge-search-bar .search-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-light));
    border-radius: 52px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lounge-search-bar .search-container:focus-within::before {
    opacity: 1;
}

/* Simple Call to Action Styling - Matching Your Theme */
.simple-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.simple-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.simple-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-color), var(--gold-light), var(--gold-color));
}

.simple-cta p {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    line-height: 1.6;
    font-weight: 500;
}

.simple-cta p i {
    color: var(--gold-color);
    font-size: 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.simple-cta:hover p i {
    background: var(--gold-color);
    color: #000;
    transform: rotate(15deg) scale(1.1);
}

.simple-cta p strong {
    color: var(--gold-color);
    font-weight: 900;
    font-size: 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 5px;
    transition: var(--transition);
}

.simple-cta:hover p strong {
    background: var(--gold-color);
    color: #000;
    transform: scale(1.05);
}

/* WhatsApp Button Styling - Matching Gold Theme */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    letter-spacing: 0.5px;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    text-decoration: none;
}

.whatsapp-btn:active {
    transform: translateY(-1px);
}

.whatsapp-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover i {
    transform: scale(1.2);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

/* Add a subtle animation for attention */
@keyframes pulseCTA {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    }
    50% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    }
}

.whatsapp-btn {
    animation: pulseCTA 3s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-cta {
        padding: 20px;
        margin: 20px 0;
    }
    
    .simple-cta p {
        flex-direction: column;
        gap: 8px;
        font-size: 1rem;
        text-align: center;
    }
    
    .simple-cta p i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .simple-cta p strong {
        font-size: 1.1rem;
        margin-left: 0;
    }
    
    .whatsapp-btn {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .simple-cta {
        padding: 18px 15px;
    }
    
    .simple-cta p {
        font-size: 0.95rem;
    }
    
    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .simple-cta {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
        border-color: rgba(212, 175, 55, 0.3);
    }
    
    .simple-cta p {
        color: #f8f9fa;
    }
    
    .simple-cta p strong {
        background: rgba(212, 175, 55, 0.2);
        color: var(--gold-light);
    }
    
    .simple-cta:hover p strong {
        background: var(--gold-color);
        color: #000;
    }
}

/* Print Styles */
@media print {
    .simple-cta {
        border: 2px solid #000;
        box-shadow: none;
        background: #fff;
    }
    
    .whatsapp-btn {
        background: #fff;
        color: #000;
        border: 2px solid #000;
        box-shadow: none;
    }
}
/* ============================================
   CHECKOUT SUCCESS MODAL - GOLD/BLACK THEME
   ============================================ */

/* Success Modal Container */
.modal-checkout-success .modal-dialog {
    max-width: 450px;
}

.checkout-success-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    position: relative;
    border: 2px solid var(--gold-color);
}

.checkout-success-modal .modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-color), var(--gold-light), var(--gold-color));
}

/* Modal Header */
.checkout-success-modal .modal-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(26,26,26,0.8));
    color: white;
    border-bottom: 2px solid var(--gold-color);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkout-success-modal .modal-title {
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: var(--gold-color);
    margin: 0;
    font-family: 'Merriweather', serif;
    text-align: center;
}

.checkout-success-modal .modal-title i {
    color: var(--gold-color);
    font-size: 1.5rem;
}

/* Success Icon Animation */
.success-icon-checkout {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--gold-color);
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: success-pulse 2s infinite;
}

.success-icon-checkout::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-light));
    z-index: -1;
    animation: pulse 2s infinite;
}

.success-icon-checkout i {
    font-size: 50px;
    color: var(--gold-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Modal Body */
.checkout-success-modal .modal-body {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26,26,26,0.95), rgba(0,0,0,0.95));
    text-align: center;
}

.checkout-success-title {
    color: var(--gold-color);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    font-family: 'Merriweather', serif;
}

.checkout-success-message {
    color: var(--gold-light);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Order Summary Box */
.order-summary-success {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.order-summary-success h6 {
    color: var(--gold-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.summary-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.summary-details:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-label {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 1rem;
}

.summary-value {
    color: var(--gold-color);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Info Alert */
.checkout-info-alert {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold-color);
    border-radius: 10px;
    padding: 15px;
    color: var(--gold-light);
    font-size: 0.95rem;
    margin: 20px 0;
    text-align: center;
    line-height: 1.5;
}

.checkout-info-alert i {
    color: var(--gold-color);
    margin-right: 8px;
}

/* Modal Footer */
.checkout-success-modal .modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(26,26,26,0.8));
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0 0 16px 16px;
    gap: 15px;
}

/* Action Buttons */
.btn-success-action {
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: #000 !important;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    justify-content: center;
}

.btn-success-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-success-action:hover::before {
    left: 100%;
}

.btn-success-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #000 !important;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-color));
}

.btn-success-action i {
    font-size: 1.1rem;
}

/* Continue Shopping Button */
.btn-continue-shopping {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light) !important;
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 180px;
    justify-content: center;
}

.btn-continue-shopping:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-color) !important;
    border-color: var(--gold-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Animation for success icon */
@keyframes success-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

/* Modal animation */
.modal-checkout-success .modal-dialog {
    transform: translateY(-50px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.modal-checkout-success.show .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .modal-checkout-success .modal-dialog {
        margin: 20px;
    }
    
    .checkout-success-modal .modal-header {
        padding: 20px;
    }
    
    .checkout-success-modal .modal-body {
        padding: 1.5rem;
    }
    
    .success-icon-checkout {
        width: 100px;
        height: 100px;
    }
    
    .success-icon-checkout i {
        font-size: 40px;
    }
    
    .checkout-success-title {
        font-size: 1.5rem;
    }
    
    .checkout-success-modal .modal-footer {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-success-action,
    .btn-continue-shopping {
        width: 100%;
        min-width: auto;
    }
}

/* Auto-hide animation */
.checkout-success-modal.auto-hide .modal-content {
    animation: slideOut 0.5s ease forwards 8s;
}

@keyframes slideOut {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0.9);
        opacity: 0;
    }
}

/* Toast notification for checkout */
.checkout-toast {
    position: fixed;
    bottom: 250px;
    right: 30px;
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 99997;
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 350px;
    border: 2px solid var(--gold-color);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.checkout-toast.show {
    transform: translateX(0);
}

.checkout-toast i {
    font-size: 1.8rem;
    color: var(--gold-color);
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-toast strong {
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
    color: var(--gold-color);
}

.checkout-toast p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gold-light);
    opacity: 0.9;
}

@media (max-width: 767px) {
    .checkout-toast {
        bottom: 180px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        transform: translateY(0) translateX(100%);
    }
    
    .checkout-toast.show {
        transform: translateY(0) translateX(0);
    }
}

/* Modal backdrop styling */
.modal-checkout-success + .modal-backdrop {
    background: rgba(0,0,0,0.8);
}

.modal-checkout-success + .modal-backdrop.show {
    animation: fadeInBackdrop 0.3s ease;
}

@keyframes fadeInBackdrop {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ============================================
   FIX FOR MENU ITEM CARD TEXT DISPLAY
   Ensures complete text shows on all devices
   ============================================ */

/* Remove text truncation for menu item descriptions */
.menu-item-description {
    display: block !important;
    -webkit-line-clamp: none !important;
    overflow: visible !important;
    max-height: none !important;
    text-overflow: clip !important;
    white-space: normal !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

/* Adjust card height to accommodate full text */
.menu-item-card {
    min-height: auto !important;
    height: auto !important;
}

/* Adjust content container for better text flow */
.menu-item-content {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

/* Make sure title doesn't overflow */
.menu-item-title {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5rem !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .menu-item-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .menu-item-card {
        min-height: auto !important;
        height: 100% !important;
    }
    
    .menu-item-content {
        padding: 1rem !important;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .menu-item-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

/* Desktop adjustments */
@media (min-width: 992px) {
    .menu-item-description {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
}
/* ============================================
   FIXED MENU CARD LAYOUT - EQUAL HEIGHT & PROPER IMAGES
   2 Columns Mobile | 3 Columns Tablet | 3 Columns Desktop
   ============================================ */

/* MOBILE FIRST - 2 Columns */
.menu-category .row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.menu-category .row > [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
}

/* ============================================
   MENU ITEM CARD - EQUAL HEIGHT LAYOUT
   ============================================ */

.menu-item-card {
    margin-bottom: 0 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: white;
}

.menu-item-card.hidden {
    display: none !important;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border: 1px solid var(--gold-light);
}

/* ============================================
   MENU ITEM IMAGE - FIXED ASPECT RATIO
   ============================================ */

.menu-item-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* 1:1 aspect ratio */
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    background-image: linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0),
                      linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    background-repeat: repeat;
}

.menu-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.08);
}

/* ============================================
   MENU ITEM CONTENT - EQUAL DISTRIBUTION
   ============================================ */

.menu-item-content {
    padding: 1rem !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between;
    min-height: 0;
}

/* ============================================
   MENU ITEM HEADER
   ============================================ */

.menu-item-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 0.5rem !important;
    gap: 0.3rem;
}

.menu-item-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #333 !important;
    margin: 0 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow: visible !important;
}

.menu-item-price {
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    color: var(--gold-color) !important;
    margin: 0.2rem 0 0 0 !important;
}

/* ============================================
   MENU ITEM DESCRIPTION
   ============================================ */

.menu-item-description {
    flex: 1 !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    color: #666 !important;
    margin: 0.6rem 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* ============================================
   MENU ITEM TAGS
   ============================================ */

.menu-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.6rem 0 !important;
}

.menu-tag {
    background: #f8f9fa;
    color: #666;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
    white-space: nowrap;
}

.menu-tag.vegetarian {
    background: #e8f5e9;
    color: #2e7d32;
    border-color: #c8e6c9;
}

.menu-tag.spicy {
    background: #ffebee;
    color: #c62828;
    border-color: #ffcdd2;
}

.menu-tag.gluten-free {
    background: #fff3e0;
    color: #ef6c00;
    border-color: #ffe0b2;
}

/* ============================================
   ORDER BUTTON - ALWAYS AT BOTTOM
   ============================================ */

.menu-item-actions {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    margin-top: auto !important;
    gap: 0.5rem;
    padding-top: 0.8rem;
    border-top: 1px solid #f0f0f0;
}

.btn-gold,
.order-btn {
    flex: 1 !important;
    width: 100% !important;
    padding: 0.65rem 0.8rem !important;
    font-size: 0.8rem !important;
    background: linear-gradient(135deg, #D4AF37, #B8941F) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25) !important;
    cursor: pointer !important;
}

.btn-gold:hover,
.order-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35) !important;
    color: #000 !important;
    background: linear-gradient(135deg, #B8941F, #D4AF37) !important;
}

.btn-gold:active,
.order-btn:active {
    transform: translateY(-1px) !important;
}

/* ============================================
   SMALL MOBILE (below 480px)
   ============================================ */

@media (max-width: 479px) {
    .menu-category .row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .menu-item-image {
        padding-bottom: 100%; /* Keep 1:1 ratio */
    }

    .menu-item-content {
        padding: 0.8rem !important;
    }

    .menu-item-title {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
    }

    .menu-item-price {
        font-size: 1.1rem !important;
    }

    .menu-item-description {
        font-size: 0.8rem !important;
        -webkit-line-clamp: 2 !important;
        margin: 0.4rem 0 !important;
    }

    .menu-item-tags {
        margin: 0.4rem 0 !important;
        gap: 0.3rem;
    }

    .menu-tag {
        padding: 0.2rem 0.6rem;
        font-size: 0.65rem;
    }

    .menu-item-actions {
        padding-top: 0.6rem;
    }

    .btn-gold,
    .order-btn {
        padding: 0.55rem 0.6rem !important;
        font-size: 0.75rem !important;
    }
}

/* ============================================
   MOBILE (480px - 767px) - 2 Columns
   ============================================ */

@media (min-width: 480px) and (max-width: 767px) {
    .menu-category .row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .menu-item-image {
        padding-bottom: 100%; /* Keep 1:1 ratio */
    }

    .menu-item-content {
        padding: 1rem !important;
    }

    .menu-item-title {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
    }

    .menu-item-price {
        font-size: 1.15rem !important;
    }

    .menu-item-description {
        font-size: 0.85rem !important;
        -webkit-line-clamp: 2 !important;
        margin: 0.6rem 0 !important;
    }

    .menu-item-tags {
        margin: 0.5rem 0 !important;
    }

    .btn-gold,
    .order-btn {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
}

/* ============================================
   TABLET (768px - 991px) - 2 Columns
   ============================================ */

@media (min-width: 768px) and (max-width: 991px) {
    .menu-category .row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .menu-item-image {
        padding-bottom: 100%; /* Keep 1:1 ratio */
    }

    .menu-item-content {
        padding: 1.2rem !important;
    }

    .menu-item-title {
        font-size: 1.05rem !important;
        line-height: 1.3 !important;
    }

    .menu-item-price {
        font-size: 1.25rem !important;
    }

    .menu-item-description {
        font-size: 0.9rem !important;
        -webkit-line-clamp: 2 !important;
        margin: 0.7rem 0 !important;
    }

    .btn-gold,
    .order-btn {
        padding: 0.7rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

/* ============================================
   DESKTOP (992px and above) - 3 Columns
   ============================================ */

@media (min-width: 992px) {
    .menu-category .row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
    }

    .menu-item-image {
        padding-bottom: 100%; /* Keep 1:1 ratio */
    }

    .menu-item-content {
        padding: 1.3rem !important;
    }

    .menu-item-title {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }

    .menu-item-price {
        font-size: 1.3rem !important;
    }

    .menu-item-description {
        font-size: 0.92rem !important;
        -webkit-line-clamp: 3 !important;
        margin: 0.8rem 0 !important;
    }

    .menu-item-actions {
        padding-top: 1rem;
    }

    .btn-gold,
    .order-btn {
        padding: 0.75rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
}

/* ============================================
   LARGE DESKTOP (1200px and above)
   ============================================ */

@media (min-width: 1200px) {
    .menu-category .row {
        gap: 28px !important;
    }

    .menu-item-content {
        padding: 1.5rem !important;
    }

    .menu-item-title {
        font-size: 1.15rem !important;
    }

    .menu-item-price {
        font-size: 1.35rem !important;
    }

    .menu-item-description {
        font-size: 0.95rem !important;
    }

    .btn-gold,
    .order-btn {
        padding: 0.8rem 1.3rem !important;
        font-size: 0.95rem !important;
    }
}

/* ============================================
   EXTRA LARGE DESKTOP (1400px and above)
   ============================================ */

@media (min-width: 1400px) {
    .menu-category .row {
        gap: 30px !important;
    }

    .menu-item-content {
        padding: 1.6rem !important;
    }

    .menu-item-title {
        font-size: 1.2rem !important;
    }

    .menu-item-price {
        font-size: 1.4rem !important;
    }
}

/* ============================================
   OPTIONAL: ASPECT RATIO VARIATIONS
   Uncomment if you want different ratios
   ============================================ */

/* If you prefer 4:3 aspect ratio */
/* .menu-item-image {
    padding-bottom: 75%; /* 4:3 ratio */
/* } */

/* If you prefer 16:9 aspect ratio */
/* .menu-item-image {
    padding-bottom: 56.25%; /* 16:9 ratio */
/* } */

/* ============================================
   LOADING STATE
   ============================================ */

.menu-item-image.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* ============================================
   ENSURE CONSISTENT CARD HEIGHTS
   ============================================ */

/* Container to ensure all cards are same height */
.menu-category {
    display: block;
}

.menu-category .row {
    display: grid !important;
}

/* Force equal column heights */
.menu-category .row > [class*="col-"] {
    display: flex !important;
}

.menu-category .row > [class*="col-"] .menu-item-card {
    width: 100% !important;
}
z