/* BigStack Burgers - Brand Colors */
:root {
    --bigstack-red: #E12222;       /* Fast-food red */
    --mustard-yellow: #F9E547;     /* Logo yellow */
    --grill-black: #111111;        /* Deep black */
    --patty-brown: #8B4513;        /* Support color */
    --sesame-white: #FFFFFF;       /* Clean white */
    --pickle-green: #2E8B57;       /* Accent only */
    
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.promo-banner{background:var(--mustard-yellow);color:var(--grill-black);text-align:center;padding:8px 12px;font-weight:800;position:sticky;top:70px;z-index:940}
.promo-banner a{color:var(--grill-black);text-decoration:underline}

/* Animated Deals Ticker */
.deals-ticker {
    background: var(--mustard-yellow);
    color: var(--grill-black);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 8px;
}

.ticker-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: ticker 60s linear infinite 2s;
    white-space: nowrap;
    width: max-content;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    padding: 0.5rem 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--grill-black);
    text-shadow: none;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.ticker-item:hover {
    color: var(--bigstack-red);
    transform: translateY(-1px);
}

.ticker-action {
    padding-right: 1rem;
    flex-shrink: 0;
}

.ticker-btn {
    background: var(--bigstack-red);
    color: var(--sesame-white);
    border: 2px solid var(--bigstack-red);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.ticker-btn:hover {
    background: var(--sesame-white);
    color: var(--grill-black);
    border-color: var(--sesame-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Ensure ticker animation works smoothly */
.ticker-content {
    will-change: transform;
    transform: translateZ(0);
}

/* Mobile responsive for ticker */
@media (max-width: 768px) {
    .deals-ticker {
        flex-direction: column;
        padding: 0.75rem 0;
        gap: 0.5rem;
    }
    
    .ticker-action {
        padding-right: 0;
    }
    
    .ticker-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .ticker-item {
        font-size: 0.8rem;
        padding: 0 1.5rem;
    }
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--grill-black);
    background-color: var(--sesame-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    transition: margin-right 0.3s ease-in-out;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--grill-black);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--patty-brown);
    margin-bottom: 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ec1d23;
    border-bottom: 3px solid var(--mustard-yellow);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.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;
}
.nav-logo-img{height:48px;width:auto;display:block;}
@media (max-width:768px){.nav-logo-img{height:40px}}

/* Hide cart button on mobile */
@media (max-width: 768px) {
    .nav-cart {
        display: none;
    }
}

.nav-cart {
    display: flex;
    align-items: center;
}

.cart-btn {
    background: #FFEB3B;
    color: var(--grill-black);
    border: 2px solid #FFEB3B;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-btn:hover {
    background: var(--bigstack-red);
    color: var(--sesame-white);
    border-color: var(--bigstack-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Override btn-primary for nav-cart to ensure yellow background */
.nav-cart .btn-primary {
    background: #FFEB3B !important;
    color: var(--grill-black) !important;
    border-color: #FFEB3B !important;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--mustard-yellow);
    color: var(--grill-black);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--sesame-white);
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--sesame-white);
    font-weight: 700;
    transition: var(--transition);
    position: relative;
}

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

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--grill-black);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--sesame-white) 0%, #F5E6D3 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 100%;
    height: 140%;
    background: linear-gradient(135deg, var(--mustard-yellow) 0%, #FF8A00 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.08;
    transform: rotate(-5deg);
    z-index: 1;
}

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

.hero-title {
    font-size: 4.5rem;
    color: var(--grill-black);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    font-family: 'Bungee', sans-serif;
    line-height: 1.1;
}

.hero-title span {
    display: block;
    color: var(--bigstack-red);
    -webkit-text-stroke: 2px var(--bigstack-red);
    text-shadow: 3px 3px 0 rgba(214, 40, 40, 0.2);
    font-size: 5.5rem;
}

.hero-tagline {
    font-family: 'Bungee', sans-serif;
    font-size: 1.8rem;
    color: var(--bigstack-red);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-subtagline {
    font-family: 'Bungee', sans-serif;
    font-size: 1.2rem;
    color: var(--mustard-yellow);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--patty-brown);
    margin-bottom: 2rem;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--bigstack-red);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--bigstack-red);
    color: #fff;
    font-size: 1.1rem;
    padding: 12px 28px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(0);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(225, 34, 34, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.3);
}

.btn-secondary {
    background: var(--mustard-yellow);
    color: var(--grill-black);
}

.btn-secondary:hover {
    background: #e89b4a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Hero Burger Animation */
.hero-image {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(2%);
}

.hero-burger {
    width: 115%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
    object-fit: contain;
    transform: rotate(-8deg);
}

/* Add a subtle glow effect */
.hero-burger::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.15) 0%, rgba(255, 138, 0, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* Remove old burger stack styles */
.burger-stack,
.burger-patty,
.burger-cheese,
.burger-bun-top {
    display: none;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(-8deg); 
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
    }
    50% { 
        transform: translateY(-20px) rotate(-6deg); 
        filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.3));
    }
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sesame-white) 0%, rgba(244, 162, 97, 0.1) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="menu-pattern" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="3" fill="%23e63946" opacity="0.05"/><circle cx="7" cy="7" r="1.5" fill="%23f4a261" opacity="0.05"/><circle cx="23" cy="23" r="1.5" fill="%236f4e37" opacity="0.05"/></pattern></defs><rect width="60" height="60" fill="url(%23menu-pattern)"/></svg>');
    background-size: cover, 30px 30px;
    position: relative;
}

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

.category-btn {
    padding: 12px 24px;
    border: 2px solid var(--bigstack-red);
    background: transparent;
    color: var(--bigstack-red);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.category-btn.active,
.category-btn:hover {
    background: var(--bigstack-red);
    color: var(--sesame-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

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

.menu-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--mustard-yellow);
    background: rgba(255, 255, 255, 1);
}

.menu-item-image {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.item-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--bigstack-red);
    color: var(--sesame-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.burger-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.health-badge,
.veggie-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.health-badge {
    background: var(--pickle-green);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.veggie-badge {
    background: var(--mustard-yellow);
    color: var(--grill-black);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.menu-item-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--grill-black);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.menu-item-content p {
    color: var(--patty-brown);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    flex-grow: 1;
}

.menu-item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: var(--bigstack-red);
    font-weight: 700;
}

.calories {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--grill-black);
    background: var(--mustard-yellow);
    padding: 8px 14px;
    border-radius: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.add-cart-btn {
    width: 100%;
    background: var(--bigstack-red);
    color: var(--sesame-white);
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--bigstack-red);
    position: relative;
    overflow: hidden;
}

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

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

.add-cart-btn:hover {
    background: var(--mustard-yellow);
    color: var(--grill-black);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-color: var(--mustard-yellow);
}

.add-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--bigstack-red);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
    justify-content: space-between;
}

.info-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--grill-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-card p {
    color: var(--patty-brown);
    line-height: 1.7;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}

.info-card-button-row {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-btn {
    background: var(--bigstack-red);
    color: var(--sesame-white);
    border: 2px solid var(--bigstack-red);
    border-radius: 8px;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin: 0;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

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

.info-card-btn:hover {
    background: var(--mustard-yellow);
    color: var(--grill-black);
    border-color: var(--mustard-yellow);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.info-card-btn:active {
    transform: translateY(0);
}

/* Category Section Headers */
.category-section-header {
    grid-column: 1 / -1;
    text-align: center;
    margin: 3rem 0 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--sesame-white) 0%, rgba(248, 180, 0, 0.1) 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--mustard-yellow);
    position: relative;
}

.category-section-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--grill-black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-section-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--patty-brown);
    font-weight: 500;
    margin: 0;
}

/* Hide menu items by default for filtering */
.menu-item[data-category] {
    display: block;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sesame-white) 0%, rgba(214, 40, 40, 0.05) 100%);
    color: var(--grill-black);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><defs><pattern id="texas-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,10 l5,-5 l5,5 l-5,5 z" fill="%23D62828" opacity="0.05"/></pattern></defs><rect width="120" height="120" fill="url(%23texas-pattern)"/></svg>') repeat;
    opacity: 0.15;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

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

.about-text {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-text .section-title {
    color: var(--bigstack-red);
    margin-bottom: 1.5rem;
}

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

.vintage-scene {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.vintage-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) contrast(1.1);
    transition: transform 0.5s ease;
}

.vintage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(214, 40, 40, 0.2), rgba(248, 180, 0, 0.2));
    mix-blend-mode: overlay;
}

.vintage-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--bigstack-red);
    color: var(--sesame-white);
    padding: 1rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Bungee', sans-serif;
    font-size: 0.9rem;
    transform: rotate(-5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vintage-badge span {
    line-height: 1.2;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    background: var(--sesame-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 2px solid rgba(214, 40, 40, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-family: 'Bungee', sans-serif;
    font-size: 2.5rem;
    color: var(--bigstack-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--grill-black);
    font-weight: 600;
}

/* Grill Animation */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.grill-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%;
    z-index: 10;
}

.grill {
    width: 200px;
    height: 100px;
    background: linear-gradient(to bottom, #2a2a2a, #1d1d1d);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    border: 2px solid #333;
}

.grill::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #444;
    border-radius: 1px;
}

.grill::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #444;
    border-radius: 1px;
}

.flame {
    position: absolute;
    bottom: -20px;
    width: 25px;
    height: 35px;
    background: linear-gradient(to top, #f4a261, #e63946, #ff6b35);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1.5s ease-in-out infinite alternate;
    z-index: 1;
    box-shadow: 0 0 10px rgba(244, 162, 97, 0.6);
}

.flame-1 { 
    left: 15%; 
    animation-delay: 0s; 
    width: 20px;
    height: 30px;
}

.flame-2 { 
    left: 50%; 
    animation-delay: 0.5s; 
    width: 25px;
    height: 35px;
}

.flame-3 { 
    left: 75%; 
    animation-delay: 1s; 
    width: 18px;
    height: 28px;
}

@keyframes flicker {
    0% { 
        transform: scaleY(1) rotate(-3deg); 
        opacity: 0.7;
        box-shadow: 0 0 8px rgba(244, 162, 97, 0.4);
    }
    50% {
        transform: scaleY(1.1) rotate(0deg);
        opacity: 0.9;
        box-shadow: 0 0 12px rgba(244, 162, 97, 0.7);
    }
    100% { 
        transform: scaleY(1.3) rotate(3deg); 
        opacity: 1;
        box-shadow: 0 0 15px rgba(244, 162, 97, 0.8);
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sesame-white) 0%, rgba(42, 157, 143, 0.1) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><defs><pattern id="contact-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12" cy="12" r="2" fill="%232a9d8f" opacity="0.1"/><circle cx="6" cy="6" r="1" fill="%23f4a261" opacity="0.1"/><circle cx="18" cy="18" r="1" fill="%23e63946" opacity="0.1"/></pattern></defs><rect width="50" height="50" fill="url(%23contact-pattern)"/></svg>');
    background-size: cover, 25px 25px;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><defs><radialGradient id="contact-glow" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23f1faee;stop-opacity:0.9"/><stop offset="100%" style="stop-color:%23f1faee;stop-opacity:0"/></radialGradient></defs><circle cx="75" cy="75" r="60" fill="url(%23contact-glow)"/></svg>') no-repeat center;
    background-size: 400px 400px;
    opacity: 0.8;
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--pickle-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item h3 {
    color: var(--grill-black);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--patty-brown);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bigstack-red);
    background: rgba(255, 255, 255, 1);
}

/* Footer */
.footer {
    background: #ec1d23;
    color: var(--sesame-white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23f4a261" opacity="0.15"/><circle cx="5" cy="5" r="0.5" fill="%23e63946" opacity="0.1"/><circle cx="15" cy="15" r="0.5" fill="%23f1faee" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>') repeat;
    opacity: 0.4;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-logo-link {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-logo-img {
        height: 50px;
    }
}

.footer-tagline {
    color: var(--mustard-yellow);
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.footer-description {
    text-align: center;
}

.footer-description p {
    color: var(--sesame-white);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sesame-white);
    font-size: 0.85rem;
    opacity: 0.9;
    transition: var(--transition);
}

.highlight-item:hover {
    opacity: 1;
    transform: translateX(3px);
}

.highlight-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer-links h4,
.footer-social h4,
.footer-newsletter h4 {
    color: var(--mustard-yellow);
    margin-bottom: 1rem;
    font-family: 'Bungee', sans-serif;
}

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

.footer-links a {
    color: var(--sesame-white);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 180, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.footer-links a:hover {
    color: var(--mustard-yellow);
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
    padding-left: 0.5rem;
}

/* Special link styles */
.catering-link:hover {
    color: #FF6B6B;
}

.gift-card-link:hover {
    color: #4ECDC4;
}

.careers-link:hover {
    color: #45B7D1;
}

.allergen-link:hover {
    color: #FFA726;
}

/* Newsletter Section */
.footer-newsletter p {
    color: var(--grill-black);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--grill-black);
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.newsletter-input-group input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.newsletter-input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px var(--mustard-yellow);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--bigstack-red);
    color: var(--sesame-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.newsletter-btn:hover {
    background: var(--mustard-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--sesame-white);
    font-size: 0.9rem;
    opacity: 0.9;
}

.benefit-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--bigstack-red);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.social-link:hover {
    background: var(--mustard-yellow);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link:active {
    transform: translateY(-1px) scale(1.05);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-burger {
        width: 110%;
    }
    
    .hero-image {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ec1d23;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cart {
        order: -1;
        margin-right: 1rem;
    }
    
    .cart-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }
    
    .cart-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .quantity-controls {
        gap: 0.5rem;
    }
    
    .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .add-cart-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    

    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title span {
        font-size: 4rem;
    }
    
    .hero-burger {
        width: 95%;
        margin-top: 2rem;
        transform: rotate(-4deg);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero::before {
        width: 150%;
        right: -25%;
        opacity: 0.06;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-highlights {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .highlight-item {
        font-size: 0.8rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
        height: 45px;
        border-radius: 25px;
    }
    
    .newsletter-benefits {
        align-items: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .vintage-scene {
        height: 300px;
    }
    
    .vintage-badge {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }
    
    .menu-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .menu-info {
        grid-template-columns: 1fr;
    }
    

    
    /* Dallas Page Responsive */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .early-access-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .access-card.featured {
        transform: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .why-dallas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dallas-menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Dallas Cowboys Page Responsive */
    .game-day-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legends-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legend-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tailgate-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Add shine effect */
@keyframes shine {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.hero-burger {
    position: relative;
}

.hero-burger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    background-size: 200% 100%;
    animation: shine 8s linear infinite;
    pointer-events: none;
}



.burger-preview {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.flame-animation {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    z-index: 1;
}

.flame {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    background: linear-gradient(to top, #ff6b35, #f7931e, #ffd700);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1.5s ease-in-out infinite;
}

.flame-1 {
    animation-delay: 0s;
    width: 24px;
    height: 36px;
}

.flame-2 {
    animation-delay: 0.3s;
    width: 18px;
    height: 28px;
    left: calc(50% - 8px);
}

.flame-3 {
    animation-delay: 0.6s;
    width: 16px;
    height: 24px;
    left: calc(50% + 8px);
}



/* Dallas Landing Page Styles */
.dallas-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #f8b40022 50%, #d6282822 100%);
    position: relative;
    overflow: hidden;
}

.dallas-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dallas" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23d62828" opacity="0.1"/><rect x="0" y="0" width="30" height="30" fill="none" stroke="%23f8b400" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dallas)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.launch-badge {
    background: linear-gradient(135deg, var(--bigstack-red), var(--mustard-yellow));
    color: var(--sesame-white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(214, 40, 40, 0.3);
}

.badge-text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.badge-date {
    font-size: 0.8rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bigstack-red);
    font-family: 'Bungee', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--patty-brown);
    font-weight: 600;
}

.dallas-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    text-align: center;
    z-index: 3;
}

.dallas-skyline {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.dallas-text {
    font-family: 'Bungee', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bigstack-red);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

/* Early Access Section */
.early-access-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff8f0 100%);
    padding: 5rem 0;
}

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

.access-card {
    background: var(--sesame-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.access-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.access-card.featured {
    border-color: var(--mustard-yellow);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(248, 180, 0, 0.3);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mustard-yellow);
    color: var(--grill-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.access-card h3 {
    font-size: 1.5rem;
    color: var(--grill-black);
    margin-bottom: 1rem;
    font-family: 'Bungee', sans-serif;
}

.access-card p {
    color: var(--patty-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--patty-brown);
    font-size: 0.9rem;
}

.card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.original-price {
    font-size: 1rem;
    color: var(--patty-brown);
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bigstack-red);
    font-family: 'Bungee', sans-serif;
}

.price-label {
    font-size: 0.8rem;
    color: var(--patty-brown);
    font-weight: 600;
}

.early-access-form {
    background: var(--sesame-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.early-access-form h3 {
    font-size: 2rem;
    color: var(--grill-black);
    margin-bottom: 2rem;
    font-family: 'Bungee', sans-serif;
}

.access-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--patty-brown);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Dallas Menu Section */
.dallas-menu-section {
    background: linear-gradient(135deg, #fff8f0 0%, #f8b40011 100%);
    padding: 5rem 0;
}

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

.dallas-menu-item {
    background: var(--sesame-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    animation: slideInUp 0.8s ease-out;
}

.dallas-menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.dallas-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--bigstack-red);
    color: var(--sesame-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.launch-info {
    margin-top: 1rem;
    padding: 0.5rem;
    background: var(--mustard-yellow);
    border-radius: 8px;
    text-align: center;
}

.launch-date {
    font-size: 0.8rem;
    color: var(--grill-black);
    font-weight: 600;
}

.dallas-specials {
    background: var(--sesame-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.dallas-specials h3 {
    font-size: 1.8rem;
    color: var(--grill-black);
    margin-bottom: 2rem;
    font-family: 'Bungee', sans-serif;
}

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

.special-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--sesame-white) 0%, #f8b40011 100%);
    border-radius: 12px;
    border: 2px solid var(--mustard-yellow);
}

.special-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.special-item h4 {
    font-size: 1.2rem;
    color: var(--grill-black);
    margin-bottom: 0.5rem;
    font-family: 'Bungee', sans-serif;
}

.special-item p {
    color: var(--patty-brown);
    font-size: 0.9rem;
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff8f0 100%);
    padding: 5rem 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--sesame-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.location-icon {
    font-size: 2rem;
    color: var(--bigstack-red);
}

.location-item h3 {
    font-size: 1.2rem;
    color: var(--grill-black);
    margin-bottom: 0.5rem;
    font-family: 'Bungee', sans-serif;
}

.location-item p {
    color: var(--patty-brown);
    line-height: 1.4;
}

.countdown-section {
    text-align: center;
    background: var(--sesame-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.countdown-section h3 {
    font-size: 1.8rem;
    color: var(--grill-black);
    margin-bottom: 2rem;
    font-family: 'Bungee', sans-serif;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.countdown-item {
    text-align: center;
    background: var(--bigstack-red);
    color: var(--sesame-white);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Bungee', sans-serif;
    line-height: 1;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 600;
}

.countdown-text {
    font-size: 1.1rem;
    color: var(--patty-brown);
    font-weight: 600;
}

/* Why Dallas Section */
.why-dallas-section {
    background: linear-gradient(135deg, #fff8f0 0%, #f8b40011 100%);
    padding: 5rem 0;
}

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

.why-item {
    background: var(--sesame-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--grill-black);
    margin-bottom: 1rem;
    font-family: 'Bungee', sans-serif;
}

.why-item p {
    color: var(--patty-brown);
    line-height: 1.6;
}

/* Game Day Experience Section */
.game-day-section {
    background: linear-gradient(135deg, #fff8f0 0%, #f8b40011 100%);
    padding: 5rem 0;
}

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

.game-day-item {
    background: var(--sesame-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.game-day-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bigstack-red), var(--mustard-yellow));
}

.game-day-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.game-day-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

.game-day-item h3 {
    font-size: 1.5rem;
    color: var(--grill-black);
    margin-bottom: 1rem;
    font-family: 'Bungee', sans-serif;
}

.game-day-item p {
    color: var(--patty-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-day-special {
    background: linear-gradient(135deg, var(--bigstack-red), var(--mustard-yellow));
    color: var(--sesame-white);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.special-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.special-offer {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

/* Cowboys Legends Section */
.cowboys-legends-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff8f0 100%);
    padding: 5rem 0;
}

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

.legend-item {
    background: var(--sesame-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.legend-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 40, 40, 0.1), rgba(248, 180, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legend-item:hover::before {
    opacity: 1;
}

.legend-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.legend-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bigstack-red);
    font-family: 'Bungee', sans-serif;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.legend-name {
    font-size: 1.5rem;
    color: var(--grill-black);
    margin-bottom: 1rem;
    font-family: 'Bungee', sans-serif;
}

.legend-item p {
    color: var(--patty-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.legend-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.legend-stats .stat {
    background: var(--bigstack-red);
    color: var(--sesame-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tailgate Section */
.tailgate-section {
    background: linear-gradient(135deg, #fff8f0 0%, #f8b40011 100%);
    padding: 5rem 0;
}

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

.tailgate-item {
    background: var(--sesame-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.tailgate-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--mustard-yellow);
}

.tailgate-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.tailgate-item h3 {
    font-size: 1.5rem;
    color: var(--grill-black);
    margin-bottom: 1rem;
    font-family: 'Bungee', sans-serif;
}

.tailgate-item p {
    color: var(--patty-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tailgate-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tailgate-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bigstack-red);
    font-family: 'Bungee', sans-serif;
}

.tailgate-price .savings {
    font-size: 0.9rem;
    color: var(--patty-brown);
    font-weight: 600;
    background: var(--mustard-yellow);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

/* Deals Page */
.deal-hero{padding:6rem 0;background:linear-gradient(135deg,#fff 0%,#f9e54722 100%)}
.deal-card{max-width:1000px;margin:0 auto;background:#fff;border:2px solid var(--grill-black);border-radius:16px;box-shadow:0 8px 30px rgba(0,0,0,.08);padding:2rem}
.deal-grid{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media(min-width:992px){.deal-grid{grid-template-columns:1fr 1fr;align-items:center}}
.deal-info{min-width:0}
.deal-header{text-align:left;margin-bottom:1rem}
.deal-badge{display:inline-block;background:var(--mustard-yellow);color:var(--grill-black);font-weight:800;padding:.35rem .8rem;border-radius:999px;margin-bottom:.5rem}
.deal-title{font-family:'Bungee',sans-serif;font-size:2.2rem;color:var(--grill-black);margin:.2rem 0}
.deal-subtitle{color:var(--patty-brown);font-weight:700}
.deal-points{margin:1rem 0 1.5rem 1.25rem}
.deal-points li{margin:.4rem 0}
.deal-meta{display:flex;justify-content:space-between;align-items:center;background:#fafafa;border:1px dashed var(--mustard-yellow);padding:.8rem 1rem;border-radius:10px}
.deal-actions{display:flex;gap:.75rem;justify-content:center;margin-top:1rem}
.deal-fineprint{text-align:center;color:#777;margin-top:1rem;font-size:.9rem}
/* Spin game */
.deal-game{margin-top:.75rem}
/* Wheel spinner */
.wheel-wrap{position:relative;display:flex;justify-content:center;margin:10px 0}
.wheel-pointer{position:absolute;top:-6px;left:50%;transform:translateX(-50%);width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-bottom:16px solid var(--grill-black);z-index:3;filter:drop-shadow(0 2px 2px rgba(0,0,0,.25))}
.wheel{position:relative;display:grid;place-items:center;width:320px;height:320px;border-radius:50%;border:6px solid var(--grill-black);background:
  conic-gradient(
    var(--mustard-yellow) 0 60deg,
    #ffffff 60deg 120deg,
    var(--bigstack-red) 120deg 180deg,
    #2E8B57 180deg 240deg,
    #ff8c00 240deg 300deg,
    #8aaef5 300deg 360deg
  );
  box-shadow:0 8px 30px rgba(0,0,0,.15);
  color:#111;
  font-weight:800;
  text-transform:uppercase;
  font-size:.8rem;
  text-align:center;
}
/* glow + ticks */
.wheel::before{content:'';position:absolute;inset:-8px;border-radius:50%;background:radial-gradient(circle, rgba(249,229,71,.35), transparent 60%);z-index:0}
.wheel::after{content:'';position:absolute;inset:10px;border-radius:50%;background:conic-gradient(from 0deg, rgba(0,0,0,.08) 0 2deg, transparent 2deg 60deg);mix-blend-mode:overlay;pointer-events:none}

.wheel .seg{position:absolute;width:50%;left:50%;transform-origin:left center;z-index:2}
.seg-0{transform:rotate(30deg)}
.seg-1{transform:rotate(90deg)}
.seg-2{transform:rotate(150deg)}
.seg-3{transform:rotate(210deg)}
.seg-4{transform:rotate(270deg)}
.seg-5{transform:rotate(330deg)}

/* flashing slot-like lights */
.wheel-lights{position:absolute;inset:-14px;display:grid;place-items:center;pointer-events:none}
.wheel-lights span{position:absolute;width:8px;height:8px;border-radius:50%;background:#fff;box-shadow:0 0 6px rgba(255,255,255,.9)}
.wheel.spin .wheel-lights span{animation:blink .6s linear infinite alternate}
@keyframes blink{from{opacity:.35}to{opacity:1}}

@keyframes wheelSpin{from{transform:rotate(0)}to{transform:rotate(1080deg)}}
@media(max-width:600px){.deal-grid{grid-template-columns:1fr}.wheel{width:260px;height:260px;font-size:.75rem}}
@media(max-width:420px){.wheel{width:220px;height:220px;font-size:.68rem}}

/* Win modal */
.win-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.5);backdrop-filter:blur(2px);z-index:999}[hidden]{display:none!important}
.win-modal{position:fixed;inset:0;margin:auto;max-width:520px;width:92%;height:max-content;background:#fff;border:3px solid var(--grill-black);border-radius:16px;z-index:1000;box-shadow:0 18px 60px rgba(0,0,0,.35);padding:1.5rem;text-align:center;animation:popIn .35s ease-out}
.win-title{font-family:'Bungee',sans-serif;font-size:2rem;color:var(--bigstack-red);text-shadow:0 2px 0 #000}
.win-text{font-weight:800;color:var(--grill-black);margin:.5rem 0 1rem}
.win-actions{display:flex;justify-content:center}
.win-glow{position:absolute;inset:-8px;border-radius:16px;background:conic-gradient(from 0deg,var(--mustard-yellow),#fff,var(--bigstack-red),#fff,var(--mustard-yellow));filter:blur(12px);opacity:.5;z-index:-1}
@keyframes popIn{0%{transform:scale(.9);opacity:0}100%{transform:scale(1);opacity:1}}


@media (max-width:768px){.deal-card{margin:0 1rem;padding:1.25rem}.deal-title{font-size:1.8rem}.deal-meta{flex-direction:column;gap:.5rem}}


/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sesame-white) 0%, rgba(214, 40, 40, 0.05) 100%);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="reviews-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12" cy="12" r="2" fill="%23D62828" opacity="0.03"/><circle cx="6" cy="6" r="1" fill="%23F8B400" opacity="0.03"/><circle cx="18" cy="18" r="1" fill="%238B4513" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23reviews-pattern)"/></svg>') repeat;
    opacity: 0.5;
    z-index: 1;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--bigstack-red);
    opacity: 0.1;
    font-family: 'Bungee', sans-serif;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--mustard-yellow);
    background: rgba(255, 255, 255, 1);
}

.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 {
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mustard-yellow), var(--bigstack-red));
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reviewer-info h4 {
    font-family: 'Bungee', sans-serif;
    color: var(--grill-black);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.stars {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--patty-brown);
    opacity: 0.7;
}

.review-text {
    color: var(--grill-black);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.reviews-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.reviews-cta p {
    font-size: 1.2rem;
    color: var(--grill-black);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .reviewer-avatar {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
}

/* Side Cart */
.side-cart {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s 0.4s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease;
}

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

.cart-title {
    font-family: 'Bungee', sans-serif;
    font-size: 1.5rem;
    color: var(--grill-black);
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--grill-black);
    padding: 0.5rem;
    line-height: 1;
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.cart-items {
    padding: 0 1.5rem;
}

.cart-empty-msg {
    text-align: center;
    color: #777;
    margin-top: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cart-item-info {
    flex-grow: 1;
    margin-left: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-name {
    font-weight: 600;
    font-size: 1rem;
}

.cart-item-price {
    color: #555;
    font-size: 0.9rem;
    font-weight: normal;
    font-family: UberMoveText, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    color: var(--grill-black);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-quantity {
    padding: 0 0.75rem;
    font-weight: 600;
}

.remove-item-btn {
    background: none;
    border: none;
    color: var(--bigstack-red);
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.order-note input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .side-cart {
        width: 100%;
        right: -100%;
    }
}

.cart-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem 0.5rem 1.5rem;
    font-size: 1.08rem;
    font-family: UberMoveText, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--grill-black);
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

#cartItemCount {
    color: #555;
}

#cartSummarySubtotal {
    color: var(--bigstack-red);
    font-size: 1.1rem;
} 