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

/* Modern Layout Structure CSS */

/* Top Welcome Bar */
.top-bar {
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.welcome-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.welcome-icon {
    font-size: 1.1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.welcome-text {
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: welcomeGlow 4s ease-in-out infinite alternate;
}

@keyframes welcomeGlow {
    0% {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    100% {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 255, 255, 0.3);
    }
}

.welcome-tagline {
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}



/* Mobile Responsive for Top Bar */
@media (max-width: 768px) {
    .top-bar-container {
        padding: 0 1rem;
    }
    
    .welcome-message {
        text-align: center;
    }
    
    .welcome-tagline {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 0.6rem 0;
        font-size: 0.85rem;
    }
    
    .welcome-message {
        gap: 0.3rem;
    }
    
    .welcome-text {
        font-size: 0.9rem;
    }
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--neutral-gray-800, #1a202c);
    margin-bottom: 1rem;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--neutral-gray-600, #4a5568);
    font-weight: 300;
    font-style: italic;
}

/* CSS Custom Properties - Vibrant Color System Foundation */
:root {
    /* Primary Brand Colors - Warm, spice-inspired palette */
    --primary-orange: #ff6b35;
    --primary-red: #e63946;
    --primary-gold: #f77f00;
    --primary-purple: #6a4c93;
    
    /* Secondary Accent Colors - Supporting warm tones */
    --accent-warm: #ffbe0b;
    --accent-spice: #fb8500;
    --accent-deep: #8ecae6;
    --accent-golden: #ffd60a;
    
    /* Gradient Definitions - Sunset and spice-inspired */
    --gradient-sunset: linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%);
    --gradient-spice: linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
    --gradient-warm: linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%);
    --gradient-light: linear-gradient(135deg, #ffbe0b 0%, #ffd60a 50%, #fff3cd 100%);
    --gradient-hero: linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%);
    
    /* Interactive State Colors */
    --color-hover: #ff8c42;
    --color-focus: #ff6b35;
    --color-active: #e55a2b;
    
    /* Neutral Colors - Updated for warm compatibility */
    --neutral-white: #ffffff;
    --neutral-light: #f7fafc;
    --neutral-gray-100: #f8faff;
    --neutral-gray-200: #e2e8f0;
    --neutral-gray-300: #cbd5e0;
    --neutral-gray-400: #a0aec0;
    --neutral-gray-500: #718096;
    --neutral-gray-600: #4a5568;
    --neutral-gray-700: #2d3748;
    --neutral-gray-800: #1a202c;
    
    /* Legacy Color Fallbacks - For browser compatibility */
    --legacy-primary: #667eea;
    --legacy-secondary: #764ba2;
    --legacy-text: #2d3748;
    --legacy-background: #f7fafc;
    
    /* Accessibility Colors - High contrast alternatives */
    --accessible-text: #1a202c;
    --accessible-background: #ffffff;
    --accessible-border: #2d3748;
    
    /* Special Purpose Colors */
    --success-color: #48bb78;
    --error-color: #f56565;
    --warning-color: #ed8936;
    --info-color: #4299e1;
    
    /* Social Media Brand Colors */
    --whatsapp-green: #25d366;
    --instagram-pink: #e1306c;
    --facebook-blue: #1877f2;
    --phone-green: #48bb78;
}

/* Fallback support for older browsers */
@supports not (color: var(--primary-orange)) {
    :root {
        /* Fallback values using standard hex colors */
        color: #2d3748;
        background-color: #f7fafc;
    }
    
    .nav-brand a {
        color: #667eea;
    }
    
    .hero {
        background: linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%);
    }
    
    .menu-category h3 {
        color: #667eea;
    }
    
    .item-price {
        color: #667eea;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-gray-700, #2d3748);
    background: var(--neutral-light, #f7fafc);
}

/* Header and Navigation */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.main-nav {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
}

.nav-brand .logo {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(247, 127, 0, 0.2));
    border-radius: 8px;
    object-fit: contain;
}

.nav-brand a:hover .logo {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(247, 127, 0, 0.3));
}

.nav-brand a:hover {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px) scale(1.02);
    letter-spacing: 1px;
}



/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    color: var(--neutral-gray-700, #2d3748);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--primary-orange, #ff6b35);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 127, 0, 0.1) 100%);
    transform: translateY(-1px);
}

.nav-menu a:focus {
    outline: 3px solid var(--primary-orange, #ff6b35);
    outline-offset: 2px;
}

/* CTA Button in Navigation */
.nav-cta {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%)) !important;
    color: white !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    padding: 0.75rem 1.5rem !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-left: 1rem;
}

.nav-cta:hover {
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%)) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4) !important;
}



.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    position: relative;
}

.nav-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    letter-spacing: 0.5px;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .nav-brand a {
        color: var(--primary-gold, #f77f00);
        background: none;
        -webkit-text-fill-color: unset;
        font-family: 'Playfair Display', 'Times New Roman', serif;
    }
}

.nav-brand .logo {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(247, 127, 0, 0.2));
}

.nav-brand a:hover .logo {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(247, 127, 0, 0.3));
}

.nav-brand a:hover {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px) scale(1.05);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Fallback for hover state */
@supports not (-webkit-background-clip: text) {
    .nav-brand a:hover {
        color: var(--primary-orange, #ff6b35);
        background: none;
        -webkit-text-fill-color: unset;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--neutral-gray-700, #2d3748);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    white-space: nowrap;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--primary-orange, #ff6b35);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 127, 0, 0.1) 100%);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.nav-links a:focus {
    outline: 3px solid var(--primary-orange, #ff6b35);
    outline-offset: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 127, 0, 0.1) 100%);
    color: var(--primary-orange, #ff6b35);
}

/* Enhanced Order Now Button with Sunset Gradient */
.nav-links a.order-now-nav {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    color: white !important;
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-left: 1rem;
}

.nav-links a.order-now-nav::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: left 0.5s ease;
}

.nav-links a.order-now-nav:hover {
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-links a.order-now-nav:hover::before {
    left: 100%;
}

.nav-links a.order-now-nav:focus {
    outline: 3px solid var(--accent-warm, #ffbe0b);
    outline-offset: 3px;
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-links a.order-now-nav:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-hero, linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%));
    color: white;
    padding: 3rem 0 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    display: inline-block;
    animation: titleFloat 4s ease-in-out infinite;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    letter-spacing: 0.8px;
    animation: subtitleFade 3s ease-in-out infinite alternate;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: flex-start;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.highlight-text {
    white-space: nowrap;
    color: white;
}



.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: logoShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: logoRadialGlow 5s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes logoRadialGlow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes logoShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

.hero-logo-svg {
    width: 140px;
    height: 140px;
    filter: 
        drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3)) 
        drop-shadow(0 0 30px rgba(255, 107, 53, 0.4))
        drop-shadow(0 0 60px rgba(247, 127, 0, 0.2));
    animation: logoFloat 3s ease-in-out infinite, logoGlow 4s ease-in-out infinite alternate, logoPulse 6s ease-in-out infinite;
    border-radius: 20px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-logo-svg:hover {
    transform: scale(1.05);
    filter: 
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)) 
        drop-shadow(0 0 40px rgba(255, 107, 53, 0.6))
        drop-shadow(0 0 80px rgba(247, 127, 0, 0.3));
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
}

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

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo-svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
    animation: logoFloat 3s ease-in-out infinite, logoGlow 4s ease-in-out infinite alternate;
}



@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translateY(-12px) rotate(0deg);
    }
    75% {
        transform: translateY(-8px) rotate(-1deg);
    }
}

@keyframes logoGlow {
    0% {
        filter: 
            drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0 0 30px rgba(255, 107, 53, 0.4))
            drop-shadow(0 0 60px rgba(247, 127, 0, 0.2));
    }
    100% {
        filter: 
            drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 0 50px rgba(247, 127, 0, 0.6)) 
            drop-shadow(0 0 100px rgba(255, 190, 11, 0.4));
    }
}

.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    display: inline-block;
    animation: titleFloat 4s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% {
        transform: rotate(-2deg) translateY(0px);
    }
    50% {
        transform: rotate(-1deg) translateY(-5px);
    }
}

.hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.8px;
    margin-top: 0.5rem;
    animation: subtitleFade 3s ease-in-out infinite alternate;
}

@keyframes subtitleFade {
    0% {
        opacity: 0.9;
        letter-spacing: 0.8px;
    }
    100% {
        opacity: 1;
        letter-spacing: 1px;
    }
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
}

.menu-note {
    text-align: center;
    font-style: italic;
    color: #718096;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Menu Section */
.menu-section {
    padding: 2.5rem 0;
    background: white;
}

.menu-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.menu-nav-btn {
    font-family: 'Poppins', sans-serif;
    background: transparent;
    border: 2px solid var(--neutral-gray-300, #cbd5e0);
    color: var(--neutral-gray-600, #4a5568);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.menu-nav-btn:hover,
.menu-nav-btn.active {
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    border-color: var(--accent-spice, #fb8500);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(247, 127, 0, 0.3);
}

.menu-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.menu-category {
    margin-bottom: 2rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.category-description {
    font-family: 'Poppins', sans-serif;
    color: var(--neutral-gray-600, #4a5568);
    font-style: italic;
    font-size: 1rem;
}

.menu-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-spice, #fb8500);
    position: relative;
    transition: all 0.3s ease;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .menu-category h3 {
        color: var(--primary-gold, #f77f00);
        background: none;
        -webkit-text-fill-color: unset;
    }
}

.menu-category h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    border-radius: 1px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(247, 127, 0, 0.08), 0 1px 3px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 133, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.menu-item:hover,
.menu-item:focus,
.menu-item:active,
.menu-item.touch-active {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(247, 127, 0, 0.15), 0 2px 8px rgba(255, 107, 53, 0.2);
    border-color: var(--accent-spice, #fb8500);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 127, 0, 0.03) 100%);
    outline: none;
}

.menu-item:focus {
    outline: 3px solid var(--primary-orange, #ff6b35);
    outline-offset: 2px;
}

.menu-item:active,
.menu-item.touch-active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(247, 127, 0, 0.2), 0 1px 4px rgba(255, 107, 53, 0.15);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 127, 0, 0.08) 100%);
}

.menu-item.featured {
    border-color: var(--neutral-gray-200, #e2e8f0);
    background: white;
    box-shadow: 0 2px 8px rgba(247, 127, 0, 0.08), 0 1px 3px rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.menu-item.featured:hover,
.menu-item.featured:focus,
.menu-item.featured:active,
.menu-item.featured.touch-active {
    border-color: var(--accent-spice, #fb8500);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 127, 0, 0.03) 100%);
    box-shadow: 0 4px 16px rgba(247, 127, 0, 0.15), 0 2px 8px rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
    outline: none;
}

.menu-item.featured:focus {
    outline: 3px solid var(--primary-orange, #ff6b35);
    outline-offset: 2px;
}

.menu-item.featured:active,
.menu-item.featured.touch-active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(247, 127, 0, 0.2), 0 1px 4px rgba(255, 107, 53, 0.15);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 127, 0, 0.08) 100%);
}

/* Removed featured item special styling */

@keyframes starGlow {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    margin-right: 1rem;
}

.item-info .item-name {
    font-weight: 600;
    color: var(--neutral-gray-700, #2d3748);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.menu-item:hover .item-info .item-name,
.menu-item:focus .item-info .item-name,
.menu-item:active .item-info .item-name,
.menu-item.touch-active .item-info .item-name {
    color: var(--neutral-gray-800, #1a202c);
}

.item-info .item-price {
    font-weight: 700;
    color: var(--primary-orange, #ff6b35);
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.menu-item:hover .item-info .item-price,
.menu-item:focus .item-info .item-price,
.menu-item:active .item-info .item-price,
.menu-item.touch-active .item-info .item-price {
    color: var(--primary-red, #e63946);
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(230, 57, 70, 0.2);
}

.item-info .item-description {
    font-size: 0.9rem;
    color: var(--neutral-gray-500, #718096);
    font-style: italic;
    transition: color 0.3s ease;
}

.menu-item:hover .item-info .item-description,
.menu-item:focus .item-info .item-description,
.menu-item:active .item-info .item-description,
.menu-item.touch-active .item-info .item-description {
    color: var(--neutral-gray-600, #4a5568);
}



.item-image-space {
    width: 120px;
    height: 80px;
    background: #f7fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e2e8f0;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.item-image-space img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(247, 127, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 44px; /* Accessible touch target */
}

.social-links a::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: left 0.5s ease;
}

.social-links a:hover {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:focus {
    outline: 3px solid var(--primary-orange, #ff6b35);
    outline-offset: 3px;
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
}

.social-links a:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

/* Brand-specific icon colors with warm accents */
.social-links .whatsapp span {
    color: var(--accent-golden, #ffd60a);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.social-links .instagram span {
    color: var(--accent-golden, #ffd60a);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.social-links .facebook span {
    color: var(--accent-golden, #ffd60a);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.social-links .facebook:hover span {
    color: var(--accent-warm, #ffbe0b);
    filter: drop-shadow(0 2px 4px rgba(255, 190, 11, 0.4));
    transform: scale(1.1);
}

.social-links .phone span {
    color: var(--accent-golden, #ffd60a);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Order Links - Enhanced with Sunset Gradients */
.order-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.order-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.order-links a::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: left 0.5s ease;
}

.order-links a:hover {
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.order-links a:hover::before {
    left: 100%;
}

.order-links a:focus {
    outline: 3px solid var(--accent-warm, #ffbe0b);
    outline-offset: 3px;
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
}

.order-links a:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
}

/* Specific styling for phone and WhatsApp with warm accent colors */
.order-links .phone span {
    color: var(--accent-golden, #ffd60a);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.order-links .whatsapp span {
    color: var(--accent-golden, #ffd60a);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Social Media Section */
.social-media {
    margin-bottom: 4rem;
    text-align: center;
}

.social-media h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
}

/* Enhanced Order Now Section with Light Background */
.order-now-section {
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
    color: var(--neutral-gray-700, #2d3748);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 2rem 3rem;
    max-width: 800px;
    box-shadow: 0 2px 8px rgba(247, 127, 0, 0.1), 0 1px 3px rgba(255, 107, 53, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(251, 133, 0, 0.2);
}

.order-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    opacity: 0.8;
    border-radius: 20px 20px 0 0;
}

/* Enhanced pulse animation with warm colors */
@keyframes orderPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4), 0 4px 16px rgba(247, 127, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5), 0 6px 24px rgba(247, 127, 0, 0.3), 0 0 60px rgba(255, 214, 10, 0.2);
        transform: scale(1.01);
    }
}

@keyframes warmGlow {
    0% {
        opacity: 0.3;
        transform: rotate(0deg) scale(1);
    }
    100% {
        opacity: 0.6;
        transform: rotate(180deg) scale(1.1);
    }
}



.order-now-section h2 {
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .order-now-section h2 {
        color: var(--primary-gold, #f77f00);
        background: none;
        -webkit-text-fill-color: unset;
    }
}

.order-now-section .order-links a {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    color: white;
    border: 2px solid transparent;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.order-now-section .order-links a:hover {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4), 0 4px 12px rgba(247, 127, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.order-now-section .order-links a:focus {
    outline: 3px solid var(--accent-warm, #ffbe0b);
    outline-offset: 3px;
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    box-shadow: 0 0 0 6px rgba(255, 190, 11, 0.3), 0 8px 25px rgba(255, 107, 53, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.order-now-section .order-links a:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3), 0 2px 8px rgba(247, 127, 0, 0.2);
}

.order-now-section .order-links .phone span,
.order-now-section .order-links .whatsapp span {
    color: var(--accent-golden, #ffd60a);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Enhanced Order Information Styling with Warm Accents */
.order-info {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.order-details {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(251, 133, 0, 0.15);
    box-shadow: 0 2px 8px rgba(247, 127, 0, 0.1), 0 1px 3px rgba(255, 107, 53, 0.05);
    position: relative;
    overflow: hidden;
}

.order-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    opacity: 0.8;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--neutral-gray-700, #2d3748);
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(251, 133, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.detail-item:hover {
    background: rgba(255, 214, 10, 0.1);
    border-color: rgba(251, 133, 0, 0.2);
    transform: translateX(2px);
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    font-size: 1.4rem;
    width: 28px;
    text-align: center;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.2) 0%, rgba(247, 127, 0, 0.1) 100%);
    border-radius: 50%;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
}

.detail-text {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    flex: 1;
}

/* Enhanced Mobile responsive for order section */
@media (max-width: 768px) {
    .order-now-section {
        margin: 2rem 1rem;
        padding: 2.5rem 1.5rem;
        border-radius: 18px;
        box-shadow: 0 6px 24px rgba(255, 107, 53, 0.3), 0 3px 12px rgba(247, 127, 0, 0.2);
    }
    
    .order-now-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1.75rem;
    }
    
    .order-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .order-links a {
        width: 100%;
        max-width: 280px;
        padding: 1.125rem 1.5rem;
        font-size: 1.05rem;
    }
    
    .order-details {
        padding: 1.75rem;
        border-radius: 14px;
    }
    
    .detail-item {
        flex-direction: row;
        align-items: center;
        gap: 0.875rem;
        text-align: left;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .detail-item:hover {
        transform: translateX(2px);
    }
    
    .detail-icon {
        align-self: center;
        font-size: 1.3rem;
        min-width: 30px;
        min-height: 30px;
    }
    
    .detail-text {
        font-size: 1rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .order-now-section {
        margin: 1.5rem 1rem;
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }
    
    .order-now-section h2 {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }
    
    .order-details {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .detail-item {
        padding: 0.875rem;
        gap: 0.75rem;
        margin-bottom: 0.875rem;
    }
    
    .detail-icon {
        font-size: 1.2rem;
        min-width: 28px;
        min-height: 28px;
    }
    
    .detail-text {
        font-size: 0.95rem;
    }
    
    .order-links a {
        max-width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
}

.social-links span {
    font-size: 1.2rem;
}

/* Reviews Section */
.reviews-note {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-note a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.reviews-note a:hover {
    border-bottom-color: #667eea;
}

/* Facebook Integration Section - Enhanced with Warm Color Scheme */
.facebook-links {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(251, 133, 0, 0.2);
    box-shadow: 0 2px 8px rgba(247, 127, 0, 0.1), 0 1px 3px rgba(255, 107, 53, 0.05);
    position: relative;
    overflow: hidden;
}

.facebook-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    opacity: 0.8;
}

.facebook-links h3 {
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .facebook-links h3 {
        color: var(--primary-gold, #f77f00);
        background: none;
        -webkit-text-fill-color: unset;
    }
}

.facebook-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.facebook-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(247, 127, 0, 0.2), 0 1px 4px rgba(255, 190, 11, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-height: 44px; /* Mobile-friendly touch target */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.facebook-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: left 0.5s ease;
}

.facebook-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 8px;
    height: 8px;
    background: var(--accent-golden, #ffd60a);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px rgba(255, 214, 10, 0.6);
    animation: fbPulse 2s ease-in-out infinite;
}

@keyframes fbPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

.facebook-btn:hover {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3), 0 2px 8px rgba(247, 127, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.facebook-btn:hover::after {
    background: var(--accent-warm, #ffbe0b);
    box-shadow: 0 0 12px rgba(255, 190, 11, 0.8);
}

.facebook-btn:focus {
    outline: 3px solid var(--accent-warm, #ffbe0b);
    outline-offset: 3px;
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
    box-shadow: 0 0 0 6px rgba(255, 190, 11, 0.3), 0 6px 20px rgba(230, 57, 70, 0.4);
}

.facebook-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3), 0 2px 6px rgba(255, 107, 53, 0.2);
}

/* Mobile responsive adjustments for Facebook buttons - Enhanced with Warm Colors */
@media (max-width: 768px) {
    .facebook-links {
        margin: 2rem -1rem 0;
        border-radius: 0;
        padding: 1.5rem 1rem;
        background: linear-gradient(135deg, rgba(255, 214, 10, 0.06) 0%, rgba(247, 127, 0, 0.04) 50%, #ffffff 100%);
        border-left: none;
        border-right: none;
        border-color: rgba(251, 133, 0, 0.15);
    }
    
    .facebook-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .facebook-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        box-shadow: 0 3px 10px rgba(255, 107, 53, 0.25), 0 1px 4px rgba(247, 127, 0, 0.15);
    }
    
    .facebook-btn:hover {
        box-shadow: 0 5px 15px rgba(230, 57, 70, 0.35), 0 2px 8px rgba(255, 107, 53, 0.25);
    }
}

@media (max-width: 480px) {
    .facebook-links {
        padding: 1.25rem 0.75rem;
        background: linear-gradient(135deg, rgba(255, 214, 10, 0.05) 0%, rgba(247, 127, 0, 0.03) 50%, #ffffff 100%);
    }
    
    .facebook-links h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .facebook-btn {
        max-width: 100%;
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2), 0 1px 3px rgba(247, 127, 0, 0.1);
    }
    
    .facebook-btn::after {
        right: 0.75rem;
        width: 6px;
        height: 6px;
    }
}

/* Reviews Grid System - Responsive Layout */
.reviews-grid {
    display: grid;
    gap: 1.5rem;
    /* Desktop: 3-column grid for screens > 768px */
    grid-template-columns: repeat(3, 1fr);
}

/* Tablet: 2-column grid for screens 481px-768px */
@media (max-width: 768px) and (min-width: 481px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    /* Tablet Review Card Adjustments */
    .review-header {
        padding: 1.125rem 1.375rem 0.625rem;
    }
    
    .review-content {
        padding: 0.875rem 1.375rem;
    }
    
    .review-footer {
        padding: 0.625rem 1.375rem 1.125rem;
    }
}

/* Mobile: Single column for screens ≤ 480px */
@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Mobile Review Card Adjustments */
    .review-header {
        padding: 1rem 1.25rem 0.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .review-content {
        padding: 0.75rem 1.25rem;
    }
    
    .review-footer {
        padding: 0.5rem 1.25rem 1rem;
    }
    
    .stars {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .reviewer-name {
        font-size: 0.85rem;
    }
}

/* Review Card Layout with Header, Content, Footer - Enhanced with Warm Accents */
.review-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(247, 127, 0, 0.08), 0 1px 3px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(251, 133, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(247, 127, 0, 0.15), 0 2px 8px rgba(255, 107, 53, 0.2);
    border-color: var(--accent-spice, #fb8500);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 127, 0, 0.03) 100%);
}

/* Review Card Header - Enhanced with Warm Accents */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem 0.75rem;
    border-bottom: 1px solid rgba(251, 133, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.03) 0%, rgba(247, 127, 0, 0.02) 50%, transparent 100%);
    position: relative;
}

.review-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    opacity: 0.3;
}

.stars {
    font-size: 1.3rem;
    color: var(--accent-golden, #ffd60a);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    filter: drop-shadow(0 1px 2px rgba(255, 214, 10, 0.3));
    text-shadow: 0 0 8px rgba(255, 214, 10, 0.4);
    transition: all 0.3s ease;
}

.review-card:hover .stars {
    color: var(--primary-gold, #f77f00);
    filter: drop-shadow(0 2px 4px rgba(247, 127, 0, 0.4));
    text-shadow: 0 0 12px rgba(247, 127, 0, 0.5);
    transform: scale(1.05);
}

.review-date {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

/* Review Card Content - Enhanced with Warm Visual Hierarchy */
.review-content {
    padding: 1rem 1.5rem;
    flex-grow: 1;
    position: relative;
}

.review-content::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: var(--accent-golden, #ffd60a);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.review-text {
    font-style: italic;
    color: var(--neutral-gray-600, #4a5568);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.review-card:hover .review-text {
    color: var(--neutral-gray-700, #2d3748);
}

/* Review Card Footer - Enhanced with Warm Accents */
.review-footer {
    padding: 0.75rem 1.5rem 1.25rem;
    border-top: 1px solid rgba(251, 133, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.05) 0%, rgba(247, 127, 0, 0.03) 50%, #ffffff 100%);
    position: relative;
}

.review-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    opacity: 0.3;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-orange, #ff6b35);
    text-align: right;
    margin: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover .reviewer-name {
    color: var(--primary-red, #e63946);
    transform: translateX(-2px);
}

/* Enhanced touch feedback for mobile */
@media (pointer: coarse) {
    .menu-item {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
        tap-highlight-color: rgba(255, 107, 53, 0.2);
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .menu-item:active,
    .menu-item.touch-active {
        transform: translateY(-1px) scale(0.98);
        transition: all 0.1s ease;
    }

    /* Ensure touch targets are large enough */
    .menu-item {
        min-height: 44px;
        padding: 1.25rem;
    }

    /* Enhanced touch feedback for price and text elements */
    .menu-item:active .item-info .item-price,
    .menu-item.touch-active .item-info .item-price {
        transform: scale(1.08);
        transition: transform 0.1s ease;
    }

    .menu-item:active .item-info .item-name,
    .menu-item.touch-active .item-info .item-name {
        transition: color 0.1s ease;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
        align-items: center;
    }
    
    .nav-links {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .nav-links li {
        flex: 0 0 auto;
        min-width: 100px;
    }
    
    .nav-links a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        display: block;
        text-align: center;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links a.order-now-nav {
        margin-left: 0;
        margin-top: 0;
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    .nav-brand a {
        font-size: 1.3rem;
        letter-spacing: 0.3px;
    }
    
    .nav-brand .logo {
        width: 28px;
        height: 28px;
    }
    
    .hero-logo-container {
        padding: 1.5rem;
        border-width: 2px;
    }
    
    .hero-logo-svg {
        width: 80px;
        height: 80px;
    }
    
    .hero {
        padding: 3rem 1rem;
        min-height: 40vh;
    }
    
    main {
        padding: 2rem 1rem;
    }
    
    .menu-item {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .item-info {
        margin-right: 0;
        flex: 1;
        min-width: 180px;
    }
    
    .item-image-space {
        width: 120px;
        height: 80px;
        flex-shrink: 0;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links a {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Medium screens - ensure proper wrapping */
@media (max-width: 600px) and (min-width: 481px) {
    .menu-item {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .item-info {
        flex: 1;
        min-width: 150px;
    }
    
    .item-image-space {
        width: 90px;
        height: 65px;
        flex-shrink: 0;
    }
}

/* Very small mobile screens - stack image below text only when absolutely necessary */
@media (max-width: 360px) {
    .menu-item {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .item-info {
        margin-right: 0;
        flex: none;
        min-width: auto;
    }
    
    .item-image-space {
        width: 100%;
        height: 120px;
        align-self: center;
        max-width: 200px;
        flex-shrink: 0;
    }
}

/* Small mobile screens - keep horizontal layout with smaller image */
@media (max-width: 480px) and (min-width: 361px) {
    .menu-item {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .item-info {
        flex: 1;
        min-width: 140px;
    }
    
    .item-image-space {
        width: 80px;
        height: 60px;
        flex-shrink: 0;
    }
}

/* Review System Mobile Optimizations */
:root {
    --touch-target-size: 44px;
    --touch-spacing: 8px;
}

/* Write Review Button */
.write-review-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
    padding: 1rem 2rem;
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: var(--touch-target-size);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.write-review-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: left 0.5s ease;
}

.write-review-btn:hover {
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

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

.write-review-btn:focus {
    outline: 3px solid var(--accent-warm, #ffbe0b);
    outline-offset: 3px;
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
}

.write-review-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
}

/* Review Form Container */
.review-form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.review-form h3 {
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-size: 1.5rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

.form-help {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #718096;
}

/* Star Rating Input - Enhanced with Warm Colors */
.star-rating-input {
    display: flex;
    gap: var(--touch-spacing);
    margin: 0.5rem 0;
}

.star {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: var(--touch-target-size);
    min-height: var(--touch-target-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--neutral-gray-300, #cbd5e0);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.star:hover,
.star:focus {
    color: var(--accent-golden, #ffd60a);
    transform: scale(1.15);
    outline: 3px solid var(--primary-orange, #ff6b35);
    outline-offset: 2px;
    filter: drop-shadow(0 2px 4px rgba(255, 214, 10, 0.3));
    text-shadow: 0 0 8px rgba(255, 214, 10, 0.5);
}

.star.active {
    color: var(--accent-golden, #ffd60a);
    filter: drop-shadow(0 2px 4px rgba(255, 214, 10, 0.3));
    text-shadow: 0 0 8px rgba(255, 214, 10, 0.4);
    animation: starPulse 0.3s ease-out;
}

@keyframes starPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Form Inputs - Enhanced with Warm Color Scheme */
.review-text-input,
.reviewer-name-input,
.menu-item-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--neutral-gray-200, #e2e8f0);
    border-radius: 12px;
    font-size: 16px; /* Prevents zoom on iOS */
    font-family: inherit;
    transition: all 0.3s ease;
    min-height: var(--touch-target-size);
    background: white;
    color: var(--neutral-gray-700, #2d3748);
}

.review-text-input {
    min-height: 120px;
    resize: vertical;
}

.review-text-input:focus,
.reviewer-name-input:focus,
.menu-item-select:focus {
    outline: none;
    border-color: var(--primary-orange, #ff6b35);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15), 0 2px 8px rgba(247, 127, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 127, 0, 0.01) 100%);
    transform: translateY(-1px);
}

.review-text-input:hover,
.reviewer-name-input:hover,
.menu-item-select:hover {
    border-color: var(--accent-spice, #fb8500);
    box-shadow: 0 2px 4px rgba(251, 133, 0, 0.1);
}

/* Enhanced form input states */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    border: 2px solid var(--neutral-gray-200, #e2e8f0);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: var(--neutral-gray-700, #2d3748);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-orange, #ff6b35);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15), 0 2px 8px rgba(247, 127, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 127, 0, 0.01) 100%);
    transform: translateY(-1px);
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="url"]:hover,
textarea:hover,
select:hover {
    border-color: var(--accent-spice, #fb8500);
    box-shadow: 0 2px 4px rgba(251, 133, 0, 0.1);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.cancel-btn,
.submit-review-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: var(--touch-target-size);
    min-width: 100px;
}

.cancel-btn {
    background: #f7fafc;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.cancel-btn:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 127, 0, 0.1) 100%);
    border-color: var(--accent-spice, #fb8500);
    color: var(--primary-orange, #ff6b35);
    transform: translateY(-1px);
}

.submit-review-btn {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-review-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: left 0.5s ease;
}

.submit-review-btn:hover {
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

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

.cancel-btn:focus {
    outline: 3px solid var(--primary-orange, #ff6b35);
    outline-offset: 2px;
    border-color: var(--primary-orange, #ff6b35);
}

.submit-review-btn:focus {
    outline: 3px solid var(--accent-warm, #ffbe0b);
    outline-offset: 3px;
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: #48bb78;
}

.notification-error {
    background: #f56565;
}

/* No Reviews State */
.no-reviews {
    text-align: center;
    padding: 3rem 2rem;
    color: #718096;
    font-style: italic;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile Keyboard Adjustments */
body.keyboard-open {
    height: 100vh;
    overflow: hidden;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .review-form-container {
        padding: 1.5rem;
        margin: 0 -1rem 2rem;
        border-radius: 0;
    }
    
    .star-rating-input {
        justify-content: center;
        gap: 4px;
    }
    
    .star {
        font-size: 1.8rem;
        min-width: 40px;
        min-height: 40px;
    }
    
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .cancel-btn,
    .submit-review-btn {
        width: 100%;
        justify-content: center;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .review-form-container {
        padding: 1rem;
    }
    
    .star {
        font-size: 1.5rem;
        min-width: 36px;
        min-height: 36px;
    }
    
    .write-review-btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* High Contrast Mode Support with Warm Colors */
@media (prefers-contrast: high) {
    .star {
        border: 2px solid currentColor;
    }
    
    .star.active {
        background: var(--accent-golden, #ffd60a);
        color: #000;
    }
    
    .review-text-input:focus,
    .reviewer-name-input:focus,
    .menu-item-select:focus,
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    input[type="url"]:focus,
    textarea:focus,
    select:focus {
        border-width: 3px;
        border-color: var(--primary-orange, #ff6b35);
    }
    
    .order-links a,
    .social-links a,
    .facebook-btn,
    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }
    
    /* Enhanced Order Now section high contrast support */
    .order-now-section {
        border: 3px solid white;
        background: #000 !important;
        color: white !important;
    }
    
    .order-now-section h2 {
        color: white !important;
        background: none !important;
        -webkit-text-fill-color: white !important;
        text-shadow: none !important;
    }
    
    .order-details {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 2px solid white !important;
    }
    
    .detail-item {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    .order-now-section .order-links a {
        background: white !important;
        color: #000 !important;
        border: 2px solid #000 !important;
        text-shadow: none !important;
    }
    
    .order-now-section .order-links a:hover,
    .order-now-section .order-links a:focus {
        background: #000 !important;
        color: white !important;
        border: 2px solid white !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .star,
    .write-review-btn,
    .cancel-btn,
    .submit-review-btn,
    .notification {
        transition: none;
    }
    
    .star:hover,
    .star:focus {
        transform: none;
    }
    
    .write-review-btn:hover,
    .submit-review-btn:hover {
        transform: none;
    }
}/* Enhan
ced Accessibility Features */

/* Focus Management with Warm Color Scheme */
.review-system-focus {
    outline: 3px solid var(--primary-orange, #ff6b35) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.2) !important;
}

/* Interactive Element Enhancement */
a, button, input, textarea, select, [role="button"], [tabindex="0"] {
    transition: all 0.3s ease;
}

/* Enhanced Interactive Feedback */
.interactive-element {
    position: relative;
    overflow: hidden;
}

.interactive-element::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    pointer-events: none;
    border-radius: 50%;
}

.interactive-element:active::after {
    width: 200px;
    height: 200px;
}

/* Touch Target Enhancement */
@media (pointer: coarse) {
    a, button, input[type="button"], input[type="submit"], [role="button"] {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 16px;
    }
    
    .star {
        min-width: 48px;
        min-height: 48px;
    }
}

/* Skip Links - Hidden by default, visible on focus */
.skip-link {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: #667eea;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    position: absolute;
    top: 6px;
    left: 6px;
    width: auto;
    height: auto;
    overflow: visible;
}

/* Enhanced Review Card Accessibility */
.review-card:focus {
    outline: 3px solid var(--primary-orange, #ff6b35);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.2);
}

.review-card[tabindex="0"] {
    cursor: pointer;
}

/* Fieldset Styling for Star Rating */
fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

legend.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Time Element Styling */
time {
    font-style: normal;
}

/* Menu Item Tag Accessibility */
.menu-item-tag {
    background: #f0f4ff;
    color: #667eea;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Enhanced Button States with Warm Color Scheme */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--neutral-gray-300, #cbd5e0) !important;
    color: var(--neutral-gray-500, #718096) !important;
}

button:disabled:focus {
    outline: 2px solid var(--neutral-gray-400, #a0aec0);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    position: relative;
    overflow: hidden;
}

.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: left 0.5s ease;
}

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

.btn-primary {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-1px);
}

/* Highlights Section */
.highlights-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 127, 0, 0.03) 50%, #ffffff 100%);
    border-top: 3px solid var(--accent-golden, #ffd60a);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(247, 127, 0, 0.1), 0 2px 8px rgba(255, 107, 53, 0.15);
    border: 2px solid rgba(251, 133, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(247, 127, 0, 0.2), 0 4px 16px rgba(255, 107, 53, 0.25);
    border-color: var(--accent-spice, #fb8500);
}

.highlight-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(247, 127, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--neutral-gray-800, #1a202c);
    margin-bottom: 1rem;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-card p {
    font-family: 'Poppins', sans-serif;
    color: var(--neutral-gray-600, #4a5568);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.05) 0%, rgba(247, 127, 0, 0.03) 50%, #ffffff 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--neutral-gray-800, #1a202c);
    margin-bottom: 1.5rem;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--neutral-gray-600, #4a5568);
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(247, 127, 0, 0.08), 0 1px 3px rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(251, 133, 0, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(247, 127, 0, 0.15), 0 4px 12px rgba(255, 107, 53, 0.2);
    border-color: var(--accent-spice, #fb8500);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral-gray-800, #1a202c);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-family: 'Poppins', sans-serif;
    color: var(--neutral-gray-600, #4a5568);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Value for Money Icon - Override broken character */
.feature-item:nth-child(4) .feature-icon {
    font-size: 0;
}

.feature-item:nth-child(4) .feature-icon::after {
    content: "💵";
    font-size: 3rem;
    display: block;
}

/* Highlight Feature Items */
.feature-item.highlight-feature {
    border: 2px solid var(--accent-spice, #fb8500);
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
    position: relative;
}

.feature-item.highlight-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    border-radius: 12px 12px 0 0;
}

.feature-item.highlight-feature .feature-icon {
    font-size: 3.5rem;
    animation: highlightFloat 3s ease-in-out infinite;
}

@keyframes highlightFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.feature-item.highlight-feature h4 {
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.feature-item.highlight-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(247, 127, 0, 0.2), 0 4px 12px rgba(255, 107, 53, 0.25);
    border-color: var(--primary-orange, #ff6b35);
}

/* General Button Enhancement Class */
.btn-primary {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px;
    position: relative;
    overflow: hidden;
}

.btn-primary::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: left 0.5s ease;
}

.btn-primary:hover {
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

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

.btn-primary:focus {
    outline: 3px solid var(--accent-warm, #ffbe0b);
    outline-offset: 3px;
    background: var(--gradient-spice, linear-gradient(135deg, #e63946 0%, #ff6b35 100%));
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    color: white;
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(247, 127, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px;
}

.btn-secondary:hover {
    background: var(--gradient-sunset, linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%));
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:focus {
    outline: 3px solid var(--primary-orange, #ff6b35);
    outline-offset: 2px;
}

/* Form Validation States with Warm Color Scheme */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: var(--primary-red, #e63946);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15), 0 2px 8px rgba(230, 57, 70, 0.1);
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.02) 0%, rgba(245, 101, 101, 0.01) 100%);
}

.form-group.error .form-help {
    color: var(--primary-red, #e63946);
    font-weight: 500;
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: var(--accent-spice, #fb8500);
    box-shadow: 0 0 0 3px rgba(251, 133, 0, 0.15), 0 2px 8px rgba(247, 127, 0, 0.1);
    background: linear-gradient(135deg, rgba(251, 133, 0, 0.02) 0%, rgba(247, 127, 0, 0.01) 100%);
}

.form-group.success .form-help {
    color: var(--accent-spice, #fb8500);
    font-weight: 500;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #e2e8f0;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error States */
.error-message {
    color: #f56565;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.error-message::before {
    content: '⚠️';
    font-size: 1rem;
}

/* Success States */
.success-message {
    color: #48bb78;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.success-message::before {
    content: '✅';
    font-size: 1rem;
}

/* Windows High Contrast Mode */
@media screen and (-ms-high-contrast: active) {
    .star {
        border: 2px solid;
    }
    
    .star.active {
        background: highlight;
        color: highlighttext;
    }
    
    .review-card:focus {
        outline: 2px solid highlight;
    }
    
    .write-review-btn:focus,
    .submit-review-btn:focus,
    .cancel-btn:focus,
    .order-links a:focus,
    .social-links a:focus,
    .facebook-btn:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid highlight;
    }
    
    /* Order Now section Windows High Contrast support */
    .order-now-section {
        background: window !important;
        color: windowtext !important;
        border: 2px solid windowtext !important;
    }
    
    .order-now-section h2 {
        color: windowtext !important;
        background: none !important;
        -webkit-text-fill-color: windowtext !important;
    }
    
    .order-details {
        background: window !important;
        border: 1px solid windowtext !important;
    }
    
    .detail-item {
        background: window !important;
        border: 1px solid windowtext !important;
        color: windowtext !important;
    }
    
    .order-now-section .order-links a {
        background: buttonface !important;
        color: buttontext !important;
        border: 2px solid buttontext !important;
    }
    
    .order-now-section .order-links a:hover,
    .order-now-section .order-links a:focus {
        background: highlight !important;
        color: highlighttext !important;
        border: 2px solid highlighttext !important;
    }
}

/* Forced Colors Mode (Windows High Contrast) */
@media (forced-colors: active) {
    .star {
        border: 1px solid;
        forced-color-adjust: none;
    }
    
    .star.active {
        background: highlight;
        color: highlighttext;
        border-color: highlight;
    }
    
    .notification {
        border: 1px solid;
        forced-color-adjust: none;
    }
    
    /* Order Now section Forced Colors support */
    .order-now-section {
        background: canvas !important;
        color: canvastext !important;
        border: 2px solid canvastext !important;
        forced-color-adjust: none;
    }
    
    .order-now-section h2 {
        color: canvastext !important;
        background: none !important;
        -webkit-text-fill-color: canvastext !important;
        forced-color-adjust: none;
    }
    
    .order-details {
        background: canvas !important;
        border: 1px solid canvastext !important;
        forced-color-adjust: none;
    }
    
    .detail-item {
        background: canvas !important;
        border: 1px solid canvastext !important;
        color: canvastext !important;
        forced-color-adjust: none;
    }
    
    .order-now-section .order-links a {
        background: buttonface !important;
        color: buttontext !important;
        border: 2px solid buttontext !important;
        forced-color-adjust: none;
    }
    
    .order-now-section .order-links a:hover,
    .order-now-section .order-links a:focus {
        background: highlight !important;
        color: highlighttext !important;
        border: 2px solid highlighttext !important;
        forced-color-adjust: none;
    }
}

/* Print Styles */
@media print {
    .write-review-btn,
    .review-form-container,
    .notification {
        display: none !important;
    }
    
    .review-card {
        break-inside: avoid;
        margin-bottom: 1rem;
        border: 1px solid #000;
    }
    
    .stars {
        color: #000 !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .review-form-container {
        background: #2d3748;
        color: #f7fafc;
        border-color: #4a5568;
    }
    
    .review-text-input,
    .reviewer-name-input,
    .menu-item-select,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    textarea,
    select {
        background: #4a5568;
        color: #f7fafc;
        border-color: #718096;
    }
    
    .review-text-input:focus,
    .reviewer-name-input:focus,
    .menu-item-select:focus,
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    input[type="url"]:focus,
    textarea:focus,
    select:focus {
        border-color: var(--primary-orange, #ff6b35);
        background: #2d3748;
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2), 0 2px 8px rgba(247, 127, 0, 0.15);
    }
    
    .form-label {
        color: #f7fafc;
    }
    
    .form-help {
        color: #a0aec0;
    }
    
    .cancel-btn {
        background: #4a5568;
        color: #f7fafc;
        border-color: #718096;
    }
    
    .cancel-btn:hover {
        background: #2d3748;
    }
    
    .menu-item-tag {
        background: #4a5568;
        color: #90cdf4;
    }
}

/* Performance Optimization Styles */

/* Loading States for Performance */
.reviews-grid.loading {
    position: relative;
    min-height: 200px;
}

.reviews-grid.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #e2e8f0;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Load More Trigger (Hidden) */
.load-more-trigger {
    height: 1px;
    visibility: hidden;
    pointer-events: none;
}

/* Skeleton Loading for Performance */
.review-skeleton {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.skeleton-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.skeleton-stars {
    width: 120px;
    height: 20px;
    background: #e2e8f0;
    border-radius: 4px;
}

.skeleton-date {
    width: 80px;
    height: 16px;
    background: #e2e8f0;
    border-radius: 4px;
}

.skeleton-text {
    width: 100%;
    height: 60px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.skeleton-name {
    width: 100px;
    height: 16px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-left: auto;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Virtual Scrolling Container */
.virtual-scroll-container {
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
}

.virtual-scroll-spacer {
    height: 1px;
    background: transparent;
}

/* Performance Indicators */
.performance-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.performance-indicator.show {
    opacity: 1;
    transform: translateY(0);
}

/* Optimized Grid Layout */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Content Visibility for Performance - Removed for static content compatibility */

/* Lazy Loading Images */
img[data-src] {
    background: #f7fafc;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

img[data-src]::before {
    content: '📷';
    font-size: 2rem;
    opacity: 0.3;
}

/* Intersection Observer Fallback */
.no-intersection-observer .load-more-btn {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.no-intersection-observer .load-more-btn:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.no-intersection-observer .load-more-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-card {
        contain-intrinsic-size: 180px;
    }
    
    .virtual-scroll-container {
        max-height: 70vh;
    }
    
    .performance-indicator {
        bottom: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
    }
}

/* Reduced Motion Performance */
@media (prefers-reduced-motion: reduce) {
    .review-skeleton,
    .performance-indicator {
        animation: none;
        transition: none;
    }
    
    .reviews-grid.loading::after {
        animation: none;
        border: 3px solid #667eea;
    }
}

/* GPU Acceleration for Smooth Scrolling */
.reviews-grid,
.review-card,
.virtual-scroll-container {
    transform: translateZ(0);
    will-change: transform;
}

/* Memory Efficient Styles - Removed problematic rule that hides static reviews */

/* Critical Performance CSS - Removed for static content compatibility */

/* Efficient Transitions */
.review-card,
.write-review-btn,
.submit-review-btn {
    transition-property: transform, box-shadow, opacity;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}

/* Optimize for Large Datasets - Removed for static content compatibility */

/* Container Queries for Performance */
@supports (container-type: inline-size) {
    .reviews-grid {
        container-type: inline-size;
    }
    
    @container (max-width: 600px) {
        .review-card {
            contain-intrinsic-size: 160px;
        }
    }
}
/*
 Enhanced Accessibility Compliance - Task 8.1 Implementation */

/* Improved Focus Management with Enhanced Visibility */
*:focus {
    outline: 3px solid var(--primary-orange, #ff6b35) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.2) !important;
    transition: outline 0.2s ease, box-shadow 0.2s ease !important;
}

/* Enhanced focus for interactive elements */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[role="button"]:focus,
[tabindex]:focus {
    outline: 3px solid var(--primary-orange, #ff6b35) !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.25) !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Special focus treatment for buttons with gradients */
.btn-primary:focus,
.order-links a:focus,
.social-links a:focus,
.facebook-btn:focus,
.nav-links a.order-now-nav:focus {
    outline: 4px solid var(--accent-warm, #ffbe0b) !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 0 8px rgba(255, 190, 11, 0.3) !important;
}

/* Enhanced contrast for text elements */
body {
    color: var(--neutral-gray-700, #2d3748);
    background: var(--neutral-light, #f7fafc);
}

/* Ensure minimum contrast ratios are met */
.menu-item .item-name {
    color: var(--neutral-gray-800, #1a202c);
    font-weight: 600;
}

.menu-item .item-description {
    color: var(--neutral-gray-600, #4a5568);
    font-weight: 500;
}

/* Enhanced link contrast */
a:not(.btn-primary):not(.btn-secondary):not(.order-links a):not(.social-links a):not(.facebook-btn) {
    color: var(--primary-orange, #ff6b35);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

a:not(.btn-primary):not(.btn-secondary):not(.order-links a):not(.social-links a):not(.facebook-btn):hover {
    color: var(--primary-red, #e63946);
    text-decoration-thickness: 3px;
}

/* Improved form accessibility */
input, textarea, select {
    border: 2px solid var(--neutral-gray-300, #cbd5e0);
    background: var(--neutral-white, #ffffff);
    color: var(--neutral-gray-800, #1a202c);
    font-size: 16px; /* Prevents zoom on iOS */
    line-height: 1.5;
    padding: 12px 16px;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-orange, #ff6b35);
    background: var(--neutral-white, #ffffff);
    color: var(--neutral-gray-800, #1a202c);
}

/* Error and success states with sufficient contrast */
.error, [aria-invalid="true"] {
    border-color: #dc3545 !important;
    color: #721c24 !important;
    background: #f8d7da !important;
}

.success, .valid {
    border-color: #28a745 !important;
    color: #155724 !important;
    background: #d4edda !important;
}

/* Enhanced button states for better accessibility */
button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled {
    background: var(--neutral-gray-300, #cbd5e0) !important;
    color: var(--neutral-gray-600, #4a5568) !important;
    border-color: var(--neutral-gray-300, #cbd5e0) !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

/* Improved skip links */
.skip-link {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: var(--neutral-gray-800, #1a202c);
    color: var(--neutral-white, #ffffff);
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-orange, #ff6b35);
}

.skip-link:focus {
    position: absolute;
    top: 6px;
    left: 6px;
    width: auto;
    height: auto;
    overflow: visible;
    outline: 3px solid var(--accent-warm, #ffbe0b);
    outline-offset: 2px;
}

/* Enhanced high contrast mode support */
@media (prefers-contrast: high) {
    /* Force high contrast colors */
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }
    
    .hero {
        background: #000000 !important;
        color: #ffffff !important;
    }
    
    .menu-item {
        background: #ffffff !important;
        border: 2px solid #000000 !important;
        color: #000000 !important;
    }
    
    .menu-item .item-name {
        color: #000000 !important;
    }
    
    .menu-item .item-price {
        color: #000000 !important;
        font-weight: 700 !important;
    }
    
    .menu-item .item-description {
        color: #333333 !important;
    }
    
    /* High contrast buttons */
    button, .btn-primary, .btn-secondary {
        background: #000000 !important;
        color: #ffffff !important;
        border: 2px solid #ffffff !important;
    }
    
    button:hover, .btn-primary:hover, .btn-secondary:hover {
        background: #ffffff !important;
        color: #000000 !important;
        border: 2px solid #000000 !important;
    }
    
    /* High contrast links */
    a {
        color: #0000ff !important;
        text-decoration: underline !important;
    }
    
    a:visited {
        color: #800080 !important;
    }
    
    a:hover, a:focus {
        color: #ff0000 !important;
        background: #ffff00 !important;
    }
    
    /* High contrast navigation */
    .main-nav {
        background: #ffffff !important;
        border-bottom: 2px solid #000000 !important;
    }
    
    .nav-brand a {
        color: #000000 !important;
        background: none !important;
        -webkit-text-fill-color: #000000 !important;
    }
    
    .nav-links a {
        color: #000000 !important;
        background: none !important;
    }
    
    .nav-links a:hover, .nav-links a:focus {
        background: #000000 !important;
        color: #ffffff !important;
    }
    
    /* High contrast order section */
    .order-now-section {
        background: #000000 !important;
        color: #ffffff !important;
        border: 3px solid #ffffff !important;
    }
    
    .order-now-section h2 {
        color: #ffffff !important;
        background: none !important;
        -webkit-text-fill-color: #ffffff !important;
    }
    
    .order-details {
        background: #333333 !important;
        border: 2px solid #ffffff !important;
    }
    
    .detail-item {
        background: #444444 !important;
        color: #ffffff !important;
        border: 1px solid #ffffff !important;
    }
    
    /* High contrast reviews */
    .review-card {
        background: #ffffff !important;
        border: 2px solid #000000 !important;
        color: #000000 !important;
    }
    
    .stars {
        color: #000000 !important;
        text-shadow: none !important;
    }
    
    .reviewer-name {
        color: #000000 !important;
    }
}

/* Enhanced Windows High Contrast Mode */
@media screen and (-ms-high-contrast: active) {
    /* Use system colors for maximum compatibility */
    body {
        background: window !important;
        color: windowtext !important;
    }
    
    .hero {
        background: highlight !important;
        color: highlighttext !important;
    }
    
    button, .btn-primary, .btn-secondary {
        background: buttonface !important;
        color: buttontext !important;
        border: 2px solid buttontext !important;
    }
    
    button:hover, button:focus {
        background: highlight !important;
        color: highlighttext !important;
        border: 2px solid highlighttext !important;
    }
    
    a {
        color: linktext !important;
    }
    
    a:visited {
        color: visitedtext !important;
    }
    
    a:hover, a:focus {
        background: highlight !important;
        color: highlighttext !important;
    }
    
    input, textarea, select {
        background: window !important;
        color: windowtext !important;
        border: 2px solid windowtext !important;
    }
    
    input:focus, textarea:focus, select:focus {
        background: highlight !important;
        color: highlighttext !important;
        border: 2px solid highlighttext !important;
    }
}

/* Forced Colors Mode (Modern Windows High Contrast) */
@media (forced-colors: active) {
    /* Let the system handle colors */
    * {
        forced-color-adjust: auto;
    }
    
    /* Preserve important visual elements */
    .hero-logo-svg,
    .nav-brand .logo {
        forced-color-adjust: none;
        filter: none !important;
    }
    
    /* Ensure borders are visible */
    .menu-item,
    .review-card,
    .order-details,
    .detail-item {
        border: 1px solid !important;
    }
    
    /* Maintain button styling */
    button, .btn-primary, .btn-secondary {
        border: 2px solid !important;
        forced-color-adjust: none;
    }
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
    /* Remove all animations and transitions */
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Remove transform animations */
    .hero-logo-svg,
    .nav-brand .logo,
    .menu-item:hover,
    .review-card:hover,
    button:hover,
    a:hover {
        transform: none !important;
    }
    
    /* Remove gradient animations */
    .order-now-section::after,
    .facebook-btn::before,
    .btn-primary::before {
        animation: none !important;
    }
}

/* Enhanced Color Vision Accessibility */
/* Ensure information is not conveyed by color alone */

/* Add text indicators for required fields */
input[required]::after,
textarea[required]::after,
select[required]::after {
    content: " (required)";
    color: var(--neutral-gray-600, #4a5568);
    font-size: 0.875rem;
}

/* Removed featured item star symbols */

/* Error states with text indicators */
.error::before,
[aria-invalid="true"]::before {
    content: "⚠️ Error: ";
    font-weight: 600;
}

.success::before,
.valid::before {
    content: "✅ Success: ";
    font-weight: 600;
}

/* Enhanced touch targets for mobile */
@media (pointer: coarse) {
    /* Ensure all interactive elements meet 44px minimum */
    a, button, input, textarea, select, [role="button"], [tabindex]:not([tabindex="-1"]) {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 16px;
    }
    
    /* Special handling for small elements */
    .stars button,
    .star {
        min-width: 48px;
        min-height: 48px;
        padding: 8px;
    }
    
    /* Increase spacing between touch targets */
    .nav-links {
        gap: 12px;
    }
    
    .order-links,
    .social-links {
        gap: 16px;
    }
}

/* Print accessibility */
@media print {
    /* Ensure good contrast in print */
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        border: 2px solid black !important;
    }
    
    .menu-item {
        border: 1px solid black !important;
        background: white !important;
        color: black !important;
    }
    
    .menu-item .item-price {
        color: black !important;
        font-weight: 700 !important;
    }
    
    /* Hide decorative elements */
    .hero-logo-svg,
    .nav-brand .logo {
        display: none !important;
    }
    
    /* Ensure links are identifiable */
    a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}

/* Screen reader optimizations */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus trap for modal-like content */
.focus-trap {
    position: relative;
}

.focus-trap::before,
.focus-trap::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Keyboard navigation indicators */
[data-focused="true"] {
    position: relative;
    z-index: 10;
}

/* Enhanced aria-live regions */
[aria-live] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

[aria-live].show-live {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
}

/* Improved table accessibility (if tables are added) */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid var(--neutral-gray-300, #cbd5e0);
    padding: 12px;
    text-align: left;
}

th {
    background: var(--neutral-gray-100, #f8faff);
    font-weight: 600;
    color: var(--neutral-gray-800, #1a202c);
}

/* Caption styling */
caption {
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
    color: var(--neutral-gray-700, #2d3748);
}

/* Enhanced list accessibility */
ul, ol {
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Definition list styling */
dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.5rem 1rem;
}

dt {
    font-weight: 600;
    color: var(--neutral-gray-700, #2d3748);
}

dd {
    margin: 0;
    color: var(--neutral-gray-600, #4a5568);
}

/* Enhanced form fieldset styling */
fieldset {
    border: 2px solid var(--neutral-gray-300, #cbd5e0);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

legend {
    font-weight: 600;
    color: var(--neutral-gray-700, #2d3748);
    padding: 0 0.5rem;
}

/* Progress and meter elements */
progress, meter {
    width: 100%;
    height: 24px;
    border: 1px solid var(--neutral-gray-300, #cbd5e0);
    border-radius: 4px;
    background: var(--neutral-gray-100, #f8faff);
}

progress::-webkit-progress-bar,
meter::-webkit-meter-bar {
    background: var(--neutral-gray-100, #f8faff);
    border-radius: 4px;
}

progress::-webkit-progress-value,
meter::-webkit-meter-optimum-value {
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    border-radius: 4px;
}

/* Enhanced details/summary accessibility */
details {
    border: 1px solid var(--neutral-gray-300, #cbd5e0);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

summary {
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 4px;
    color: var(--primary-orange, #ff6b35);
}

summary:hover {
    background: rgba(255, 107, 53, 0.1);
}

summary:focus {
    outline: 2px solid var(--primary-orange, #ff6b35);
    outline-offset: 2px;
}

/* Mark element for highlighting */
mark {
    background: var(--accent-warm, #ffbe0b);
    color: var(--neutral-gray-800, #1a202c);
    padding: 0.125rem 0.25rem;
    border-radius: 2px;
}

/* Enhanced abbreviation styling */
abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 1px dotted var(--neutral-gray-500, #718096);
}

/* Code and pre elements */
code {
    background: var(--neutral-gray-100, #f8faff);
    color: var(--neutral-gray-800, #1a202c);
    padding: 0.125rem 0.25rem;
    border-radius: 2px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

pre {
    background: var(--neutral-gray-100, #f8faff);
    color: var(--neutral-gray-800, #1a202c);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid var(--neutral-gray-300, #cbd5e0);
}

pre code {
    background: none;
    padding: 0;
}

/* Blockquote styling */
blockquote {
    border-left: 4px solid var(--primary-orange, #ff6b35);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: var(--neutral-gray-600, #4a5568);
}

blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--neutral-gray-700, #2d3748);
}

/* Enhanced time element */
time {
    font-variant-numeric: tabular-nums;
}

/* Address element */
address {
    font-style: normal;
    line-height: 1.6;
    color: var(--neutral-gray-600, #4a5568);
}

/* Enhanced horizontal rule */
hr {
    border: none;
    height: 2px;
    background: var(--gradient-warm, linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%));
    margin: 2rem 0;
    border-radius: 1px;
}

/* Accessibility testing indicator */
.accessibility-tested {
    position: relative;
}

.accessibility-tested::after {
    content: "♿ Accessibility Tested";
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: var(--primary-orange, #ff6b35);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1000;
    opacity: 0.8;
    pointer-events: none;
}

/* Add accessibility tested class to body */
body {
    /* This will be added by JavaScript after tests complete */
}/* P
erformance and Browser Compatibility Enhancements - Task 8.2 Implementation */

/* Enhanced Browser Compatibility with Comprehensive Fallbacks */

/* CSS Custom Properties Fallbacks for IE and older browsers */
@supports not (color: var(--primary-orange)) {
    /* Fallback color system for browsers without CSS custom properties */
    body {
        color: #2d3748;
        background-color: #f7fafc;
    }
    
    .nav-brand a {
        color: #f77f00;
        background: none;
        -webkit-text-fill-color: unset;
    }
    
    .nav-links a:hover {
        color: #ff6b35;
        background: rgba(255, 107, 53, 0.1);
    }
    
    .nav-links a.order-now-nav {
        background: #ff6b35;
        color: white !important;
    }
    
    .nav-links a.order-now-nav:hover {
        background: #e63946;
        color: white !important;
    }
    
    .hero {
        background: #ff6b35;
        background: -webkit-linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%);
        background: -moz-linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%);
        background: -o-linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%);
        background: linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%);
    }
    
    .menu-category h3 {
        color: #f77f00;
        background: none;
        -webkit-text-fill-color: unset;
    }
    
    .item-price {
        color: #ff6b35;
    }
    
    .menu-item:hover .item-price {
        color: #e63946;
    }
    
    .order-now-section {
        background: #ffffff;
        background: -webkit-linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
        background: -moz-linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
        background: -o-linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
        background: linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
    }
    
    .order-links a,
    .social-links a {
        background: #f77f00;
        background: -webkit-linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%);
        background: -moz-linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%);
        background: -o-linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%);
        background: linear-gradient(135deg, #f77f00 0%, #ffbe0b 100%);
    }
    
    .order-links a:hover,
    .social-links a:hover {
        background: #e63946;
        background: -webkit-linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
        background: -moz-linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
        background: -o-linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
        background: linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
    }
    
    .facebook-btn {
        background: #ff6b35;
        background: -webkit-linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%);
        background: -moz-linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%);
        background: -o-linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%);
        background: linear-gradient(135deg, #ff6b35 0%, #f77f00 50%, #ffbe0b 100%);
    }
    
    .facebook-btn:hover {
        background: #e63946;
        background: -webkit-linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
        background: -moz-linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
        background: -o-linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
        background: linear-gradient(135deg, #e63946 0%, #ff6b35 100%);
    }
    
    .stars {
        color: #ffd60a;
    }
    
    .reviewer-name {
        color: #ff6b35;
    }
    
    .menu-item.featured {
        border-color: #ffd60a;
        background: rgba(255, 214, 10, 0.08);
    }
}

/* Gradient Fallbacks for older browsers */
.hero {
    /* Fallback for very old browsers */
    background-color: #ff6b35;
    /* Webkit browsers */
    background: -webkit-gradient(linear, left top, right bottom, from(#ff6b35), color-stop(50%, #e63946), to(#f77f00));
    background: -webkit-linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%);
    /* Mozilla browsers */
    background: -moz-linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%);
    /* Opera browsers */
    background: -o-linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%);
    /* IE10+ */
    background: -ms-linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%);
    /* Standard */
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 50%, #f77f00 100%);
}

.order-now-section {
    background-color: #ffffff;
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(255, 214, 10, 0.08)), color-stop(50%, rgba(247, 127, 0, 0.05)), to(#ffffff));
    background: -webkit-linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
    background: -moz-linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
    background: -o-linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
    background: -ms-linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
}

/* Flexbox Fallbacks */
@supports not (display: flex) {
    .nav-container {
        display: table;
        width: 100%;
    }
    
    .nav-brand,
    .nav-links {
        display: table-cell;
        vertical-align: middle;
    }
    
    .nav-links {
        text-align: right;
    }
    
    .nav-links li {
        display: inline-block;
        margin-left: 1rem;
    }
    
    .order-links,
    .social-links {
        text-align: center;
    }
    
    .order-links a,
    .social-links a {
        display: inline-block;
        margin: 0.5rem;
    }
    
    .facebook-buttons {
        text-align: center;
    }
    
    .facebook-btn {
        display: inline-block;
        margin: 0.5rem;
    }
}

/* CSS Grid Fallbacks */
@supports not (display: grid) {
    .reviews-grid {
        display: block;
    }
    
    .review-card {
        display: inline-block;
        width: 300px;
        vertical-align: top;
        margin: 0 1rem 2rem 0;
    }
    
    /* Use flexbox as fallback if available */
    @supports (display: flex) {
        .reviews-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
        .review-card {
            flex: 1 1 300px;
            margin: 0;
        }
    }
}

/* Transform Fallbacks */
@supports not (transform: translateY(-2px)) {
    .menu-item:hover,
    .review-card:hover,
    .order-links a:hover,
    .social-links a:hover,
    .facebook-btn:hover {
        margin-top: -2px;
        margin-bottom: 2px;
    }
    
    .nav-links a.order-now-nav:hover {
        margin-top: -2px;
        margin-bottom: 2px;
    }
}

/* Performance Optimizations */

/* GPU Acceleration for smooth animations */
.hero-logo-svg,
.nav-brand .logo,
.menu-item,
.review-card,
.order-links a,
.social-links a,
.facebook-btn,
.btn-primary,
.btn-secondary {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

/* Optimize animations for performance */
@keyframes logoFloat {
    0%, 100% {
        -webkit-transform: translateY(0px) translateZ(0);
        transform: translateY(0px) translateZ(0);
    }
    50% {
        -webkit-transform: translateY(-10px) translateZ(0);
        transform: translateY(-10px) translateZ(0);
    }
}

@keyframes logoGlow {
    0% {
        -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
    }
    100% {
        -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 30px rgba(247, 127, 0, 0.5)) drop-shadow(0 0 40px rgba(255, 190, 11, 0.3));
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 30px rgba(247, 127, 0, 0.5)) drop-shadow(0 0 40px rgba(255, 190, 11, 0.3));
    }
}

/* Optimize transitions for better performance */
.menu-item,
.review-card,
.order-links a,
.social-links a,
.facebook-btn,
.nav-links a {
    -webkit-transition-property: transform, box-shadow, opacity, background-color;
    -moz-transition-property: transform, box-shadow, opacity, background-color;
    -o-transition-property: transform, box-shadow, opacity, background-color;
    transition-property: transform, box-shadow, opacity, background-color;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

/* Contain layout shifts */
.hero-logo-svg,
.nav-brand .logo {
    contain: layout style paint;
}

.menu-item,
.review-card {
    contain: layout style;
}

/* Optimize font loading */
@font-face {
    font-family: 'system-ui-fallback';
    src: local('system-ui'), local('-apple-system'), local('BlinkMacSystemFont'), local('Segoe UI'), local('Roboto'), local('sans-serif');
    font-display: swap;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'system-ui-fallback';
}

/* Optimize images and media */
img {
    max-width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Lazy loading support */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Reduce motion for performance on low-end devices */
@media (prefers-reduced-motion: reduce) {
    .hero-logo-svg,
    .nav-brand .logo {
        animation: none !important;
    }
    
    .order-now-section::after,
    .facebook-btn::before,
    .btn-primary::before {
        animation: none !important;
    }
    
    *, *::before, *::after {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Internet Explorer specific fixes */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* IE10+ specific styles */
    .nav-container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .nav-links {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    
    .order-links,
    .social-links {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .facebook-buttons {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    /* Remove unsupported properties in IE */
    .hero-logo-svg,
    .nav-brand .logo {
        filter: none;
        animation: none;
    }
    
    .order-now-section::after,
    .facebook-btn::before,
    .btn-primary::before {
        display: none;
    }
    
    /* Simplify gradients for IE */
    .hero {
        background: #ff6b35;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6b35', endColorstr='#f77f00');
    }
    
    .order-now-section {
        background: #ffffff;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#fff3cd');
    }
}

/* Safari specific optimizations */
@supports (-webkit-appearance: none) {
    /* Safari-specific styles */
    .hero-logo-svg,
    .nav-brand .logo {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Fix Safari gradient rendering issues */
    .hero,
    .order-now-section {
        -webkit-background-size: 100% 100%;
        background-size: 100% 100%;
    }
    
    /* Optimize Safari scrolling */
    .reviews-grid {
        -webkit-overflow-scrolling: touch;
    }
}

/* Firefox specific optimizations */
@-moz-document url-prefix() {
    /* Firefox-specific styles */
    .hero-logo-svg,
    .nav-brand .logo {
        -moz-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Fix Firefox gradient performance */
    .hero,
    .order-now-section {
        background-attachment: fixed;
    }
}

/* Edge specific optimizations */
@supports (-ms-ime-align: auto) {
    /* Edge-specific styles */
    .reviews-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .review-card:nth-child(1) { -ms-grid-column: 1; }
    .review-card:nth-child(2) { -ms-grid-column: 2; }
    .review-card:nth-child(3) { -ms-grid-column: 3; }
    .review-card:nth-child(4) { -ms-grid-column: 1; -ms-grid-row: 2; }
    .review-card:nth-child(5) { -ms-grid-column: 2; -ms-grid-row: 2; }
    .review-card:nth-child(6) { -ms-grid-column: 3; -ms-grid-row: 2; }
}

/* Mobile browser optimizations */
@media (max-width: 768px) {
    /* Optimize for mobile performance */
    .hero-logo-svg,
    .nav-brand .logo {
        will-change: auto;
        animation: none;
    }
    
    .menu-item:hover,
    .review-card:hover {
        transform: none;
    }
    
    /* Reduce complexity on mobile */
    .order-now-section::after,
    .facebook-btn::before,
    .btn-primary::before {
        display: none;
    }
    
    /* Optimize touch interactions */
    .order-links a,
    .social-links a,
    .facebook-btn,
    .nav-links a {
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.3);
        tap-highlight-color: rgba(255, 107, 53, 0.3);
    }
}

/* Print optimizations */
@media print {
    /* Remove animations and transitions for print */
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        filter: none !important;
        box-shadow: none !important;
    }
    
    /* Optimize colors for print */
    .hero {
        background: #ff6b35 !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    
    .menu-item .item-price {
        color: #000 !important;
        font-weight: 700 !important;
    }
    
    .stars {
        color: #000 !important;
    }
}

/* Critical CSS loading optimization */
.critical-css-loaded .hero-logo-svg {
    animation: logoFloat 3s ease-in-out infinite, logoGlow 4s ease-in-out infinite alternate;
}

.critical-css-loaded .order-now-section {
    animation: orderPulse 3s ease-in-out infinite;
}

/* Preload critical resources */
.preload-fonts {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Container queries for modern browsers */
@supports (container-type: inline-size) {
    .reviews-section {
        container-type: inline-size;
    }
    
    @container (max-width: 600px) {
        .reviews-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @container (min-width: 601px) and (max-width: 900px) {
        .reviews-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @container (min-width: 901px) {
        .reviews-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

/* Modern CSS features with fallbacks */
@supports (backdrop-filter: blur(10px)) {
    .order-details {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
}

@supports not (backdrop-filter: blur(10px)) {
    .order-details {
        background: rgba(255, 255, 255, 0.9);
    }
}

/* Intersection Observer fallback */
.no-intersection-observer .lazy-load {
    opacity: 1;
}

/* Service Worker support indicator */
.sw-supported::after {
    content: "⚡ Enhanced Performance";
    position: fixed;
    bottom: 50px;
    right: 10px;
    background: rgba(72, 187, 120, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    z-index: 999;
    opacity: 0.7;
}

/* Performance monitoring styles */
.perf-monitor {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.7rem;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.perf-monitor.show {
    opacity: 1;
}

/* Memory usage optimization */
.memory-efficient * {
    contain: layout style paint;
}

.memory-efficient img {
    content-visibility: auto;
    contain-intrinsic-size: 200px 150px;
}

/* Network-aware optimizations */
@media (prefers-reduced-data: reduce) {
    .hero-logo-svg,
    .nav-brand .logo {
        animation: none;
        filter: none;
    }
    
    .order-now-section::after,
    .facebook-btn::before,
    .btn-primary::before {
        display: none;
    }
    
    .menu-item,
    .review-card {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .menu-item:hover,
    .review-card:hover {
        transform: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
}

/* Battery-aware optimizations */
@media (prefers-reduced-motion: reduce) and (prefers-reduced-data: reduce) {
    /* Ultra-low power mode */
    * {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        filter: none !important;
        box-shadow: none !important;
    }
    
    .hero {
        background: #ff6b35 !important;
    }
    
    .order-now-section {
        background: #ffffff !important;
    }
    
    .order-links a,
    .social-links a,
    .facebook-btn {
        background: #f77f00 !important;
    }
}

/* Feature detection and progressive enhancement */
.no-js .hero-logo-svg {
    animation: none;
}

.no-js .order-now-section::after {
    display: none;
}

.js-enabled .enhanced-animations .hero-logo-svg {
    animation: logoFloat 3s ease-in-out infinite, logoGlow 4s ease-in-out infinite alternate;
}

/* Accessibility and performance combined */
@media (prefers-reduced-motion: no-preference) and (min-resolution: 2dppx) {
    /* High DPI displays with motion enabled */
    .hero-logo-svg {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
    }
}

/* Final performance marker */
.performance-optimized {
    /* This class indicates all performance optimizations are loaded */
    --performance-ready: true;
}/*
 Image fallback and optimization */
.item-image-space img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

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

/* HEIC fallback for unsupported browsers */
.item-image-space img[src$=".heic"] {
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.1) 0%, rgba(247, 127, 0, 0.05) 100%);
}

/* Loading state for images */
.item-image-space img[loading="lazy"] {
    background: var(--neutral-gray-100, #f8faff);
    min-height: 80px;
}

/* Image error handling */
.item-image-space img::before {
    content: "🍽️";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0.3;
}

/* Additional mobile navigation fixes */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem;
    }
    
    .nav-links {
        gap: 0.5rem;
        width: 100%;
        justify-content: space-around;
    }
    
    .nav-links li {
        flex: 1;
        max-width: 100px;
    }
    
    .nav-links a {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    .nav-links a.order-now-nav {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-width: auto;
        flex: 1;
        max-width: 120px;
    }
}

/* Ensure navigation doesn't overlap */
.nav-links li {
    position: relative;
    z-index: 10;
}

.nav-links a {
    position: relative;
    z-index: 11;
}

/* Prevent click conflicts */
.nav-links a.order-now-nav {
    z-index: 12;
}/* Fina
l navigation overlap prevention */
@media (max-width: 768px) {
    .nav-links li:not(:last-child) {
        margin-right: 0.5rem;
    }
    
    .nav-links a {
        min-width: 80px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .nav-links a.order-now-nav {
        margin-left: 0.5rem;
        flex-shrink: 0;
    }
}

/* Ensure proper touch targets on mobile */
@media (pointer: coarse) {
    .nav-links a {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .nav-links a.order-now-nav {
        min-width: 120px;
    }
}/* Deskto
p specific styling for Order Now section */
@media (min-width: 769px) {
    .order-now-section {
        margin: 2rem 4rem !important;
        max-width: 800px;
    }
}

/* Large desktop screens */
@media (min-width: 1200px) {
    .order-now-section {
        margin: 2rem auto !important;
        margin-left: 4rem !important;
        margin-right: 4rem !important;
        max-width: 800px;
    }
}

/* Enhanced image loading with fallback */
.item-image-space::before {
    content: "🍽️";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0.3;
    z-index: 0;
}

.item-image-space img {
    position: relative;
    z-index: 1;
    background: var(--neutral-gray-100, #f8faff);
}
/* Contact Section */
.contact-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.08) 0%, rgba(247, 127, 0, 0.05) 50%, #ffffff 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, var(--neutral-gray-800, #1a202c) 0%, var(--neutral-gray-700, #2d3748) 100%);
    color: white;
    padding: 2.5rem 0 1rem;
    margin-top: 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--accent-golden, #ffd60a);
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .footer-logo {
    margin-bottom: 1rem;
    border-radius: 8px;
    object-fit: contain;
}

.footer-brand p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.contact-details p {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--accent-golden, #ffd60a);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-warm, #ffbe0b);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-nav a:hover {
    color: var(--accent-golden, #ffd60a);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links a:hover {
    color: var(--accent-golden, #ffd60a);
    transform: translateX(5px);
}

.business-hours h5 {
    font-family: 'Poppins', sans-serif;
    color: var(--accent-golden, #ffd60a);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.business-hours p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }
    
    .nav-cta {
        margin-left: 0 !important;
        margin-top: 0;
        order: -1;
        width: 100%;
        max-width: 200px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    

    
    .menu-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 1rem;
    }
    
    .menu-nav-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-section,
    .menu-section,
    .contact-section {
        padding: 2rem 0;
    }
    
    .hero-section {
        padding: 2rem 0 1.5rem;
        min-height: 50vh;
    }
    
    .hero-highlights {
        justify-content: center;
        gap: 1rem;
    }
    
    .highlight-item {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
    
    .highlight-text {
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-card {
        padding: 2rem 1.5rem;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        gap: 0.75rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-menu a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .nav-cta {
        max-width: 180px;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-section {
        padding: 4rem 0 3rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    

    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .highlight-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }
}

