/* ==========================================================================
   WINDY CRUST - BRAND DESIGN SYSTEM
   Theme: 1920s Chicago Industrial / Premium Artisanal Deep Dish
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    /* Color Palette */
    --color-navy: #0F2744;         /* Chicago Night (Trust, Depth) */
    --color-red: #B12228;          /* Chicago Red (Tomatoes, Energy, Hunger) */
    --color-gold: #D8A24A;         /* Baked Gold (Crust, Premium quality) */
    --color-cream: #F5E9D4;        /* Artisanal Cream (Dough, Heritage) */
    --color-bg-dark: #121212;      /* Industrial Black (Steel, Coal) */
    --color-bg-light: #1A1A1A;     /* Soft dark gray for card backgrounds */
    --color-text-white: #FFFFFF;
    --color-text-muted: #A0A0A0;
    --color-text-dark: #222222;
    --color-brick: #4A1E17;        /* Subtle industrial brick shadow */

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Transitions & Borders */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-quick: all 0.2s ease-in-out;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-industrial: 2px solid #2A2A2A;
    
    /* Box Shadows */
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(216, 162, 74, 0.2);
    --shadow-red-glow: 0 0 20px rgba(177, 34, 40, 0.4);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-cream);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, select, input {
    font-family: inherit;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-gold { color: var(--color-gold); }
.text-red { color: var(--color-red); }
.text-cream { color: var(--color-cream); }
.text-muted { color: var(--color-text-muted); }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 2px; }
.font-bold { font-weight: 700; }
.font-italic { font-style: italic; }
.mt-20 { margin-top: 20px; }
.d-none { display: none !important; }
.img-responsive { width: 100%; height: auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-cream);
    box-shadow: 0 4px 15px rgba(177, 34, 40, 0.4);
}

.btn-primary:hover {
    background-color: #d12d34;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(177, 34, 40, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Sections Spacer */
.section-padding {
    padding: 100px 0;
    border-bottom: var(--border-industrial);
}

.section-header {
    margin-bottom: 60px;
}

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

.section-title {
    font-size: 2.8rem;
    color: var(--color-cream);
    margin-bottom: 20px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ==========================================================================
   AMBINET RETRO RADIO (CHICAGO MUSIC CONTROLLER)
   ========================================================================== */
.retro-radio {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium), var(--shadow-glow);
    backdrop-filter: blur(10px);
    width: 280px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.retro-radio.minimized {
    width: 200px;
    height: 48px;
    border: 1px solid var(--color-gold);
}

.retro-radio.minimized .radio-header {
    border-bottom: none;
    padding: 12px 16px;
}

.retro-radio.minimized .radio-body,
.retro-radio.minimized .radio-header #radio-toggle-btn {
    display: none;
}

.retro-radio.minimized .radio-maximize-btn {
    display: flex;
}

.radio-maximize-btn {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    color: var(--color-gold);
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}

.radio-header {
    background-color: var(--color-navy);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(216, 162, 74, 0.3);
}

.radio-icon {
    color: var(--color-gold);
}

.radio-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-cream);
}

.radio-btn {
    background: transparent;
    border: none;
    color: var(--color-cream);
    cursor: pointer;
    font-size: 0.85rem;
}

.radio-body {
    padding: 16px;
}

.track-info {
    text-align: center;
    margin-bottom: 12px;
}

.track-artist {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.track-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.radio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.audio-control-btn {
    background: transparent;
    border: none;
    color: var(--color-cream);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-quick);
}

.audio-control-btn:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.audio-control-btn.play-btn {
    font-size: 1.4rem;
    color: var(--color-gold);
}

.visualizer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 4px;
    height: 20px;
}

.visualizer .bar {
    width: 3px;
    height: 3px;
    background-color: var(--color-red);
    border-radius: 1px;
    transition: height 0.15s ease;
}

/* Visualizer animation when playing */
.retro-radio.playing .visualizer .bar:nth-child(1) { animation: bounce-bar 0.6s ease infinite alternate; }
.retro-radio.playing .visualizer .bar:nth-child(2) { animation: bounce-bar 0.4s ease infinite alternate 0.1s; }
.retro-radio.playing .visualizer .bar:nth-child(3) { animation: bounce-bar 0.7s ease infinite alternate 0.2s; }
.retro-radio.playing .visualizer .bar:nth-child(4) { animation: bounce-bar 0.5s ease infinite alternate 0.05s; }
.retro-radio.playing .visualizer .bar:nth-child(5) { animation: bounce-bar 0.6s ease infinite alternate 0.15s; }

@keyframes bounce-bar {
    0% { height: 3px; }
    100% { height: 18px; }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(18, 18, 18, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 5px 0;
}

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

.brand-logo-container {
    display: block;
    width: 90px;
    transition: var(--transition-smooth);
}

.brand-logo-img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    background-color: var(--color-cream);
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-quick);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-trigger-btn {
    background: transparent;
    border: none;
    color: var(--color-cream);
    font-size: 1.3rem;
    cursor: pointer;
    position: relative;
    padding: 6px;
    transition: var(--transition-quick);
}

.cart-trigger-btn:hover {
    color: var(--color-gold);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--color-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-bg-dark);
    animation: pop-badge 0.3s ease;
}

@keyframes pop-badge {
    0% { transform: scale(0); }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-cream);
    font-size: 1.3rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    max-width: 800px;
    padding: 40px 24px;
    z-index: 2;
    animation: fade-up 1s ease;
}

.hero-tagline {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-cream);
}

.highlight-gold {
    color: var(--color-gold);
    font-style: italic;
    font-family: var(--font-serif);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-white);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    z-index: 2;
}

.scroll-indicator i {
    font-size: 1.1rem;
    color: var(--color-gold);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

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

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

/* ==========================================================================
   PIZZA LAYER EXPLORER
   ========================================================================== */
.explorer-section {
    background-color: var(--color-bg-light);
}

.explorer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.visualizer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    height: 480px;
}

.pizza-layers-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    height: 100%;
    transform: rotateX(45deg) rotateZ(-15deg);
    transform-style: preserve-3d;
}

.layer-item {
    position: relative;
    width: 320px;
    height: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
}

.layer-slice {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    height: 100%;
}

.layer-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-quick);
}

.layer-graphic {
    width: 200px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.1);
    transform: rotateX(15deg);
    transition: var(--transition-smooth);
}

/* Layer Specific Colors */
.layer-garnish .layer-graphic {
    background: radial-gradient(circle, rgba(216,162,74,0.3) 0%, rgba(245,233,212,0.1) 80%);
    border: 2px dashed var(--color-gold);
}
.layer-sauce .layer-graphic {
    background: radial-gradient(circle, rgba(177,34,40,0.8) 0%, rgba(177,34,40,0.5) 80%);
    border: 2px solid var(--color-red);
    box-shadow: 0 5px 15px rgba(177,34,40,0.3);
}
.layer-sausage .layer-graphic {
    background: radial-gradient(circle, rgba(50,50,50,0.8) 0%, rgba(30,30,30,0.6) 80%);
    border: 2px solid #333333;
}
.layer-cheese .layer-graphic {
    background: radial-gradient(circle, rgba(245,233,212,0.9) 0%, rgba(245,233,212,0.6) 80%);
    border: 2px solid var(--color-cream);
    box-shadow: 0 5px 15px rgba(245,233,212,0.2);
}
.layer-crust .layer-graphic {
    background: radial-gradient(circle, rgba(216,162,74,0.9) 0%, rgba(216,162,74,0.6) 80%);
    border: 4px solid var(--color-gold);
    box-shadow: 0 8px 25px rgba(216,162,74,0.4);
    height: 45px;
}

/* Hover & Active Stack Animations */
.layer-item:hover {
    transform: translateZ(25px) scale(1.05);
}

.layer-item:hover .layer-label {
    color: var(--color-gold);
    text-shadow: var(--shadow-glow);
}

.layer-item.active {
    transform: translateZ(50px) scale(1.1);
}

.layer-item.active .layer-label {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.layer-item.active .layer-graphic {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.layer-item.active.layer-sauce .layer-graphic { box-shadow: var(--shadow-red-glow); }
.layer-item.active.layer-crust .layer-graphic { box-shadow: var(--shadow-glow); }

/* Details Panel Styling */
.layer-details-panel {
    background-color: var(--color-bg-dark);
    border: var(--border-industrial);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    border-left: 5px solid var(--color-gold);
}

.detail-card {
    animation: fade-in 0.5s ease;
    width: 100%;
}

.detail-icon {
    font-size: 2.5rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.icon-gold { color: var(--color-gold); }
.icon-red { color: var(--color-red); }
.icon-dark { color: #666; }
.icon-cream { color: var(--color-cream); }

.detail-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--color-cream);
}

.detail-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.detail-highlight {
    display: block;
    font-style: italic;
    color: var(--color-gold);
    font-weight: 600;
}

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

/* ==========================================================================
   PRODUCT EMBLEM SHOWCASE ("THE WINDY")
   ========================================================================== */
.emblem-section {
    background-color: #0c0c0c;
}

.emblem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.emblem-image-wrapper {
    display: flex;
    justify-content: center;
}

.emblem-frame {
    position: relative;
    padding: 16px;
    background: linear-gradient(135deg, #181818 0%, #2b2b2b 100%);
    border: 4px solid var(--color-navy);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium), 0 0 40px rgba(15, 39, 68, 0.4);
    overflow: hidden;
}

.emblem-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: calc(var(--border-radius-lg) - 4px);
    pointer-events: none;
}

.emblem-img {
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.emblem-frame:hover .emblem-img {
    transform: scale(1.03);
}

.emblem-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 6px;
}

.emblem-text-content {
    display: flex;
    flex-direction: column;
}

.emblem-title {
    font-size: 3.5rem;
    margin-top: 10px;
    margin-bottom: 5px;
    color: var(--color-cream);
}

.emblem-slogan {
    font-size: 1.4rem;
    color: var(--color-gold);
    font-family: var(--font-primary);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 24px;
}

.emblem-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.emblem-ingredients-list {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.emblem-ingredients-list li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-cream);
}

.emblem-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid #222;
    padding-top: 30px;
}

.emblem-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-primary);
    display: flex;
    flex-direction: column;
}

.emblem-price small {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(216, 162, 74, 0.4);
    color: var(--color-cream);
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-quick);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-item-card {
    background-color: var(--color-bg-light);
    border: var(--border-industrial);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-premium);
}

.item-img-container {
    position: relative;
    height: 220px;
    background-color: #0c0c0c;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.item-placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
}

.bg-navy { background-color: var(--color-navy); }

.item-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.item-tag.red { background-color: var(--color-red); color: white; }
.item-tag.gold { background-color: var(--color-gold); color: var(--color-bg-dark); }

.item-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.item-title-row h3 {
    font-size: 1.4rem;
    color: var(--color-cream);
}

.item-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold);
}

.item-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-menu-cart {
    background-color: transparent;
    color: var(--color-cream);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    padding: 10px 20px;
}

.menu-item-card:hover .btn-menu-cart {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-cream);
}

.btn-menu-cart:hover {
    background-color: var(--color-red) !important;
    border-color: var(--color-red) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(177, 34, 40, 0.4);
}

/* ==========================================================================
   BRAND STORY ("SINCE CHICAGO INSPIRED")
   ========================================================================== */
.story-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text-card {
    background-color: rgba(18, 18, 18, 0.85);
    border: var(--border-industrial);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    backdrop-filter: blur(10px);
}

.story-tag {
    color: var(--color-red);
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.story-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: var(--color-cream);
}

.story-paragraph {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-assets-card {
    display: flex;
    flex-direction: column;
}

.heritage-box {
    background-color: rgba(15, 39, 68, 0.3);
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.heritage-box h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.uniforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(216,162,74,0.2);
    padding-bottom: 30px;
}

.uniform-item {
    text-align: center;
}

.uniform-item i {
    font-size: 2rem;
    margin-bottom: 12px;
}

.uniform-item h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--color-cream);
    text-transform: uppercase;
}

.uniform-item p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.sensory-strategy h4 {
    font-size: 1.1rem;
    color: var(--color-cream);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sensory-strategy p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

/* ==========================================================================
   RESERVATION SECTION
   ========================================================================== */
.reservation-box {
    background-color: var(--color-bg-light);
    border: var(--border-industrial);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-premium);
    max-width: 900px;
    margin: 0 auto;
}

.reservation-form {
    margin-top: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 30px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
}

.form-group input, .form-group select {
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-cream);
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: var(--shadow-glow);
}

.form-group select option {
    background-color: var(--color-bg-dark);
    color: var(--color-cream);
}

.form-submit button {
    min-width: 300px;
}

/* Success Message inside Reservation Box */
.success-message {
    text-align: center;
    padding: 40px 0;
    animation: fade-in 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.success-message h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--color-cream);
}

.success-message p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ==========================================================================
   CART SIDEBAR DRAWER & OVERLAY
   ========================================================================== */
.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    z-index: 1002;
    background-color: var(--color-bg-dark);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    border-left: var(--border-industrial);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.cart-sidebar-header {
    padding: 24px;
    border-bottom: var(--border-industrial);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-sidebar-header h3 {
    font-size: 1.6rem;
    color: var(--color-cream);
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-quick);
}

.cart-close-btn:hover {
    color: var(--color-gold);
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Empty State */
.cart-empty-state {
    text-align: center;
    margin: auto 0;
    color: var(--color-text-muted);
}

.empty-icon {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 20px;
}

.cart-empty-state p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Cart Item Styling */
.cart-item {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
    align-items: center;
    animation: fade-in 0.3s ease;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.05);
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--color-cream);
}

.cart-item-details .price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gold);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-btn {
    background-color: var(--color-bg-light);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-cream);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition-quick);
}

.qty-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
}

.qty-val {
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 1rem;
    padding: 6px;
    transition: var(--transition-quick);
}

.cart-item-remove:hover {
    color: var(--color-red);
}

/* Cart Footer */
.cart-footer {
    padding: 24px;
    border-top: var(--border-industrial);
    background-color: #0d0d0d;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.cart-summary-row.total-row {
    margin-top: 8px;
    border-top: 1px solid #222;
    padding-top: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-cream);
}

.cart-summary-row.total-row #cart-total {
    color: var(--color-gold);
}

.pizza-box-notice {
    display: flex;
    gap: 12px;
    background-color: rgba(15, 39, 68, 0.3);
    border: 1px solid rgba(216,162,74,0.2);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    margin: 16px 0;
    line-height: 1.4;
    color: var(--color-cream);
}

.pizza-box-notice i {
    font-size: 1.2rem;
    color: var(--color-gold);
}

.checkout-btn {
    padding: 16px;
    font-size: 1rem;
}

.checkout-btn:disabled {
    background-color: #333;
    color: #666;
    box-shadow: none;
    cursor: not-allowed;
}

/* ==========================================================================
   MODALS (CHECKOUT & SUCCESS SCREENS)
   ========================================================================== */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    background-color: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.checkout-modal-content {
    background-color: var(--color-bg-dark);
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    padding: 40px;
    box-shadow: var(--shadow-premium), var(--shadow-glow);
    animation: zoom-in 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes zoom-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.checkout-box-top {
    text-align: center;
    border-bottom: 1px solid #222;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.modal-logo {
    width: 70px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    background-color: var(--color-cream);
    margin-bottom: 16px;
}

.checkout-box-top h2 {
    font-size: 1.8rem;
    color: var(--color-cream);
}

.modal-slogan {
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-body-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.quote-box {
    background-color: rgba(15, 39, 68, 0.3);
    border-left: 3px solid var(--color-red);
    padding: 16px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin: 20px 0;
}

.quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-cream) !important;
    margin-bottom: 0 !important;
}

.modal-subtext {
    font-size: 0.8rem !important;
    color: var(--color-gold) !important;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.modal-actions button {
    flex: 1;
}

/* Success Order Animation & Elements */
.success-pizza-box-animation {
    position: relative;
    display: inline-flex;
    justify-content: center;
    margin-bottom: 30px;
}

.success-box-icon {
    font-size: 5rem;
    animation: pulse-box 2s infinite alternate;
}

.success-steam {
    position: absolute;
    top: -30px;
    display: flex;
    gap: 8px;
}

.success-steam span {
    width: 4px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    animation: rise-steam 1.5s infinite linear;
}

.success-steam span:nth-child(1) { animation-delay: 0.2s; }
.success-steam span:nth-child(2) { animation-delay: 0.7s; }
.success-steam span:nth-child(3) { animation-delay: 0.4s; }

@keyframes rise-steam {
    0% { transform: translateY(10px) scaleY(0.5); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-20px) scaleY(1.5); opacity: 0; }
}

@keyframes pulse-box {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(216,162,74,0.3)); }
    100% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(216,162,74,0.6)); }
}

.success-order-time {
    font-size: 1.2rem;
    margin: 16px 0;
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */
.main-footer {
    background-color: #080808;
    color: var(--color-text-muted);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 80px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    background-color: var(--color-cream);
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #161616;
    color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.footer-socials a:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    box-shadow: var(--shadow-glow);
}

.footer-hours h3, .footer-contact h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-cream);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.hours-notice {
    margin-top: 20px;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--color-gold);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid #161616;
    padding-top: 30px;
    font-size: 0.8rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .explorer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visualizer-container {
        height: 380px;
    }
    
    .emblem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 5px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background-color: var(--color-bg-dark);
        border-top: 1px solid rgba(42,42,42,0.5);
        transition: var(--transition-smooth);
        padding: 40px 24px;
        z-index: 998;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reservation-box {
        padding: 40px 24px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .uniforms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .emblem-title {
        font-size: 2.5rem;
    }
    
    .emblem-cta-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .emblem-price {
        font-size: 1.6rem;
    }
    
    .layer-details-panel {
        padding: 24px;
    }
    
    .layer-label {
        font-size: 0.8rem;
    }
    
    .layer-graphic {
        width: 150px;
        height: 30px;
    }
    
    .retro-radio {
        left: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
    }
    
    .retro-radio.minimized {
        width: 180px;
    }
}
