/* Pizza Bono - Main Stylesheet
   A Slice of Happiness | 675 Danforth Avenue, Toronto
   ================================================== */

/* CSS Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - From Pizza Bono Logo */
    --brand-green: #1B5E20;
    --brand-green-light: #2E7D32;
    --brand-green-accent: #4CAF50;
    --brand-red: #C62828;
    --brand-red-light: #D32F2F;

    /* Background Colors */
    --bg-dark: #2C1810;
    --bg-dark-light: #3D2518;
    --bg-darker: #1a0f0a;

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-subtle: rgba(255, 255, 255, 0.5);

    /* Accent Colors */
    --accent-beige: #FFE0B2;
    --accent-gold: #FFC107;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-green: 0 8px 30px rgba(27, 94, 32, 0.4);
    --shadow-red: 0 8px 30px rgba(198, 40, 40, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

/* Lucide Icon Sizing */
.icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.icon-sm {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.icon-large {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    color: var(--text-white);
}

.icon-xl {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

.icon-title {
    width: 36px;
    height: 36px;
    stroke-width: 2;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.deal-icon .icon-xl,
.social-icon .icon-xl {
    color: var(--text-white);
}

/* Brand Logo Icons */
.brand-logo {
    width: 26px;
    height: 26px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.brand-logo-lg {
    width: 36px;
    height: 36px;
}

.brand-logo-xl {
    width: 48px;
    height: 48px;
}


/* Accessibility - Focus Indicators */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--brand-green-accent);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--brand-green);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: 900px;
}

/* =====================================
   HEADER
   ===================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) var(--space-lg);
    transition: var(--transition-normal);
    background: transparent;
}

.header.scrolled {
    background: rgba(44, 24, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem var(--space-lg);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header-logo img {
    width: 55px;
    height: 55px;
    transition: transform var(--transition-normal);
}

.header-logo:hover img {
    transform: scale(1.05);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu {
    display: flex;
    gap: var(--space-md);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-green-accent);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--brand-green-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* CTA Button in Header */
.btn-header {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-green);
    transition: var(--transition-normal);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(27, 94, 32, 0.5);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-normal);
}

/* =====================================
   HERO SECTION
   ===================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(44, 24, 16, 0.85) 0%,
            rgba(44, 24, 16, 0.7) 50%,
            rgba(44, 24, 16, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Hero Logo */
.hero-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--space-sm);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Brand Text */
.hero-brand {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-xs);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-brand .brand-p {
    color: var(--brand-green-light);
}

.hero-brand .brand-izza,
.hero-brand .brand-bono {
    color: var(--brand-red);
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

/* Promo Strip */
.promo-strip {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 224, 178, 0.3);
    border-radius: var(--radius-full);
    padding: var(--space-sm) var(--space-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Animated Promo Items */
/* Optimized Promo Glow using Opacity */
.promo-animated {
    position: relative;
    /* Base shadow state */
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.2);
}

.promo-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 30px rgba(76, 175, 80, 0.4), 0 0 20px rgba(76, 175, 80, 0.2);
    opacity: 0;
    z-index: -1;
    transition: opacity 3s ease-in-out;
    animation: promoGlowOpacity 3s ease-in-out infinite;
}

@keyframes promoGlowOpacity {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.promo-item:hover {
    background: rgba(27, 94, 32, 0.25);
    border-color: var(--brand-green-accent);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
}

/* Promo Arrow */
.promo-arrow {
    width: 20px;
    height: 20px;
    color: var(--brand-green-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.promo-item:hover .promo-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Icon bounce on hover */
.promo-item:hover .promo-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.4);
    transition: var(--transition-normal);
}

.promo-text {
    text-align: left;
}

.promo-headline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-green-accent);
    transition: var(--transition-normal);
    white-space: nowrap;
}

.promo-item:hover .promo-headline {
    color: var(--text-white);
}

.promo-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .promo-item {
        padding: 0.75rem 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .promo-headline {
        font-size: 1.1rem;
    }

    .promo-subtext {
        font-size: 0.8rem;
    }
}

/* Hero Description */
.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto var(--space-xl);
}

/* CTA Buttons */
.cta-group {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    min-width: 200px;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.85rem;
        min-width: unset;
        width: 100%;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(27, 94, 32, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
    transform: translateY(-3px);
}

/* Italian Flag Button Colors - Green / White / Red */
.btn-uber {
    background: linear-gradient(135deg, #06c167 0%, #00b14f 100%);
    color: var(--text-white);
    box-shadow: 0 8px 30px rgba(6, 193, 103, 0.4);
}

.btn-uber:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(6, 193, 103, 0.5);
}

.btn-white {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    color: #1a0f0a;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.5);
}

.btn-doordash {
    background: linear-gradient(135deg, #ff3008 0%, #ff6b35 100%);
    color: var(--text-white);
    box-shadow: 0 8px 30px rgba(255, 48, 8, 0.4);
}

.btn-doordash:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(255, 48, 8, 0.5);
}

.btn-menu {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-menu:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.trust-badge svg {
    width: 26px;
    height: 26px;
    color: var(--brand-green-accent);
}

/* =====================================
   DEALS SECTION - PREMIUM DESIGN
   ===================================== */
.deals-section {
    padding: var(--space-3xl) var(--space-md);
    background:
        /* Diagonal stripes pattern */
        repeating-linear-gradient(-45deg,
            transparent 0px,
            transparent 40px,
            rgba(76, 175, 80, 0.04) 40px,
            rgba(76, 175, 80, 0.04) 80px),
        /* Glowing orbs */
        radial-gradient(circle at 5% 20%, rgba(76, 175, 80, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 95% 80%, rgba(198, 40, 40, 0.25) 0%, transparent 20%),
        radial-gradient(circle at 50% 90%, rgba(255, 193, 7, 0.15) 0%, transparent 30%),
        /* Rich base gradient */
        linear-gradient(135deg, #0d0705 0%, #1a0f0a 20%, #2C1810 50%, #3D2518 80%, #2C1810 100%);
    position: relative;
    overflow: hidden;
}

/* Animated glow overlay */
.deals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(76, 175, 80, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 100%, rgba(198, 40, 40, 0.15) 0%, transparent 40%);
    animation: bgGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes bgGlow {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Animated Italian flag border at top */
/* Animated Italian flag border at top - Optimized with Transform */
.deals-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    /* Allow width to exceed container */
    width: 200%;
    /* Double width for seamless loop */
    height: 5px;
    background: linear-gradient(90deg,
            var(--brand-green) 0%,
            var(--brand-green-accent) 15%,
            #ffffff 30%,
            #ffffff 45%,
            var(--brand-red) 60%,
            var(--brand-red-light) 75%,
            var(--brand-green) 90%);
    /* Removed background-size and position animation */
    animation: italianFlagSlide 6s linear infinite;
    will-change: transform;
}

@keyframes italianFlagSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the width (which is 100% of parent) */
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--brand-green-accent);
    margin-bottom: var(--space-xs);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

/* Premium Deal Cards */
.deal-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Card Glow Effect */
/* Card Glow Effect - Optimized */
.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-green-accent), var(--brand-red), var(--brand-green-accent));
    animation: shimmerSlide 3s linear infinite;
    will-change: transform;
}

@keyframes shimmerSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Card Shine Effect */
.deal-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.03) 50%,
            transparent 70%);
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.8s ease;
}

.deal-card:hover::after {
    transform: rotate(45deg) translateY(-100%);
}

.deal-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(76, 175, 80, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Card 1 - Green Theme */
.deal-card:nth-child(1) {
    border-color: rgba(76, 175, 80, 0.3);
}

.deal-card:nth-child(1):hover {
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(76, 175, 80, 0.2);
}

/* Card 2 - Red Theme */
.deal-card:nth-child(2) {
    border-color: rgba(198, 40, 40, 0.3);
}

.deal-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--brand-red), var(--brand-green-accent), var(--brand-red));
    background-size: 200% 100%;
}

.deal-card:nth-child(2):hover {
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(198, 40, 40, 0.2);
}

/* Card 3 - Mixed Theme */
.deal-card:nth-child(3) {
    border-color: rgba(255, 193, 7, 0.3);
}

.deal-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--brand-green-accent), var(--accent-gold), var(--brand-red));
    background-size: 200% 100%;
}

.deal-card:nth-child(3):hover {
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(255, 193, 7, 0.15);
}

.deal-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow:
        0 10px 30px rgba(27, 94, 32, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

/* Icon Pulse Ring */
.deal-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--brand-green-accent);
    opacity: 0;
    animation: iconPulse 2s ease-out infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.deal-card:hover .deal-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow:
        0 15px 40px rgba(27, 94, 32, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.deal-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-green-accent);
    margin-bottom: var(--space-xs);
    text-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
    position: relative;
    z-index: 2;
}

.deal-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
}

.deal-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.deal-cta {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 2px solid var(--brand-green-accent);
    border-radius: var(--radius-full);
    color: var(--brand-green-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .deal-cta {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
    }
}

.deal-cta:hover {
    background: var(--brand-green-accent);
    color: var(--text-white);
}

/* =====================================
   PAGE SECTIONS - PREMIUM DESIGN
   ===================================== */
.page-section {
    padding: var(--space-3xl) var(--space-md);
    padding-top: calc(var(--space-3xl) + 80px);
    min-height: 100vh;
    background:
        /* Diagonal stripes pattern */
        repeating-linear-gradient(45deg,
            transparent 0px,
            transparent 50px,
            rgba(76, 175, 80, 0.03) 50px,
            rgba(76, 175, 80, 0.03) 100px),
        /* Glowing orbs */
        radial-gradient(circle at 10% 30%, rgba(76, 175, 80, 0.25) 0%, transparent 25%),
        radial-gradient(circle at 90% 70%, rgba(198, 40, 40, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 50% 100%, rgba(255, 193, 7, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 70% 10%, rgba(76, 175, 80, 0.15) 0%, transparent 20%),
        /* Rich base gradient */
        linear-gradient(180deg, #0d0705 0%, #1a0f0a 15%, #2C1810 40%, #3D2518 70%, #2C1810 100%);
    position: relative;
    overflow: hidden;
}

/* Animated glow overlay */
.page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(76, 175, 80, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(198, 40, 40, 0.1) 0%, transparent 50%);
    animation: pageGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes pageGlow {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* Italian flag border at top */
.page-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--brand-green) 0%,
            var(--brand-green-accent) 25%,
            #ffffff 45%,
            #ffffff 55%,
            var(--brand-red) 75%,
            var(--brand-red-light) 100%);
    background-size: 200% 100%;
    animation: italianBorder 4s linear infinite;
}

@keyframes italianBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.page-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-sm);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Menu Images */
.menu-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.menu-image-wrapper {
    background: var(--text-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
}

.menu-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.menu-image-wrapper img {
    width: 100%;
    display: block;
}

/* Order CTA Section */
.order-cta-section {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-green);
}

.order-cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.order-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
}

.order-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.btn-order {
    background: var(--text-white);
    color: var(--brand-green);
    font-weight: 700;
}

.btn-order:hover {
    background: var(--accent-beige);
    transform: translateY(-3px);
}

/* =====================================
   FIND US PAGE - PREMIUM DESIGN
   ===================================== */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.social-card {
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    color: var(--text-white);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Shimmer overlay */
.social-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.6s ease;
}

.social-card:hover::before {
    transform: rotate(45deg) translateY(-100%);
}

.social-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.social-card.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-card.instagram:hover {
    box-shadow: 0 25px 60px rgba(131, 58, 180, 0.4);
}

.social-card.google {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #fbbc05 75%, #ea4335 100%);
}

.social-card.google:hover {
    box-shadow: 0 25px 60px rgba(66, 133, 244, 0.4);
}

.social-card.uber {
    background: linear-gradient(135deg, #06c167 0%, #00b14f 100%);
}

.social-card.uber:hover {
    box-shadow: 0 25px 60px rgba(6, 193, 103, 0.4);
}

.social-card.doordash {
    background: linear-gradient(135deg, #ff3008 0%, #ff6b35 100%);
}

.social-card.doordash:hover {
    box-shadow: 0 25px 60px rgba(255, 48, 8, 0.4);
}

.social-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

/* Icon pulse ring */
.social-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: socialPulse 2s ease-out infinite;
}

@keyframes socialPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.social-card:hover .social-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.social-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: var(--space-md);
}

.social-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.social-btn:hover {
    background: var(--text-white);
    color: #333;
}

/* Contact Page Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Info Card */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    z-index: 2;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    z-index: 2;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-value a {
    color: var(--brand-green-accent);
}

.contact-value a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =====================================
   CONTACT PAGE
   ===================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text-light);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--brand-green-accent);
    background: rgba(255, 255, 255, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-subtle);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-green);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 94, 32, 0.5);
}

/* =====================================
   FOOTER
   ===================================== */
.footer {
    background: var(--bg-darker);
    padding: var(--space-xl) var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand img {
    width: 70px;
    height: 70px;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-green-accent);
    margin-bottom: var(--space-md);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--brand-green-accent);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact-item span {
    font-size: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
    color: var(--text-subtle);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--brand-green-accent);
    transform: translateY(-3px);
}

/* =====================================
   RESPONSIVE DESIGN
   ===================================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: var(--space-sm);
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .hero-brand {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }

    .promo-strip {
        flex-direction: column;
        align-items: center;
    }

    .promo-item {
        width: 100%;
        max-width: 320px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .trust-badges {
        gap: var(--space-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .deal-card {
        padding: var(--space-md);
    }

    .deal-value {
        font-size: 2.25rem;
    }
}

/* Mobile Navigation (when active) */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: var(--space-lg);
    gap: var(--space-md);
    box-shadow: var(--shadow-xl);
}

.nav-menu.active .nav-link {
    font-size: 1.1rem;
    padding: var(--space-sm) 0;
}

/* =====================================
   ITALIAN GREEN & RED BRAND ACCENTS
   ===================================== */

/* Red Accent Links */
.footer-links a:hover {
    color: var(--brand-red);
}

/* Red CTA Button Variant */
.btn-red {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-red);
}

.btn-red:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(198, 40, 40, 0.5);
}

/* Secondary buttons with red border on hover */
.btn-secondary:hover {
    border-color: var(--brand-red);
    color: var(--brand-red-light);
}

/* Deal Cards - Alternating Red/Green */
.deal-card:nth-child(2) {
    border-color: rgba(198, 40, 40, 0.3);
}

.deal-card:nth-child(2):hover {
    border-color: var(--brand-red);
    box-shadow: 0 20px 60px rgba(198, 40, 40, 0.15);
}

.deal-card:nth-child(2) .deal-value {
    color: var(--brand-red);
}

.deal-card:nth-child(2) .deal-cta {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.deal-card:nth-child(2) .deal-cta:hover {
    background: var(--brand-red);
    color: var(--text-white);
}

/* Section Title Red Accent */
.section-title::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 4px;
    background: var(--brand-red);
    margin-right: 1rem;
    vertical-align: middle;
    border-radius: 2px;
}

.section-title::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 4px;
    background: var(--brand-green-accent);
    margin-left: 1rem;
    vertical-align: middle;
    border-radius: 2px;
}

/* Page Title with Green/Red underline */
.page-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green-accent) 0%, var(--brand-red) 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Footer Heading Red Accent */
.footer-heading::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--brand-red);
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Promo Item - Second one with Red */
.promo-item:nth-child(2) .promo-icon {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

.promo-item:nth-child(2) .promo-headline {
    color: var(--brand-red-light);
}

.promo-item:nth-child(2):hover {
    background: rgba(198, 40, 40, 0.2);
    border-color: var(--brand-red);
}

/* Social Card - DoorDash already red, make Google reviews card have some red */
.social-icon {
    transition: var(--transition-normal);
}

/* Trust Badge - Star icon in Red */
.trust-badge:nth-child(2) svg {
    color: var(--brand-red);
}

/* Hero Tagline with Italian Flag Colors */
.hero-tagline::before {
    content: '●';
    color: var(--brand-green-accent);
    margin-right: 0.75rem;
    font-size: 0.6rem;
    vertical-align: middle;
}

.hero-tagline::after {
    content: '●';
    color: var(--brand-red);
    margin-left: 0.75rem;
    font-size: 0.6rem;
    vertical-align: middle;
}

/* Contact Icon - Alternate colors */
.contact-item:nth-child(even) .contact-icon {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
}

/* Nav Link Active State - Red underline */
.nav-link.active {
    color: var(--brand-green-accent);
}

.nav-link.active::after {
    background: linear-gradient(90deg, var(--brand-green-accent) 0%, var(--brand-red) 100%);
}

/* Order CTA Section - Add red border accent */
.order-cta-section {
    border: 3px solid var(--brand-red);
}

/* Form Submit Button - Red accent on hover */
.btn-submit:hover {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 100%);
    box-shadow: var(--shadow-red);
}

/* FIX: Mobile Section Title Lines */
@media (max-width: 768px) {
    .section-title {
        display: block;
        width: 100%;
        margin: 0 auto 1rem auto;
        padding: 0;
        border: none !important;
    }

    .section-title::before,
    .section-title::after {
        display: none !important;
        content: none !important;
    }

    .section-header {
        display: block;
    }

    .section-header::before,
    .section-header::after {
        display: none !important;
    }
}

/* Animation Utility Class (Needed for scroll animations) */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* =====================================
   DIGITAL MENU STYLES
   ===================================== */
.menu-section {
    padding: var(--space-xl) 0;
}

.menu-category {
    margin-bottom: var(--space-3xl);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--brand-green-accent);
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-red), transparent);
}

/* Grid Layouts */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.menu-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: var(--space-lg);
}

/* Menu Item Card */
.menu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Card Header (Title + Price) */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-xs);
    gap: var(--space-sm);
}

.menu-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}

.menu-price {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--brand-gold, #FFC107);
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Pizza Sizes Table */
.pizza-sizes {
    width: 100%;
    margin-top: var(--space-lg);
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.pizza-sizes th,
.pizza-sizes td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pizza-sizes th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--brand-green-accent);
}

.pizza-sizes td:last-child {
    text-align: right;
    color: var(--brand-gold, #FFC107);
    font-weight: 700;
}

/* Toppings & Extras */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
}

.extra-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.extra-name {
    color: var(--text-light);
}

.extra-price {
    color: var(--brand-gold, #FFC107);
    font-weight: 600;
}

/* Combos - Highlighted Styles */
.combo-card {
    background: linear-gradient(145deg, rgba(44, 24, 16, 0.8), rgba(27, 94, 32, 0.2));
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.combo-card .menu-title {
    color: var(--brand-green-accent);
    font-size: 1.5rem;
}

.combo-card .menu-price {
    font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
    }

    .menu-grid-wide {
        grid-template-columns: 1fr;
    }
}