/* Old San Juan 2 BBQ - Custom CSS with Burgundy Theme */

/* Performance Optimizations */
html {
    scroll-behavior: smooth;
}

/* Critical Performance Improvements */
* {
    box-sizing: border-box;
}

/* Fast loading skeleton */
body {
    background-color: #1a1a1a; /* Immediate background */
}

/* Prevent unnecessary repaints */
.banner-carousel, 
.menu-gallery,
.featured-specials {
    contain: layout style;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Reduce image quality on mobile for faster loading */
    img {
        image-rendering: auto;
        transform: translateZ(0); /* Hardware acceleration */
    }
    
    /* Optimize animations for mobile */
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Disable expensive effects on mobile */
    .hero-section {
        background-attachment: scroll !important;
    }
    
    /* Reduce complexity on small screens */
    .banner-carousel {
        will-change: auto;
    }
}

/* Optimize font rendering */
body {
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize image loading and rendering */
img {
    loading: lazy;
    max-width: 100%;
    height: auto;
}

/* Prioritize above-the-fold images */
.nav-logo-img,
.hero-section img,
.banner-img {
    loading: eager;
}

/* Compress large images with CSS */
.special-img {
    object-fit: cover;
    width: 100%;
    height: 250px;
    image-rendering: -webkit-optimize-contrast;
}

/* Optimize background images */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Fixed attachment is slow on mobile */
}

/* Mobile background optimization */
@media (max-width: 768px) {
    .hero-section,
    .reviews-section {
        background-image: none !important;
        background-color: var(--charcoal-dark);
    }
    
    /* Use smaller images on mobile */
    .special-img {
        max-width: 100%;
        height: 200px; /* Smaller on mobile */
    }
}

/* Critical CSS - Prevent Layout Shift */
.promo-banner, .reviews-section {
    min-height: 400px;
    will-change: background-image;
}

.banner-carousel-container {
    min-height: 300px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    transition: background 0.3s ease;
}

.banner-carousel-container:has(.banner-img) {
    background: transparent;
}

/* Optimize image rendering */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-contrast;
}

/* Root Variables */
:root {
    /* Dark Rustic Wood & Charcoal Theme - Texas Roadhouse Style */
    --charcoal-black: #1a1a1a;
    --charcoal-dark: #2d1f1a;
    --rustic-wood: #3d2914;
    --dark-wood: #4a3018;
    
    /* Fire Colors */
    --fire-orange: #ff6600;
    --fire-red: #cc3300;
    --fire-yellow: #ffaa00;
    --ember-glow: #ff4400;
    
    /* Updated Darker Yellow with Fire Tones */
    --burgundy-primary: #cc8800;
    --burgundy-secondary: #b8860b;
    --burgundy-light: #daa520;
    --burgundy-dark: #b8860b;
    --burgundy-accent: #ff6600;
    
    /* Complementary Colors */
    --gold: #ffa500;
    --cream: #2d1f1a;
    --dark-brown: #5d4e37;
    --light-tan: #4a3018;
    --white: #ffffff;
    
    /* Typography - Using Bebas Neue for Reliable Vintage Look */
    --font-primary: 'Bebas Neue', 'Orbitron', 'Exo 2', 'Rajdhani', sans-serif;
    --font-secondary: 'Bebas Neue', 'Orbitron', 'Exo 2', 'Rajdhani', sans-serif;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(128, 0, 32, 0.1);
    --shadow-medium: 0 4px 20px rgba(128, 0, 32, 0.2);
    --shadow-heavy: 0 8px 30px rgba(128, 0, 32, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--white);
    background: #2c2c2c;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: 
        /* Natural smooth wood grain texture */
        linear-gradient(
            90deg,
            #1a0f0a 0%,
            #2d1f1a 8%,
            #1a0f0a 16%,
            #3d2914 24%,
            #2d1f1a 32%,
            #1a0f0a 40%,
            #4a3018 48%,
            #2d1f1a 56%,
            #1a0f0a 64%,
            #3d2914 72%,
            #2d1f1a 80%,
            #1a0f0a 88%,
            #2d1f1a 96%,
            #1a0f0a 100%
        ),
        linear-gradient(
            180deg,
            rgba(61, 41, 20, 0.3) 0%,
            rgba(45, 31, 26, 0.2) 25%,
            rgba(26, 15, 10, 0.4) 50%,
            rgba(45, 31, 26, 0.2) 75%,
            rgba(61, 41, 20, 0.3) 100%
        ),
        radial-gradient(
            ellipse 60px 8px at 25% 50%,
            rgba(74, 48, 24, 0.4) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 80px 6px at 75% 50%,
            rgba(26, 15, 10, 0.6) 0%,
            transparent 70%
        );
    background-size: 100% 100%, 100% 100%, 120px 100%, 150px 100%;
    border-bottom: 2px solid var(--fire-orange);
    padding: 1rem 0;
    position: relative;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.nav-text {
    /* Remove any borders, outlines, or glows */
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.nav-text h1 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: 2px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.nav-tagline {
    font-size: 1.1rem;
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--dark-brown);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Banner CTA Section */
.banner-cta-section {
    background: rgba(41, 27, 13, 0.8);
    padding: 2rem 0;
    text-align: center;
}

.banner-cta-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.banner-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.banner-cta-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.banner-cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 0 30px rgba(218, 165, 32, 0.5);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

/* Buttons */
.btn {
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-medium);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--fire-orange) 0%, var(--gold) 100%);
    color: var(--white);
    border: 2px solid var(--fire-orange);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--ember-glow) 0%, var(--fire-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    border-color: var(--ember-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--gold);
    backdrop-filter: blur(5px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--charcoal-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
    backdrop-filter: blur(0);
}

/* Visual Menu Gallery - Rustic Wood Theme */
.visual-menu {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.8)),
        url('../images/darker-white-wood-grain-bg.jpg') center/cover;
    backdrop-filter: blur(2px);
}

.visual-menu-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    margin: 0 auto 3rem auto;
}

.visual-menu-header .section-title {
    font-size: 1.8rem;
    margin-bottom: 0;
    letter-spacing: 1px;
    color: var(--gold);
}

.menu-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/3;
    opacity: 0;
    transform: translateY(30px);
    border: 3px solid black;
    background: black;
}

.menu-category-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.menu-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.menu-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.menu-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    text-align: center;
}

.category-label {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.category-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
    text-shadow: none !important;
}

.see-full-menu {
    text-align: center;
    margin-top: 2rem;
}

.full-menu-btn {
    background: linear-gradient(135deg, var(--burgundy-primary) 0%, var(--burgundy-secondary) 100%);
    color: white;
    border: 3px solid var(--gold);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.4);
    transition: var(--transition-medium);
}

.full-menu-btn:hover {
    background: var(--gold);
    color: var(--dark-brown);
    border-color: var(--burgundy-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.5);
}

/* Specials Section */
.specials {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.8)),
        url('../images/darker-white-wood-grain-bg.jpg') center/cover;
    backdrop-filter: blur(2px);
}

/* Promotional Banner Carousel - Texas Roadhouse Style */
.promo-banner {
    padding: 3rem 0;
    margin: 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 0.2)),
        url('../images/red-wood-grain-bg.jpg') center/cover !important;
    position: relative;
    top: 0;
    min-height: 200px;
}

.banner-carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-medium);
    background: transparent;
}

.banner-carousel-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.banner-carousel {
    position: relative;
    width: 100%;
    height: auto;
}

.banner-slide {
    display: none;
    width: 100%;
    position: relative;
    animation: fadeInSlide 0.5s ease-in-out;
}

.banner-slide.active {
    display: block;
}

.promo-banner-image {
    position: relative;
    width: 100%;
    display: block;
    contain: layout style;
    will-change: transform;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
    loading: eager;
    image-rendering: -webkit-optimize-contrast;
    will-change: transform;
    backface-visibility: hidden;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 2rem;
    display: flex;
    justify-content: center;
    opacity: 0.9;
    transition: all var(--transition-medium);
    z-index: 10;
}

.promo-banner-image:hover .banner-overlay {
    opacity: 1;
}

.banner-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.add-deals-btn,
.order-direct-btn {
    background: var(--burgundy-primary);
    color: white;
    border: 2px solid var(--gold);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.3);
    position: relative;
    z-index: 20;
    pointer-events: all;
}

.add-deals-btn:hover,
.order-direct-btn:hover {
    background: var(--gold);
    color: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.4);
}

.order-direct-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-color: #dc3545;
}

.order-direct-btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
    color: white;
    border-color: #a71e2a;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 20;
}

.carousel-btn {
    background: rgba(128, 0, 32, 0.8);
    border: 2px solid var(--gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-size: 1.2rem;
    pointer-events: all;
    backdrop-filter: blur(5px);
    z-index: 25;
    position: relative;
}

.carousel-btn:hover {
    background: var(--burgundy-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--burgundy-primary);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--burgundy-primary);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* Slide Animation */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-slide.slide-left {
    animation: fadeInSlideLeft 0.5s ease-in-out;
}

.banner-slide.slide-right {
    animation: fadeInSlide 0.5s ease-in-out;
}

/* Performance Optimizations */
.banner-carousel {
    will-change: transform;
    transform: translateZ(0);
}

.banner-slide {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Touch Support */
.banner-carousel-container {
    touch-action: pan-y;
}

@media (hover: none) and (pointer: coarse) {
    .carousel-btn {
        opacity: 0.9;
    }
    
    .banner-overlay {
        opacity: 1 !important;
    }
}

/* Typography Improvements - Empera Soft Style */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 1px;
}

p, span, div, li, a {
    font-family: var(--font-secondary);
    font-weight: 400;
}

.menu-item h4 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Enhanced button styling with Empera Soft aesthetic */
.add-deals-btn,
.order-direct-btn,
.size-btn,
.add-btn {
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
}



.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--burgundy-primary);
    letter-spacing: 2px;
}

/* Specific white styling for reviews section only */
.reviews-section .section-title {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.reviews-section .section-title i {
    color: var(--white);
}

/* Instagram section should remain gold with white icon as requested */
.instagram-gallery-section .section-title i {
    color: var(--white);
}

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

/* New 2x2 Grid Layout for Featured Specials */
.specials-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Tablet - still 2x2 but smaller */
@media (max-width: 992px) {
    .specials-grid-2x2 {
        gap: 1.5rem;
    }
}

/* Mobile - keep 2x2 grid but smaller */
@media (max-width: 768px) {
    .specials-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .special-card {
        font-size: 0.85rem;
    }
    
    .special-card h3 {
        font-size: 1.3rem;
    }
    
    .special-card .price {
        font-size: 1.8rem;
    }
    
    .special-card .special-subtitle {
        font-size: 0.75rem;
    }
    
    .special-card .ingredients-list {
        font-size: 0.8rem;
    }
}

/* Very small mobile - stack if absolutely necessary */
@media (max-width: 480px) {
    .specials-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.special-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    border: 3px solid var(--fire-orange);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.2), transparent);
    transition: var(--transition-slow);
}

.special-card:hover::before {
    left: 100%;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--gold);
}

.special-card h3 {
    font-family: var(--font-primary);
    font-size: 2.1rem;
    color: var(--fire-orange);
    margin-bottom: 1rem;
}

.special-card .price {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--burgundy-primary);
    margin-top: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    font-family: Arial, Helvetica, sans-serif;
}

/* Special Image Styling */
.special-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 7px 7px 0 0;
}

.special-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.special-card:hover .special-img {
    transform: scale(1.05);
}

.special-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.special-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--fire-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: -0.5rem 0 0.75rem 0;
    font-family: Arial, Helvetica, sans-serif;
}

.special-description {
    font-weight: 600;
    color: var(--burgundy-dark);
    margin-bottom: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.ingredients-list li {
    padding: 0.3rem 0;
    font-size: 1.1rem;
    color: var(--charcoal-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

/* Special card ingredients should be visible against card backgrounds */
.special-card .ingredients-list li {
    color: #333333;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    margin: 0.2rem 0;
    display: flex;
    align-items: center;
    text-align: left;
}

/* Family option ingredients styling */
.family-option .ingredients-list li {
    color: #333333;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    margin: 0.2rem 0;
    display: flex;
    align-items: center;
    text-align: left;
}

/* Perfect emoji alignment for all ingredients lists */
.ingredients-list li {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-family: Arial, Helvetica, sans-serif !important;
    line-height: 1.4 !important;
}

/* Consistent emoji sizing and positioning */
.ingredients-list li {
    font-size: 1rem !important;
    min-height: 1.8rem;
    box-sizing: border-box;
}

/* VIP modal ingredient alignment */
.included-items .included-item,
.vip-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.3rem !important;
    font-size: 0.9rem !important;
}

.price-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.price-options .price {
    margin: 0;
    font-size: 1.4rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.family-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1rem 0;
}

.family-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--fire-orange);
    position: relative;
    transition: all 0.3s ease;
}

.family-option.clickable {
    cursor: pointer;
}

.family-option.clickable:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.add-to-cart-overlay {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--fire-orange);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 0 8px 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: Arial, Helvetica, sans-serif;
}

.family-option.clickable:hover .add-to-cart-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Clickable Special Cards */
.special-card.clickable-special {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.special-card.clickable-special:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.special-card.clickable-special .add-to-cart-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--fire-orange);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.special-card.clickable-special:hover .add-to-cart-overlay {
    opacity: 1;
    transform: translateY(0);
}

.family-option h4 {
    margin: 0 0 0.8rem 0;
    color: var(--burgundy-dark);
    font-size: 1rem;
    font-weight: 600;
}

.family-option .ingredients-list {
    margin: 0.5rem 0;
}

.family-option .price {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--burgundy-primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.6)),
        url('../images/charcoal-fire.jpg') center/cover fixed;
    backdrop-filter: blur(1px);
}

.menu-section .section-title {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.menu-section .menu-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--fire-orange);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.menu-section .menu-tab.active,
.menu-section .menu-tab:hover {
    background: var(--fire-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.menu-section .menu-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.menu-tab {
    padding: 12px 24px;
    border: 2px solid var(--burgundy-primary);
    background: transparent;
    color: var(--burgundy-primary);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 600;
}

.menu-tab.active,
.menu-tab:hover {
    background: var(--burgundy-primary);
    color: var(--white);
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.category-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--burgundy-primary);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
    border-left: 4px solid var(--fire-orange);
    border: 1px solid #e0e0e0;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--gold);
}

.item-info h4 {
    font-size: 1.2rem;
    color: var(--fire-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.item-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

.item-actions {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: flex-start;
    width: 100%;
}

.size-options .size-btn {
    flex: 1 1 auto;
    min-width: 85px;
    text-align: center;
    font-size: 0.8rem;
    padding: 7px 8px;
    max-width: none;
}

.size-btn,
.add-btn {
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    background: var(--burgundy-primary);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.85rem;
    font-family: Arial, Helvetica, sans-serif;
    flex: 0 1 auto;
    white-space: nowrap;
    box-sizing: border-box;
}

.size-btn:hover,
.add-btn:hover {
    background: var(--burgundy-secondary);
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Shopping Cart */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-heavy);
    z-index: 2000;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    background: var(--burgundy-primary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
}

.cart-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-items {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: #666;
    margin-top: 2rem;
    font-style: italic;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item-info h5 {
    color: #000;
    margin-bottom: 0.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.cart-item-price {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: #000;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: var(--burgundy-primary);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--burgundy-secondary);
}

.remove-btn {
    background: #dc3545;
    color: var(--white);
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
}

.remove-btn:hover {
    background: #c82333;
}

.cart-footer {
    padding: 1.5rem;
    background: var(--cream);
    border-top: 1px solid #eee;
}

.cart-total {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--burgundy-primary);
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: var(--gold);
    color: var(--dark-brown);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.checkout-btn:hover {
    background: #B8860B;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* About Section */
.about {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.8)),
        url('../images/darker-white-wood-grain-bg.jpg') center/cover;
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid var(--burgundy-primary);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.3);
    transition: var(--transition-medium);
}

.about-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(128, 0, 32, 0.4);
}

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--burgundy-primary);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--charcoal-dark);
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(45, 31, 26, 0.8);
    border-radius: 8px;
    border-left: 4px solid var(--burgundy-primary);
}

.feature i {
    font-size: 1.5rem;
    color: var(--burgundy-primary);
}

.feature span {
    font-weight: 600;
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.8)),
        url('../images/darker-white-wood-grain-bg.jpg') center/cover;
    backdrop-filter: blur(2px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--charcoal-dark);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: var(--transition-medium);
    border: 1px solid var(--dark-wood);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--burgundy-primary);
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: var(--burgundy-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--white);
    line-height: 1.6;
}

.contact-item a {
    color: var(--burgundy-primary);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--charcoal-dark);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--dark-wood);
}

.contact-form h3 {
    font-family: var(--font-primary);
    color: var(--burgundy-primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-secondary);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy-primary);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

/* Charcoal Fire Background Section - Enhanced with Fade Effect */


/* Footer */
.footer {
    background: 
        /* Natural smooth wood grain texture - matching navbar */
        linear-gradient(
            90deg,
            #1a0f0a 0%,
            #2d1f1a 8%,
            #1a0f0a 16%,
            #3d2914 24%,
            #2d1f1a 32%,
            #1a0f0a 40%,
            #4a3018 48%,
            #2d1f1a 56%,
            #1a0f0a 64%,
            #3d2914 72%,
            #2d1f1a 80%,
            #1a0f0a 88%,
            #2d1f1a 96%,
            #1a0f0a 100%
        ),
        linear-gradient(
            180deg,
            rgba(61, 41, 20, 0.3) 0%,
            rgba(45, 31, 26, 0.2) 25%,
            rgba(26, 15, 10, 0.4) 50%,
            rgba(45, 31, 26, 0.2) 75%,
            rgba(61, 41, 20, 0.3) 100%
        ),
        radial-gradient(
            ellipse 60px 8px at 30% 50%,
            rgba(74, 48, 24, 0.4) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 90px 7px at 70% 50%,
            rgba(26, 15, 10, 0.6) 0%,
            transparent 70%
        );
    background-size: 100% 100%, 100% 100%, 140px 100%, 180px 100%;
    border-top: 2px solid var(--fire-orange);
    color: var(--white);
    padding: 40px 0 20px;
}

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

.footer-logo {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.4rem;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: var(--white);
    color: var(--charcoal-black);
}

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

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 30px rgba(218, 165, 32, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(218, 165, 32, 0.8);
    }
    100% {
        box-shadow: 0 0 30px rgba(218, 165, 32, 0.5);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--burgundy-primary);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .menu-nav {
        flex-direction: column;
        align-items: center;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Promotional Banner Mobile - Enhanced */
    .promo-banner {
        padding: 1rem 0 2rem 0;
        min-height: 200px;
    }
    
    .banner-carousel-container {
        margin: 1rem auto;
        padding: 0 1rem;
        border-radius: 12px;
        max-width: 95%;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        width: 95%;
    }

    .banner-img {
        border-radius: 8px;
        height: auto; /* Let image maintain aspect ratio */
        min-height: 180px; /* Ensure banner has minimum height */
        object-fit: contain; /* Show full image */
        object-position: center;
        width: 100%;
        display: block;
        background-color: #1a1a1a; /* Dark background */
    }

    /* Reposition overlay below image on mobile instead of over it */
    .banner-overlay {
        position: static; /* Remove absolute positioning */
        background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(26,26,26,0.9));
        padding: 0.75rem;
        opacity: 1; /* Always show on mobile */
        border-radius: 0 0 8px 8px;
        display: flex;
        justify-content: center;
        min-height: auto;
        transition: none;
    }

    .banner-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    /* Banner CTA Mobile */
    .banner-cta-section {
        padding: 1.5rem 0;
    }
    
    .banner-cta-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .banner-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .banner-cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .add-deals-btn,
    .order-direct-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
        background: var(--burgundy-primary);
        color: white;
        border: 2px solid var(--gold);
        border-radius: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
        min-height: 48px;
        display: flex;
        align-items: center;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .add-deals-btn:hover,
    .order-direct-btn:hover,
    .add-deals-btn:active,
    .order-direct-btn:active {
        background: var(--gold);
        color: var(--dark-brown);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    }

    /* Mobile Navigation Improvements */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .nav-text h1 {
        font-size: 1.3rem;
    }
    
    .nav-tagline {
        font-size: 0.85rem;
    }
    
    /* Mobile Specials */
    .specials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
        align-items: start;
    }
    
    .special-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .family-options {
        gap: 1rem;
    }
    
    .family-option {
        padding: 0.75rem;
    }
    
    .family-option h4 {
        font-size: 0.9rem;
    }
    
    .ingredients-list li {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
    
    /* Mobile Menu Section */
    .menu-section {
        padding: 60px 0;
    }
    
    .menu-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .menu-tab {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
    }
    
    .carousel-nav {
        padding: 0 0.5rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        background: rgba(139, 0, 0, 0.9);
        border: 2px solid rgba(218, 165, 32, 0.8);
    }
    
    .carousel-dots {
        margin-top: 1.25rem;
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .dot {
        width: 14px;
        height: 14px;
        border-width: 3px;
        cursor: pointer;
        touch-action: manipulation;
    }
    
    /* Visual Menu Tablet */
    .visual-menu-header {
        padding: 1.25rem;
        max-width: 400px;
        margin: 0 auto 2rem auto;
        text-align: center;
    }
    
    .visual-menu-header .section-title {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
    }
    
    /* Center menu gallery on tablet/mobile */
    .menu-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 2rem;
        justify-items: center;
        max-width: 600px;
        margin: 0 auto 2rem auto;
    }
    
    .menu-category-card {
        width: 100%;
        max-width: 250px;
        height: 160px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-dots {
        margin-top: 1rem;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-item {
        padding: 1rem;
    }

    .size-options {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .size-btn {
        padding: 6px 8px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    /* Visual Menu Mobile Optimization */
    .visual-menu {
        padding: 2rem 0;
    }
    
    .visual-menu-header {
        padding: 1rem;
        max-width: 350px;
        margin: 0 auto 2rem auto;
        text-align: center;
    }
    
    .menu-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
        justify-items: center;
        max-width: 500px;
        margin: 0 auto 2rem auto;
    }
    
    .menu-category-card {
        height: 140px;
        width: 100%;
        max-width: 200px;
    }
    
    .category-label {
        font-size: 1.2rem;
    }
    
    .category-desc {
        font-size: 0.9rem;
    }
    
    .visual-menu-header .section-title {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    
    .menu-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-label {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }

    .category-desc {
        font-size: 1rem;
    }

    .menu-card-overlay {
        padding: 0.75rem;
    }

    .full-menu-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    /* Charcoal Fire Mobile */
    .fire-image-container {
        height: 100px;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .nav-logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-text h1 {
        font-size: 1.5rem;
    }

    .nav-tagline {
        font-size: 0.9rem;
    }

    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
}

/* Extra Small Mobile Devices - iPhone SE, older smartphones */
@media (max-width: 375px) {
    /* Container and Layout */
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    /* Navigation Ultra Mobile */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-text h1 {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .nav-tagline {
        font-size: 0.75rem;
    }
    
    /* Promo Banner Ultra Mobile */
    .promo-banner {
        padding: 0.75rem 0 1.5rem 0;
        min-height: 150px;
    }
    
    /* Banner Ultra Mobile Optimization */
    .banner-carousel-container {
        margin: 0.75rem auto;
        padding: 0 0.5rem;
        border-radius: 8px;
        overflow: hidden;
        max-width: 95%;
        width: 95%;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }
    
    .banner-img {
        height: auto; /* Let image maintain aspect ratio */
        min-height: 150px; /* Ensure banner has minimum height */
        border-radius: 8px;
        width: 100%;
        object-fit: contain; /* Show full image */
        object-position: center;
        display: block;
        background-color: #1a1a1a; /* Dark background */
    }
    
    /* Reposition overlay below image on ultra small mobile */
    .banner-overlay {
        position: static; /* Remove absolute positioning */
        background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(26,26,26,0.9));
        padding: 0.5rem;
        opacity: 1; /* Always show on mobile */
        border-radius: 0 0 6px 6px;
        display: flex;
        justify-content: center;
        min-height: auto;
        transition: none;
    }
    
    .banner-content h2 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .banner-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .banner-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .add-deals-btn,
    .order-direct-btn {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
        border-radius: 8px;
        text-align: center;
        min-height: 44px;
        background: var(--burgundy-primary);
        color: white;
        border: 2px solid var(--gold);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .add-deals-btn:hover,
    .order-direct-btn:hover,
    .add-deals-btn:active,
    .order-direct-btn:active {
        background: var(--gold);
        color: var(--dark-brown);
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    }
    
    /* Carousel Navigation Ultra Mobile */
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(139, 0, 0, 0.95);
        border: 2px solid rgba(218, 165, 32, 0.9);
    }
    
    .carousel-btn.prev {
        left: 8px;
    }
    
    .carousel-btn.next {
        right: 8px;
    }
    
    .carousel-dots {
        margin-top: 1rem;
        gap: 0.75rem;
        padding: 0.5rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        border-width: 3px;
    }
    
    /* Banner CTA Ultra Mobile */
    .banner-cta-section {
        padding: 1rem 0;
        margin: 0 0.5rem;
    }
    
    .banner-cta-content {
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .banner-cta-content h3 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .banner-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .banner-cta-buttons .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 6px;
        min-height: 45px;
    }
    
    /* Specials Ultra Mobile */
    .specials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
        justify-items: center;
        align-items: start;
    }
    
    .special-card {
        padding: 1rem;
        border-radius: 8px;
        width: 100%;
        margin: 0 auto;
    }
    
    .special-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .family-options {
        gap: 0.75rem;
    }
    
    .family-option {
        padding: 0.75rem;
        border-radius: 6px;
        cursor: pointer;
    }
    
    .family-option h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .ingredients-list li {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .family-option .price {
        font-size: 1.6rem;
        margin-top: 0.5rem;
    }
    
    /* Visual Menu Ultra Mobile */
    .visual-menu-header {
        padding: 0.75rem;
        max-width: 320px;
        margin: 0 auto 1.5rem auto;
        text-align: center;
    }
    
    .visual-menu-header .section-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .menu-gallery {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 1rem;
        justify-items: center;
        max-width: 350px;
        margin: 0 auto 1.5rem auto;
    }
    
    .menu-category-card {
        height: 120px;
        border-radius: 6px;
        width: 100%;
        max-width: 300px;
    }
    
    .category-label {
        font-size: 1.3rem;
        letter-spacing: 0.3px;
    }
    
    .category-desc {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .menu-card-overlay {
        padding: 0.6rem;
    }
    
    /* Sections Ultra Mobile */
    .section-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .menu-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
        border-radius: 6px;
    }
    
    .menu-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .menu-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .menu-item .price {
        font-size: 1rem;
    }
    
    /* Cart Sidebar Ultra Mobile */
    .cart-sidebar {
        width: 100%;
        max-width: 100vw;
        right: -100%;
        border-radius: 0;
    }
    
    .cart-sidebar.open {
        right: 0;
    }
    
    .cart-header {
        padding: 1rem 0.75rem;
    }
    
    .cart-header h2 {
        font-size: 1.2rem;
    }
    
    .cart-content {
        padding: 0 0.75rem;
    }
    
    .cart-item {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .cart-item h4 {
        font-size: 0.9rem;
        line-height: 1.3;
        color: #000;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 600;
    }
    
    .cart-total {
        padding: 1rem 0.75rem;
        background: rgba(0,0,0,0.3);
        border-radius: 6px;
        margin: 1rem 0;
    }
    
    .checkout-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 6px;
    }
    
    /* Footer Ultra Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Instagram Gallery Ultra Mobile */
    .instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.75rem;
    }
    
    .insta-item {
        aspect-ratio: 1;
        border-radius: 6px;
    }
    
    /* Reviews Ultra Mobile */
    .review-item {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 6px;
    }
    
    .review-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .reviewer-name {
        font-size: 0.8rem;
    }
    
    /* Notification Ultra Mobile */
    .notification {
        max-width: calc(100vw - 1rem);
        left: 50%;
        transform: translateX(-50%);
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }
}

/* Order Form Styles */
.order-form {
    max-width: 500px;
    margin: 0 auto;
}

.order-form .form-group {
    margin-bottom: 1rem;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--fire-orange);
}

.order-summary {
    background: rgba(255, 102, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border: 1px solid var(--fire-orange);
}

.order-summary h4 {
    margin-bottom: 0.5rem;
    color: var(--fire-orange);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
}

.order-total {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 2px solid var(--fire-orange);
    font-size: 1.1rem;
}

.success-content {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-content h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.success-content p {
    margin-bottom: 0.5rem;
    color: #333;

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-logo-img {
        width: 100px;
        height: 100px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-img {
        width: 50px;
        height: 50px;
    }

    /* Visual Menu Mobile */
    .menu-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-label {
        font-size: 1.5rem;
    }

    .category-desc {
        font-size: 1.0rem;
    }

    .menu-card-overlay {
        padding: 1rem 1rem 0.75rem;
    }

    .full-menu-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.hidden { display: none; }
.visible { display: block; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Notifications */
.add-to-cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--burgundy-primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
    z-index: 3000;
    transform: translateX(100%);
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 300px;
}

.add-to-cart-notification.show {
    transform: translateX(0);
}

.add-to-cart-notification i {
    color: var(--gold);
    font-size: 1.2rem;
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
    z-index: 3000;
    transform: translateX(100%);
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 350px;
    margin-bottom: 1rem;
}

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

.notification-success {
    background: #28a745;
    color: white;
}

.notification-error {
    background: #dc3545;
    color: white;
}

.notification-info {
    background: var(--burgundy-primary);
    color: white;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkout Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.checkout-modal {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: slideInUp 0.3s ease;
}

.checkout-modal h3 {
    font-family: var(--font-primary);
    color: var(--burgundy-primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.checkout-modal p {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.promo-deals {
    background: var(--cream);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--burgundy-primary);
}

.promo-deals p {
    color: var(--burgundy-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.deal-option {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--burgundy-primary);
    text-align: center;
}

.deal-option h4 {
    color: var(--burgundy-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.deal-option p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Wings Deal Options Styling */
.wings-deal-options .deal-option {
    margin-bottom: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wings-deal-options .deal-option:hover {
    border-color: var(--burgundy-primary);
    background: linear-gradient(135deg, #fff 0%, #fffacd 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.2);
}

.wings-deal-options .deal-option input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.2);
}

.deal-details {
    display: block;
    text-align: left;
    color: #333;
    line-height: 1.4;
}

.deal-details strong {
    color: var(--burgundy-primary);
    font-size: 1.1rem;
    font-family: var(--font-primary);
    display: block;
    margin-bottom: 0.3rem;
}

.deal-details br + text,
.deal-details:not(strong) {
    color: #555;
    font-size: 0.9rem;
}

.sauce-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.sauce-options .option-label {
    color: #333;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-weight: 500;
}

.sauce-options .option-label:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--burgundy-primary);
    transform: translateY(-1px);
}

.checkout-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--burgundy-primary);
    color: var(--burgundy-primary);
}

.btn-outline:hover {
    background: var(--burgundy-primary);
    color: var(--white);
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Scroll Animations */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Quantity Display */
.quantity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    font-weight: bold;
    color: var(--burgundy-primary);
}

/* Mobile Navigation Active State */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Enhanced Mobile Responsiveness for Notifications */
@media (max-width: 480px) {
    .add-to-cart-notification,
    .notification {
        right: 10px;
        left: 10px;
        right: auto;
        transform: translateY(-100%);
        max-width: none;
    }
    
    .add-to-cart-notification.show,
    .notification.show {
        transform: translateY(0);
    }
    
    .checkout-modal {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .checkout-buttons {
        gap: 0.75rem;
    }
}

/* ========================================
   CHECKOUT PAGE STYLES
======================================== */

/* Checkout Header */
.checkout-header {
    background: linear-gradient(135deg, rgba(204, 136, 0, 0.8), rgba(184, 134, 11, 0.7));
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--charcoal-black) 0%, var(--rustic-wood) 100%);
    text-align: center;
    color: var(--white);
}

.page-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-title i {
    color: var(--fire-orange);
    text-shadow: 0 0 10px var(--ember-glow);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 400;
    opacity: 0.9;
}

/* Checkout Content */
.checkout-content {
    background: linear-gradient(135deg, rgba(204, 136, 0, 0.95), rgba(184, 134, 11, 0.9));
    min-height: 80vh;
    padding: 4rem 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Order Summary Section */
.order-summary-section {
    position: relative;
}

.summary-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-card h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--burgundy-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

/* Checkout Cart Items */
.checkout-cart-items {
    margin-bottom: 2rem;
}

.checkout-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--burgundy-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.item-details h4 {
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.item-quantity,
.item-price {
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.item-total {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--burgundy-primary);
    text-align: right;
}

/* Empty Cart */
.empty-checkout-cart {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--dark-brown);
}

.empty-checkout-cart i {
    font-size: 4rem;
    color: var(--burgundy-light);
    margin-bottom: 1rem;
}

.empty-checkout-cart h3 {
    font-family: var(--font-primary);
    color: var(--burgundy-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-checkout-cart p {
    margin-bottom: 2rem;
    color: var(--dark-brown);
}

/* Cart Summary Totals */
.cart-summary {
    border-top: 2px solid var(--gold);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.summary-totals {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--gold);
}

.subtotal-row,
.tax-row,
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--burgundy-primary);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.total-row {
    border-top: 2px solid var(--burgundy-primary);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--burgundy-dark);
}

/* Ordering Section */
.ordering-section {
    position: relative;
}

.ordering-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ordering-card h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--burgundy-primary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
}

/* Order Methods */
.order-method {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.order-method:last-child {
    border-bottom: none;
}

.order-method h3 {
    font-family: var(--font-primary);
    color: var(--burgundy-primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-method p {
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Checkout Form */
.checkout-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--burgundy-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    font-family: Arial, Helvetica, sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--burgundy-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    transition: var(--transition-fast);
    background: rgba(255, 255, 255, 0.9);
    color: #000;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy-primary);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Quick Order Buttons */
.quick-order-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.quick-order-buttons .btn {
    padding: 1rem;
    font-size: 1rem;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-fast);
}

/* Pickup Information */
.pickup-info {
    background: linear-gradient(135deg, var(--burgundy-primary), var(--burgundy-secondary));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.pickup-info h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item strong {
    display: block;
    color: #000;
    margin-bottom: 0.5rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
}

/* Enhanced Button Styles */
.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    min-height: 60px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--fire-red), var(--burgundy-primary));
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    transform: translateY(-2px);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--burgundy-primary), var(--burgundy-secondary));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy-primary));
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Success Modal Enhancements */
.success-modal {
    background: var(--white);
    border: 3px solid var(--gold);
    position: relative;
    z-index: 5000;
}

.success-content {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(40, 167, 69, 0.3);
}

.success-content h2 {
    font-family: var(--font-primary);
    color: var(--burgundy-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.order-details {
    background: rgba(255, 170, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--gold);
    margin: 1.5rem 0;
}

.order-details p {
    color: var(--burgundy-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.order-id {
    font-family: monospace;
    background: var(--burgundy-primary);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 1rem;
}

.success-info {
    margin: 2rem 0;
}

.success-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--dark-brown);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.success-info i {
    color: var(--burgundy-primary);
    width: 20px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Design for Checkout */
@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .summary-card,
    .ordering-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-order-buttons {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkout-cart-item {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .item-total {
        text-align: left;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .checkout-content {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 4rem 0 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .summary-card,
    .ordering-card {
        padding: 1rem;
        margin: 0 0.5rem;
        border-radius: 10px;
    }
    
    .checkout-form {
        padding: 1rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

/* Google Maps Section Styles */
.map-section {
    margin-top: 3rem;
    width: 100%;
}

.map-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.map-title {
    color: var(--burgundy-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: var(--font-primary);
}

.map-title i {
    margin-right: 0.5rem;
    color: var(--fire-orange);
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
}

.map-info p {
    color: var(--charcoal-black);
    font-size: 1.1rem;
    margin: 0;
}

.map-info i {
    color: var(--burgundy-primary);
    margin-right: 0.5rem;
}

.map-info strong {
    color: var(--burgundy-primary);
}

/* Responsive Map Styles */
@media (max-width: 768px) {
    .map-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .map-title {
        font-size: 1.5rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-info {
        text-align: left;
    }
    
    .map-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .map-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .map-title {
        font-size: 1.3rem;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
}

/* Google Reviews Section Styles */
.reviews-section {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 0.2)),
        url('../images/red-wood-grain-bg.jpg') center/cover !important;
    backdrop-filter: blur(10px);
}

.google-rating {
    text-align: center;
    margin-top: 1rem;
}

.google-rating .stars {
    font-size: 2rem;
    color: #ffa500;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-primary);
}

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

.review-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.1);
    transition: var(--transition-medium);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--burgundy-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    font-family: var(--font-primary);
}

.reviewer-name {
    color: var(--charcoal-black);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: var(--font-primary);
}

.review-stars {
    color: #ffa500;
    font-size: 0.9rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-text {
    color: var(--charcoal-dark);
    line-height: 1.6;
    font-size: 1.2rem;
    font-style: italic;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.reviews-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-cta .btn i {
    font-size: 1.2rem;
}

/* Responsive Reviews Styles */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviewer-info {
        gap: 0.8rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .google-rating .stars {
        font-size: 1.5rem;
    }
    
    .rating-text {
        font-size: 1.1rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .reviews-cta .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ========================================
   INSTAGRAM GALLERY SECTION
======================================== */

.instagram-gallery-section {
    background: url('../images/darker-white-wood-grain-bg.jpg') center/cover;
    padding: 5rem 0;
    position: relative;
}

.instagram-gallery-section .section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.instagram-gallery-section .section-title i {
    background: linear-gradient(45deg, #e4405f, #ff6b6b, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    text-shadow: none;
}

.instagram-gallery-section .section-subtitle {
    color: var(--gold);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Instagram Stats Box */
.instagram-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(5px);
}

.instagram-stat {
    text-align: center;
    color: white;
}

.instagram-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-primary);
}

.instagram-stat span {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Instagram Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.insta-photo {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.insta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.insta-photo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.insta-photo:hover img {
    transform: scale(1.1);
}

/* Instagram Overlay */
.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(228, 64, 95, 0.8), rgba(255, 107, 107, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.insta-overlay i {
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transform: scale(0.5);
    transition: var(--transition-medium);
}

.insta-photo:hover .insta-overlay {
    opacity: 1;
}

.insta-photo:hover .insta-overlay i {
    transform: scale(1);
}

/* Instagram CTA */
.instagram-cta {
    text-align: center;
}

.btn-instagram {
    background: linear-gradient(45deg, #e4405f, #ff6b6b);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #d63384, #e4405f);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.5);
    color: var(--white);
}

.btn-instagram i {
    font-size: 1.3rem;
}

/* Old Instagram Stats - Removed to prevent conflicts */

/* Instagram Grid Responsive */
@media (max-width: 768px) {
    .instagram-gallery-section {
        padding: 3rem 0;
    }
    
    .instagram-gallery-section .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .instagram-stats {
        gap: 1.5rem;
        padding: 1rem;
        margin: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .insta-photo:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .btn-instagram {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-gallery-section .section-title {
        font-size: 1.6rem;
    }
    
    .instagram-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .insta-overlay i {
        font-size: 2rem;
    }
}

/* Instagram Gallery */
.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
    display: block;
    text-decoration: none;
}

.instagram-post:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.instagram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-post:hover .instagram-image {
    transform: scale(1.1);
}

.instagram-overlay i {
    font-size: 3rem;
    color: white;
    background: linear-gradient(45deg, #e4405f, #ff6b6b, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Instagram Gallery Responsive */
@media (max-width: 768px) {
    .instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .instagram-overlay i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .instagram-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .instagram-overlay i {
        font-size: 2rem;
    }
}

/* Instagram Stats */
.instagram-stats {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 3rem;
    margin: 1.5rem auto 2rem auto !important;
    flex-wrap: wrap;
    text-align: center !important;
    width: 100% !important;
    background: rgba(139, 0, 0, 0.2) !important;
    padding: 1.5rem !important;
    border-radius: 15px !important;
}

.instagram-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.instagram-stat strong {
    font-size: 2rem;
    color: var(--fire-yellow);
    font-family: var(--font-primary);
    font-weight: 700;
}

.instagram-stat span {
    color: var(--fire-yellow);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive Instagram Stats */
@media (max-width: 768px) {
    .instagram-stats {
        gap: 2rem;
    }
    
    .instagram-stat strong {
        font-size: 1.5rem;
    }
    
    .instagram-stat span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .instagram-stats {
        gap: 1.5rem;
    }
    
    .instagram-stat strong {
        font-size: 1.3rem;
    }
}

/* Team Section Styles */
.team-section {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, rgba(204, 136, 0, 0.12), rgba(184, 134, 11, 0.08));
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.staff-photo-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition-medium);
}

.staff-photo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.staff-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-medium);
}

.staff-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.staff-photo-container:hover .staff-overlay {
    transform: translateY(0);
}

.staff-overlay h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--fire-yellow);
}

.staff-overlay p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

.team-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-value {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--burgundy-primary);
    transition: var(--transition-medium);
}

.team-value:hover {
    background: rgba(139, 0, 0, 0.1);
    transform: translateX(10px);
}

.team-value i {
    font-size: 2rem;
    color: var(--burgundy-primary);
    margin-top: 0.5rem;
}

.team-value h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-value p {
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

/* Team Section Responsive */
@media (max-width: 768px) {
    .team-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .team-value {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .team-value i {
        margin-top: 0;
    }
    
    .staff-overlay {
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.8);
        margin-top: 1rem;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-value {
        padding: 1rem;
    }
    
    .team-value h4 {
        font-size: 1.2rem;
    }
    
    .staff-overlay h3 {
        font-size: 1.3rem;
    }
}

/* Footer Parking Highlight */
.parking-highlight-footer {
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 68, 0, 0.3);
}

.parking-highlight-footer i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: var(--white);
}

.parking-highlight-footer strong {
    display: block;
    font-size: 1.1rem;
    color: var(--white);
    font-family: var(--font-primary);
    margin-bottom: 0.3rem;
}

.parking-highlight-footer span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.footer-parking {
    text-align: center;
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 25px;
    border: 1px solid var(--fire-orange);
}

.footer-parking i {
    color: var(--fire-orange);
    margin-right: 0.5rem;
}

/* Responsive Footer Parking */
@media (max-width: 768px) {
    .parking-highlight-footer {
        padding: 0.8rem;
    }
    
    .parking-highlight-footer strong {
        font-size: 1rem;
    }
    
    .footer-parking {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
}

/* ========================================
   FREE PARKING BANNER
======================================== */

.free-parking-banner {
    background: linear-gradient(135deg, var(--burgundy-primary), var(--burgundy-secondary));
    padding: 1.5rem 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.parking-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.parking-highlight i {
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.parking-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.parking-subtext {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 400;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .parking-highlight {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .parking-highlight i {
        font-size: 2rem;
    }
    
    .parking-text {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .parking-subtext {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .free-parking-banner {
        padding: 1rem 0;
    }
    
    .parking-text {
        font-size: 1.2rem;
    }
    
    /* Mobile Checkout Alignment Fixes */
    .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    .summary-card,
    .ordering-card {
        padding: 1rem !important;
        margin: 0 !important;
        border-radius: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .summary-card h2,
    .ordering-card h2 {
        font-size: 1.4rem !important;
        text-align: center !important;
        flex-direction: column !important;
        gap: 0.3rem !important;
    }
    
    .checkout-form {
        width: 100% !important;
    }
    
    .form-group {
        margin-bottom: 1rem !important;
        width: 100% !important;
    }
    
    .form-group label {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
        display: block !important;
        color: #000 !important;
        font-family: Arial, Helvetica, sans-serif !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem !important;
        font-size: 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 6px !important;
    }
    
    .square-payment-container {
        width: 100% !important;
        overflow: hidden !important;
        padding: 1rem !important;
    }
    
    #sq-card {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0.8rem !important;
        min-height: 100px !important;
    }
    
    .quick-order-buttons {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }
    
    .btn-large {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1rem !important;
        box-sizing: border-box !important;
    }
    
    .order-method {
        margin-bottom: 1.5rem !important;
    }
    
    .order-method h3 {
        font-size: 1.2rem !important;
        text-align: center !important;
    }
}

/* Square Payment Styles */
.square-payment-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--burgundy-light);
}

#sq-card {
    min-height: 120px !important;
    padding: 1rem !important;
    border-radius: 6px !important;
    background: white !important;
    border: 1px solid #ddd !important;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1) !important;
}

.payment-security-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
}

.payment-security-note i {
    color: #28a745;
}





/* VIP Combo Special Styling */
.menu-item.vip-special {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(184, 134, 11, 0.05));
    position: relative;
    overflow: hidden;
}

.menu-item.vip-special::before {
    content: "PREMIUM";
    position: absolute;
    top: 10px;
    right: -25px;
    background: var(--gold);
    color: var(--charcoal-black);
    padding: 0.2rem 2rem;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.menu-item.vip-special h4 {
    color: var(--gold);
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.menu-item.vip-special .item-info p {
    color: var(--white);
    font-weight: 500;
}

.vip-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.vip-item {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--gold);
}

.add-btn.vip-btn {
    background: linear-gradient(135deg, var(--gold), var(--burgundy-secondary));
    color: var(--charcoal-black);
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.add-btn.vip-btn:hover {
    background: linear-gradient(135deg, var(--burgundy-secondary), var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* VIP Modal Styles */
.vip-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-modal-content {
    background: linear-gradient(135deg, var(--charcoal-black), var(--charcoal-dark));
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.vip-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 1rem;
}

.vip-modal-header h2 {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gold);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--fire-orange);
}

.vip-option-group {
    margin-bottom: 1.5rem;
}

.vip-option-group h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.included-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.included-item {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--gold);
}

.rice-options, .side-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

/* Special styling for VIP modal option labels to maintain white text there */
.vip-modal .option-label {
    color: var(--white);
}

/* Wings deal modal option labels should be dark for readability */
.wings-deal-options .option-label {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    border: 1px solid #ddd;
}

.wings-deal-options .option-label:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--burgundy-primary);
}

.option-label:hover {
    background: rgba(255, 215, 0, 0.1);
}

.option-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.vip-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gold);
}

.vip-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    color: var(--white);
    font-size: 0.9rem;
}

.price-value {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
}

.vip-add-btn {
    background: linear-gradient(135deg, var(--gold), var(--burgundy-secondary)) !important;
    color: var(--charcoal-black) !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.vip-add-btn:hover {
    background: linear-gradient(135deg, var(--burgundy-secondary), var(--gold)) !important;
    transform: translateY(-2px) !important;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.square-ready {
    color: #28a745;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

#sq-payment-flow-message {
    margin-top: 1rem;
}

.square-unavailable {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    color: #d63031;
}

.square-unavailable h3 {
    color: #d63031;
    margin-bottom: 1rem;
}

.square-unavailable i {
    color: #ff6b6b;
}

.payment-id {
    font-family: monospace;
    background: var(--gold);
    color: var(--burgundy-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* About Page Clean Background Override - No Wood Grain */
body.about-page {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 31, 26, 0.9)) !important;
}

/* Ultra Mobile Checkout Fixes - 375px and below */
@media (max-width: 375px) {
    .checkout-grid {
        padding: 0 0.25rem !important;
        gap: 1rem !important;
    }
    
    .summary-card,
    .ordering-card {
        padding: 0.8rem !important;
        border-radius: 8px !important;
    }
    
    .summary-card h2,
    .ordering-card h2 {
        font-size: 1.2rem !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem !important;
        font-size: 0.9rem !important;
    }
    
    .square-payment-container {
        padding: 0.8rem !important;
    }
    
    #sq-card {
        padding: 0.6rem !important;
        min-height: 90px !important;
    }
    
    .btn-large {
        padding: 0.8rem !important;
        font-size: 0.9rem !important;
    }
}