/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (Torchy's Tacos Light Theme)
   ========================================================================== */
:root {
    /* Brand & Accent Colors */
    --brand-red: #C8102E;
    --brand-red-hover: #A30D24;
    --brand-black: #111111;
    --brand-black-muted: #222222;
    --brand-yellow: #FFC72C;
    
    /* Light Theme Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-tertiary: #F3F4F6;
    
    /* Text Colors */
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --text-white: #FFFFFF;

    /* Status Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --border-color: #E5E7EB;

    /* Typography */
    --font-headers: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Offsets & Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.05);

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Layout & Durations */
    --max-width: 1200px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

button, input, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

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

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-headers);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--brand-black);
    line-height: 1.1;
}

.text-red { color: var(--brand-red) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-headers);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--brand-red);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--brand-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}

.btn-secondary {
    background-color: var(--brand-black);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--brand-black-muted);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--brand-black);
}

.btn-white:hover {
    background-color: var(--bg-tertiary);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   LAYOUT STRUCTURE
   ========================================================================== */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--brand-red);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
/* ==========================================================================
   HEADER NAVIGATION (Glassmorphic & Sticky Redesign)
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-normal);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    font-family: var(--font-headers);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.logo span {
    color: #FF5722;
    margin-left: 8px;
    text-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}

.logo .logo-menu {
    color: #FFA000;
    margin-left: 8px;
    text-shadow: 0 0 10px rgba(255, 160, 0, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
    color: #FF5722;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF5722;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
    box-shadow: 0 0 8px rgba(255, 87, 34, 0.5);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    width: 200px;
    transition: var(--transition-normal);
}

.search-box:focus-within {
    width: 260px;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #FF5722;
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.3);
}

.search-icon {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 0.5rem;
}

.search-box input {
    width: 100%;
    font-size: 0.85rem;
    color: #FFFFFF;
    background: transparent;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cart-btn {
    position: relative;
    background-color: var(--brand-black);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.cart-btn:hover {
    background-color: var(--brand-red);
    transform: scale(1.05);
}

.cart-btn svg {
    width: 18px;
    height: 18px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--brand-red);
    color: var(--text-white);
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
}

/* ==========================================================================
   HERO SECTION — Clean Cinematic Dark Layout
   ========================================================================== */

/* ---- Outer container ---- */
.hero-section {
    height: 88vh;
    max-height: 780px;
    min-height: 560px;
    position: relative;
    display: flex;
    align-items: stretch;
    color: #FFFFFF;
    overflow: hidden;
}

/* Full-bleed background image layer */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark cinematic overlay with red glow */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 100%, rgba(200,16,46,0.55) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 90% 10%, rgba(255,87,34,0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(8,8,8,0.96) 0%, rgba(15,8,8,0.88) 45%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

/* Inner flex row */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* ---- LEFT: Text column ---- */
.hero-left {
    flex: 1;
    min-width: 0;
    padding: 3rem 0;
}

/* Location eyebrow chip */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-full);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.1rem;
    width: fit-content;
    backdrop-filter: blur(6px);
}

.hero-eyebrow span.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ADE80;
    display: inline-block;
    box-shadow: 0 0 7px #4ADE80;
    animation: blink 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

/* Hero badge */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-red) 0%, #FF5722 100%);
    color: #FFFFFF;
    font-family: var(--font-headers);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 18px rgba(200,16,46,0.5);
    width: fit-content;
}

/* Big headline */
.hero-title {
    font-family: var(--font-headers);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 25px rgba(0,0,0,0.7);
}

.hero-title em {
    font-style: normal;
    color: #FF5722;
}

/* Subtitle paragraph */
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.68);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 400px;
}

/* CTA row */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
}

/* Ghost secondary CTA */
.hero-ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.2s ease;
    text-decoration: none;
}

.hero-ghost-btn:hover {
    color: #FF5722;
}

.hero-ghost-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.hero-ghost-btn:hover svg {
    transform: translateX(4px);
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.75rem;
    flex-wrap: wrap;
    row-gap: 1rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0 1.5rem;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat strong {
    font-family: var(--font-headers);
    font-size: 1.4rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero-stat span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ---- RIGHT: Animated Taco Scene column ---- */
.hero-right {
    flex: 0 0 460px;
    max-width: 460px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: visible;
}

/* Red radial glow behind taco */
.hero-taco-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(200,16,46,0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

/* Floating taco image */
.hero-taco-img {
    width: 100%;
    max-width: 400px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter:
        drop-shadow(0 20px 40px rgba(200,16,46,0.3))
        drop-shadow(0 40px 80px rgba(0,0,0,0.8));
    animation: hero-float 5s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0px) rotate(-0.8deg); }
    50%       { transform: translateY(-14px) rotate(0.8deg); }
}

/* Floating badge card on taco */
.hero-badge-float {
    position: absolute;
    bottom: 28px;
    left: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
    animation: badge-in 0.6s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes badge-in {
    from { opacity: 0; transform: translateY(12px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-badge-float-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.hero-badge-float strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.hero-badge-float span {
    font-size: 0.67rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

/* ---- Scroll hint at bottom ---- */
.hero-scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.35);
    animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll-hint span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.hero-scroll-hint svg {
    width: 18px;
    height: 18px;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hero-section {
        height: auto;
        min-height: 480px;
        max-height: none;
    }
    .hero-inner {
        flex-direction: column;
        padding: 5rem 1.5rem 2.5rem;
        gap: 1.5rem;
    }
    .hero-right {
        display: none;
    }
    .hero-left {
        padding: 0;
    }
    .hero-subtitle {
        max-width: 100%;
    }
}


/* ==========================================================================
   HERO — ANIMATED TACO SCENE
   ========================================================================== */
.hero-taco-scene {
    position: relative;
    width: 100%;
    height: 500px;           /* explicit height so children can absolute-position */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Main taco image, floating */
.htaco-main {
    position: relative;
    z-index: 5;
    animation: htaco-float 5s ease-in-out infinite;
}

.css-animated-taco {
    width: 340px;
    max-width: 90%;
    height: auto;
    filter:
        drop-shadow(0 20px 40px rgba(200,16,46,0.35))
        drop-shadow(0 0 60px rgba(0,0,0,0.7));
}

/* Make individual ingredients drift inside the taco! */
.taco-filling {
    animation: drift-filling 4s ease-in-out infinite alternate;
    transform-origin: center;
}

.taco-meat { animation-delay: 0.2s; }
.taco-jalapeno-1 { animation-delay: 0.5s; }
.taco-jalapeno-2 { animation-delay: 0.9s; }
.taco-jalapeno-3 { animation-delay: 1.2s; }
.taco-cheese { animation-delay: 0.7s; }
.taco-cheese-white { animation-delay: 1.1s; }
.taco-sauce { animation-delay: 0.4s; }
.taco-cilantro-1 { animation-delay: 0.8s; }
.taco-cilantro-2 { animation-delay: 1.3s; }
.taco-cilantro-3 { animation-delay: 1.5s; }

@keyframes drift-filling {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    100% { transform: translate(2px, -3px) rotate(1.5deg); }
}

@keyframes htaco-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-16px) rotate(1deg); }
}

/* Orbiting ingredient pills */
.htaco-orbit {
    position: absolute;
    z-index: 6;
    animation: htaco-orbit-spin linear infinite;
}

.htaco-pill {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: htaco-pill-counter linear infinite; /* counter-rotate to stay upright */
}

.htaco-orbit-1 { top: 20%; right: 5%; animation-duration: 8s; }
.htaco-orbit-2 { top: 50%; left: 0%;  animation-duration: 11s; animation-delay: -3s; }
.htaco-orbit-3 { bottom: 35%; right: 2%; animation-duration: 9s; animation-delay: -5s; }
.htaco-orbit-4 { top: 8%;  left: 10%; animation-duration: 13s; animation-delay: -2s; }

.htaco-orbit-1 .htaco-pill { animation-duration: 8s; }
.htaco-orbit-2 .htaco-pill { animation-duration: 11s; }
.htaco-orbit-3 .htaco-pill { animation-duration: 9s; }
.htaco-orbit-4 .htaco-pill { animation-duration: 13s; }

@keyframes htaco-orbit-spin {
    from { transform: rotate(0deg) translateX(30px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(30px) rotate(-360deg); }
}

@keyframes htaco-pill-counter {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

/* Spark elements */
.htaco-spark {
    position: absolute;
    color: #FF5722;
    font-size: 1rem;
    animation: htaco-spark-blink 2s ease-in-out infinite;
    z-index: 4;
}

.htaco-spark-1 { top: 15%; left: 30%; animation-delay: 0s;   font-size: 1.2rem; }
.htaco-spark-2 { top: 60%; right: 20%; animation-delay: 0.7s; font-size: 0.9rem; color: #FFD700; }
.htaco-spark-3 { bottom: 20%; left: 20%; animation-delay: 1.3s; font-size: 1.4rem; color: rgba(255,255,255,0.4); }

@keyframes htaco-spark-blink {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50%       { opacity: 0.1; transform: scale(0.5); }
}

/* ==========================================================================
   FEATURED SECTION — Premium Big-Card Showcase
   ========================================================================== */
.featured-section {
    background: #0d0a0a;
    padding: 5rem 0;
    overflow: clip;          /* clip — prevents scroll trap unlike overflow:hidden */
    position: relative;
}

/* Subtle red ambient glow top-right */
.featured-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(200,16,46,0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.featured-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ---- Header row ---- */
.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.featured-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-red);
}

.featured-label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--brand-red);
    border-radius: 2px;
}

.featured-header h2 {
    font-family: var(--font-headers);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.04em;
    margin: 0;
    line-height: 1;
}

.featured-header p {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    margin: 0;
}

/* ---- Nav arrows ---- */
.featured-nav {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    align-items: center;
}

.feat-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.22s ease;
    flex-shrink: 0;
}

.feat-arrow:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
    box-shadow: 0 0 20px rgba(200,16,46,0.5);
}

.feat-arrow svg { width: 18px; height: 18px; }

/* ---- Track ---- */
.featured-track-wrap {
    overflow: clip;      /* clip clips without creating scroll container */
    border-radius: var(--radius-lg);
}

.featured-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ---- Individual Cards (big split layout) ---- */
.carousel-slide {
    min-width: 400px;
    width: 400px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.carousel-slide:hover {
    border-color: rgba(200,16,46,0.45);
    box-shadow: 0 20px 50px rgba(200,16,46,0.18);
    transform: translateY(-6px);
}

/* ---- Card image area ---- */
.cs-img {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFC72C 0%, #FFA800 100%); /* Vibrant brand-yellow gradient */
}

.cs-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Float food item */
    padding: 0.75rem;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22)); /* Cast realistic 3D shadow */
    transition: transform 0.4s ease;
}

.carousel-slide:hover .cs-img img {
    transform: scale(1.06) translateY(-3px);
}

/* Calorie tag top-left */
.cs-cal-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.22rem 0.6rem;
    border-radius: 20px;
    z-index: 2;
}

/* Staff Pick badge top-right */
.cs-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brand-red);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.22rem 0.65rem;
    border-radius: var(--radius-sm);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(200,16,46,0.5);
}

/* ---- Card body ---- */
.cs-body {
    padding: 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}

/* Name + price row */
.cs-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.cs-name {
    font-family: var(--font-headers);
    font-size: 1.15rem;
    font-weight: 900;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0;
    flex: 1;
}

.cs-price {
    font-family: var(--font-headers);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--brand-red);
    flex-shrink: 0;
    letter-spacing: -0.03em;
}

/* Description */
.cs-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Macro pills */
.cs-macros {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cs-macro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.65rem;
    min-width: 52px;
    text-align: center;
}

.cs-macro span {
    font-family: var(--font-headers);
    font-size: 1rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
}

.cs-macro {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

/* CTA button */
.cs-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--brand-red) 0%, #e01050 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.22s ease;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: auto;
    box-shadow: 0 4px 16px rgba(200,16,46,0.35);
}

.cs-cta:hover {
    background: linear-gradient(135deg, #e01050 0%, #FF5722 100%);
    box-shadow: 0 6px 24px rgba(200,16,46,0.55);
    transform: translateY(-1px);
}

.cs-cta svg { transition: transform 0.2s ease; }
.cs-cta:hover svg { transform: translateX(3px); }

/* ---- Featured dots ---- */
.featured-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.carousel-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--brand-red);
    box-shadow: 0 0 10px rgba(200,16,46,0.5);
}



/* ---- Responsive ---- */
@media (max-width: 768px) {
    .carousel-slide { min-width: 300px; width: 300px; }
    .cs-img { height: 180px; }
    .featured-header { flex-direction: column; align-items: flex-start; }
}


/* ==========================================================================
   ABOUT SECTION — Stats + Timeline + Pillars
   ========================================================================== */
.about-section {
    background: var(--bg-primary);
    padding: 5rem 0;
    overflow: visible;  /* ensure no scroll trap */
}

.about-section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-red);
    margin-bottom: 0.75rem;
}

.about-section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--brand-black);
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}

.about-section-head h2 em {
    font-style: normal;
    color: var(--brand-red);
}

.about-section-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Stats grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.about-stat-card {
    background: var(--brand-black);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

.about-stat-card:hover {
    transform: translateY(-4px);
}

.about-stat-number {
    font-family: var(--font-headers);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-red);
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Timeline */
.about-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 4rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    /* No overflow:hidden — it can create scroll traps */
}

.about-timeline-item {
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

/* Round the first and last item corners manually */
.about-timeline-item:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.about-timeline-item:last-child {
    border-right: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-timeline-item:hover {
    background: var(--bg-secondary);
}

.about-timeline-year {
    font-family: var(--font-headers);
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-red);
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.about-timeline-content h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.about-timeline-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Pillars grid */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.about-pillar {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: all 0.25s ease;
}

.about-pillar:hover {
    border-color: var(--brand-red);
    box-shadow: 0 8px 24px rgba(200,16,46,0.1);
    transform: translateY(-3px);
}

.about-pillar-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--brand-red), #FF5722);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.about-pillar-icon svg { width: 20px; height: 20px; }

.about-pillar h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.about-pillar p {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* About responsive */
@media (max-width: 900px) {
    .about-stats-grid,
    .about-timeline,
    .about-pillars { grid-template-columns: repeat(2, 1fr); }
    .about-timeline { border: none; gap: 1px; background: var(--border-color); }
    .about-timeline-item { border-right: none; border-bottom: 1px solid var(--border-color); }
}
@media (max-width: 560px) {
    .about-stats-grid,
    .about-pillars { grid-template-columns: 1fr 1fr; }
    .about-timeline { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SEO ULTIMATE GUIDE — Box Grid
   ========================================================================== */
.seo-article-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
}

/* Guide header */
.guide-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guide-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--brand-black);
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}

.guide-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.guide-meta svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* Quick-nav cards */
.guide-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.guide-nav-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.guide-nav-card:hover {
    border-color: var(--brand-red);
    box-shadow: 0 6px 20px rgba(200,16,46,0.12);
    transform: translateY(-2px);
}

.guide-nav-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.guide-nav-card strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--brand-black);
    display: block;
}

.guide-nav-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Article boxes */
.guide-boxes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 80px 1fr;
    transition: box-shadow 0.2s ease;
}

.guide-box:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.guide-box-label {
    background: var(--brand-black);
    color: rgba(255,255,255,0.15);
    font-family: var(--font-headers);
    font-size: 2.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    letter-spacing: -0.05em;
    padding: 1.5rem 0;
    line-height: 1;
}

.guide-box-body {
    padding: 2.5rem;
}

.guide-box-body h3 {
    font-family: var(--font-headers);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-black);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.guide-box-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Highlight quote box */
.guide-highlight-box {
    background: linear-gradient(135deg, rgba(200,16,46,0.06), rgba(255,87,34,0.04));
    border-left: 4px solid var(--brand-red);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.25rem;
}

.guide-highlight-box svg {
    width: 20px;
    height: 20px;
    color: var(--brand-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.guide-highlight-box p {
    margin: 0;
    font-style: italic;
    color: var(--brand-black);
    font-weight: 500;
}

/* Category table */
.guide-category-table {
    margin-top: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.guide-cat-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.88rem;
    align-items: center;
    transition: background 0.15s ease;
}

.guide-cat-row:last-child { border-bottom: none; }
.guide-cat-row:hover:not(.guide-cat-header) { background: var(--bg-secondary); }

.guide-cat-header {
    background: var(--brand-black);
    color: rgba(255,255,255,0.55);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.guide-cat-secret {
    background: rgba(200,16,46,0.04);
    color: var(--brand-red);
    font-weight: 700;
}

/* Secret menu grid */
.guide-secret-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
}

.guide-secret-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.guide-secret-card:hover {
    border-color: var(--brand-red);
    background: rgba(200,16,46,0.04);
}

.guide-secret-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--brand-black);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.guide-secret-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Tips grid */
.guide-tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.guide-tip {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.1rem;
}

.guide-tip-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-red), #FF5722);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.guide-tip-icon svg { width: 16px; height: 16px; }

.guide-tip strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand-black);
    margin-bottom: 0.25rem;
}

.guide-tip p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Guide responsive */
@media (max-width: 900px) {
    .guide-nav-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-box { grid-template-columns: 1fr; }
    .guide-box-label { writing-mode: horizontal-tb; font-size: 1rem; padding: 0.6rem 1.25rem; }
    .guide-box-body { padding: 1.5rem; }
    .guide-secret-grid { grid-template-columns: 1fr; }
    .guide-tips-grid { grid-template-columns: 1fr; }
    .guide-cat-row { grid-template-columns: 1.2fr 1fr; }
    .guide-cat-row span:last-child { display: none; }
    .guide-cat-header span:last-child { display: none; }
}



/* ==========================================================================
   MENU OVERVIEW (Tabbed Navigation & Grid)
   ========================================================================== */
.menu-section {
    background-color: var(--bg-primary);
}

/* Sticky Category Tabs */
.menu-tab-sticky {
    position: sticky;
    top: 72px; /* Height of the Header */
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 90;
    border-bottom: 1px solid var(--border-color);
}

.menu-tab-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.menu-tab-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

.menu-tab {
    flex-shrink: 0;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.menu-tab:hover, .menu-tab.active {
    background-color: var(--bg-tertiary);
    color: var(--brand-black);
}

.menu-tab.active {
    background-color: var(--brand-black);
    color: var(--text-white);
}

/* Secret Menu Tab styling */
.menu-tab.secret-tab {
    color: var(--brand-red);
}

.menu-tab.secret-tab:hover, .menu-tab.secret-tab.active {
    background-color: #FDF2F2;
    color: var(--brand-red);
}

.menu-tab.secret-tab.active {
    background-color: var(--brand-red);
    color: var(--text-white);
}

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

.category-heading h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.category-heading p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Grid Layout — Per-category product grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
    min-height: 400px;
    transition: opacity var(--transition-normal);
}

/* Menu Item Card — Premium redesign */
.menu-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition-normal), border-color var(--transition-normal);
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 0 2px rgba(200,16,46,0.12);
    border-color: transparent;
}

.menu-card-img-wrapper {
    height: 220px;
    position: relative;
    background: linear-gradient(135deg, #FFC72C 0%, #FFA800 100%); /* Vibrant brand-yellow gradient */
    overflow: hidden;
}

.menu-card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.08) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.menu-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Float food item beautifully inside container */
    padding: 0.75rem;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22)); /* Cast realistic 3D shadow */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.menu-card:hover .menu-card-img-wrapper img {
    transform: scale(1.08) translateY(-4px); /* Hover float animation */
}

/* Calorie badge — top-right pill */
.menu-card-cal {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--brand-black);
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 3;
    letter-spacing: 0.03em;
}

/* Secret badge — top-left */
.menu-card-secret-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--brand-red) 0%, #FF5722 100%);
    color: var(--text-white);
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 10px rgba(200,16,46,0.4);
}

.menu-card-body {
    padding: 1.25rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.menu-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

/* Price badge — styled pill */
.menu-card-price {
    font-family: var(--font-headers);
    font-weight: 900;
    font-size: 1rem;
    color: var(--brand-red);
    background: rgba(200,16,46,0.07);
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-card-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.quick-view-btn {
    font-family: var(--font-headers);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.quick-view-btn:hover {
    color: var(--brand-red);
}

.quick-view-btn svg {
    width: 14px;
    height: 14px;
}

.quick-add-btn {
    background-color: var(--bg-tertiary);
    color: var(--brand-black);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.quick-add-btn:hover {
    background-color: var(--brand-red);
    color: var(--text-white);
}

.quick-add-btn svg {
    width: 16px;
    height: 16px;
}



/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip {
    background-color: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.cta-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
}

.btn.border-white {
    border: 2px solid var(--text-white);
}

.btn.text-red {
    color: var(--brand-red);
    border: 2px solid var(--brand-red);
}

.btn.text-red:hover {
    background-color: var(--brand-red);
    color: var(--text-white);
}

/* ==========================================================================
   SEO ARTICLE SECTION (E-E-A-T Optimized)
   ========================================================================== */
.seo-article-section {
    background-color: var(--bg-primary);
}

.seo-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

.seo-article-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.seo-article-header h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.seo-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.seo-article-body h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem 0;
}

.seo-article-body h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem 0;
}

.seo-article-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.seo-article-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.seo-article-body li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.seo-article-body strong {
    color: var(--brand-black);
}

/* ==========================================================================
   FOOTER — Complete Dark Redesign with Disclaimer & Legal
   ========================================================================== */
.main-footer {
    background: linear-gradient(160deg, #0d0d0d 0%, #111111 50%, #161010 100%);
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

/* Decorative red glow at top-left of footer */
.main-footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -80px;
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(200,16,46,0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* Main grid container */
.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4.5rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 3.5rem;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-brand .logo span {
    color: #FF5722;
}

.footer-brand > p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    max-width: 300px;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(255,255,255,0.12);
}

.social-links a:hover {
    background: #C8102E;
    border-color: #C8102E;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(200,16,46,0.4);
}

.social-links svg {
    width: 17px;
    height: 17px;
}

/* Newsletter box */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.footer-newsletter h5 {
    font-family: var(--font-headers);
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.1rem;
}

.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 0.25rem;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.newsletter-form:focus-within {
    border-color: rgba(200,16,46,0.5);
}

.newsletter-form input {
    background: transparent;
    color: #FFFFFF;
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
    flex-grow: 1;
    width: 80px;
    outline: none;
    border: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--brand-red) 0%, #FF5722 100%);
    color: #FFFFFF;
    padding: 0.45rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-headers);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.newsletter-form button:hover {
    filter: brightness(1.15);
    box-shadow: 0 4px 12px rgba(200,16,46,0.4);
}

/* Link columns */
.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-links-col h4 {
    font-family: var(--font-headers);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-red), #FF5722);
    border-radius: 2px;
}

.footer-links-col a {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    padding: 0.3rem 0;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-links-col a:last-child {
    border-bottom: none;
}

.footer-links-col a:hover {
    color: rgba(255,255,255,0.9);
    padding-left: 6px;
}

/* --- Disclaimer Zone --- */
.footer-disclaimer {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 1.75rem 0;
}

.footer-disclaimer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-disclaimer-icon {
    width: 34px;
    height: 34px;
    background: rgba(255,165,0,0.12);
    border: 1px solid rgba(255,165,0,0.25);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-disclaimer-icon svg {
    width: 16px;
    height: 16px;
    color: #F59E0B;
}

.footer-disclaimer p {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.footer-disclaimer p strong {
    color: rgba(255,255,255,0.65);
    font-weight: 600;
}

.footer-disclaimer p a {
    color: #FF5722;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-disclaimer p a:hover {
    color: #FFFFFF;
}

/* --- Legal Bottom Bar --- */
.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
}

.footer-bottom-copy strong {
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.footer-legal-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
    color: rgba(255,255,255,0.7);
}

.footer-legal-sep {
    color: rgba(255,255,255,0.15);
    font-size: 0.75rem;
}

/* Responsive footer */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 3rem 1.25rem 2.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   SHOPPING CART DRAWER
   ========================================================================== */
.cart-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    visibility: hidden;
    transition: visibility var(--transition-normal);
}

.cart-panel[aria-hidden="false"] {
    visibility: visible;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.cart-panel[aria-hidden="false"] .cart-overlay {
    opacity: 1;
}

.cart-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
}

.cart-panel[aria-hidden="false"] .cart-content {
    transform: translateX(0);
}

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

.cart-header h3 {
    font-size: 1.25rem;
}

.close-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
}

.close-btn:hover {
    background-color: var(--bg-tertiary);
    color: var(--brand-black);
}

.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cart-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    margin: auto;
}

.empty-cart-icon {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.cart-empty-state p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Cart Item Styles */
.cart-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background-color: var(--bg-tertiary);
}

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

.cart-item-name {
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.cart-item-mods {
    font-size: 0.75rem;
    color: var(--brand-red);
    margin-bottom: 0.5rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-qty-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-tertiary);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.cart-qty-selector button {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-price {
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--brand-red);
}

.cart-item-remove {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: underline;
}

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

/* Cart Footer */
.cart-footer {
    padding: 1.5rem;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.cart-totals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tax-row {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.grand-total {
    font-family: var(--font-headers);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--brand-black);
    border-top: 1px dashed var(--border-color);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

/* ==========================================================================
   PRODUCT DETAIL & NUTRITION MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--bg-primary);
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: scale(0.95);
    transition: transform var(--transition-slow);
}

.modal-overlay[aria-hidden="false"] .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.modal-close-btn:hover {
    background-color: var(--brand-red);
    color: var(--text-white);
    border-color: var(--brand-red);
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    height: 85vh;
    max-height: 85vh;
}

.modal-image-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #161616; /* Dark kitchen tray background for receipt to pop out */
    border-right: 1px solid var(--border-color);
    overflow: hidden;
}

.modal-image-wrapper {
    height: 180px;
    width: 100%;
    position: relative;
    flex-shrink: 0;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-receipt-container {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111111; /* Dark theme contrast */
}

.modal-details-panel {
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: var(--bg-primary);
}

.modal-details-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-details-header h2 {
    font-size: 2rem;
}

.modal-price-row {
    font-family: var(--font-headers);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--brand-red);
}

.modal-product-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.modal-section {
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
}

.modal-section h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

/* Customizations Checkboxes */
.customizations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.custom-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.custom-option:hover {
    background-color: var(--bg-tertiary);
}

.custom-option input {
    accent-color: var(--brand-red);
}

.custom-option.selected {
    border-color: var(--brand-red);
    background-color: #FDF2F2;
    color: var(--brand-black);
}

/* Allergen box */
.allergen-alert-box {
    background-color: #FFFBEB;
    border: 1px solid #FEF3C7;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.allergen-icon {
    width: 20px;
    height: 20px;
    color: var(--warning);
    flex-shrink: 0;
}

.allergen-alert-box p {
    font-size: 0.75rem;
    color: #92400E;
}

.allergen-link {
    color: #B45309;
    text-decoration: underline;
    font-weight: 600;
}

/* Nutrition Table */
.nutrition-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.nutrition-note {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.nutrition-table-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    text-align: left;
}

.nutrition-table th, .nutrition-table td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.nutrition-table th {
    background-color: var(--bg-tertiary);
    font-family: var(--font-headers);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.nutrition-table tr:last-child td {
    border-bottom: none;
}

/* Modal Action Bar */
.modal-action-bar {
    position: sticky;
    bottom: 0;
    background-color: var(--bg-primary);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.quantity-selector button:hover {
    background-color: var(--bg-tertiary);
    color: var(--brand-black);
}

.quantity-selector span {
    font-family: var(--font-headers);
    font-weight: 800;
    padding: 0 1rem;
    min-width: 40px;
    text-align: center;
}

.flex-grow {
    flex-grow: 1;
}

/* ==========================================================================
   ALERT MODAL (Success dialog)
   ========================================================================== */
.alert-modal {
    z-index: 400;
}

.alert-container {
    max-width: 400px;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-radius: var(--radius-lg);
}

.success-icon-container {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: #ECFDF5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.success-icon {
    width: 36px;
    height: 36px;
    color: var(--success);
}

.alert-container h2 {
    font-size: 1.5rem;
}

.alert-container p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.order-summary-box {
    width: 100%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    text-align: left;
    margin-bottom: 1rem;
}

.order-summary-box p {
    margin-bottom: 0.25rem;
}

.order-summary-box p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .carousel-slide {
        grid-template-columns: 1fr;
    }
    
    .carousel-img-wrapper {
        height: 250px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-img {
        height: 350px;
    }
    
    .modal-content-grid {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 82vh;
        overflow-y: auto;
    }
    
    .modal-image-panel {
        height: auto;
        flex-shrink: 0;
    }
    
    .modal-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .nav-links {
        justify-content: center;
        gap: 1.25rem;
    }
    
    .header-actions {
        justify-content: space-between;
    }
    
    .search-box {
        flex-grow: 1;
        width: auto;
    }
    
    .search-box:focus-within {
        width: auto;
    }
    
    .menu-tab-sticky {
        top: 130px; /* Adjust sticky tabs offset for double-height header */
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .customizations-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        max-height: 90vh;
    }
}

/* ==========================================================================
   HOMEPAGE NUTRITION MACROS & BUTTONS STYLES
   ========================================================================== */
.menu-card-macros {
    display: flex;
    justify-content: space-between;
    gap: 0.3rem;
    background-color: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.4rem;
    margin-bottom: 1rem;
}
.menu-card-macros .macro-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.menu-card-macros .macro-badge:last-child {
    border-right: none;
}
.menu-card-macros .macro-badge strong {
    font-size: 0.85rem;
    color: var(--brand-black);
    font-weight: 700;
}
.quick-view-btn.full-width-btn {
    width: 100%;
    justify-content: center;
    background-color: var(--bg-tertiary);
    color: var(--brand-black);
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    transition: var(--transition-fast);
}
.quick-view-btn.full-width-btn:hover {
    background-color: var(--brand-red);
    color: var(--text-white);
}

/* ==========================================================================
   CATEGORY GROUPED SECTIONS
   ========================================================================== */

/* Outer container that holds all category-section blocks */
#menu-grid {
    display: block;
    width: 100%;
}

/* Each category is a full-width section block */
.category-section {
    padding: 3rem 0;
    border-bottom: 2px solid var(--border-color);
}

.category-section:first-child {
    padding-top: 0;
}

.category-section:last-child {
    border-bottom: none;
    padding-bottom: 1rem;
}

/* Category heading bar */
.category-section-header {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.category-section-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1rem;
    border-left: 4px solid var(--brand-red);
}

.category-section-header h3 {
    font-family: var(--font-headers);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--brand-black);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

.category-section-header p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
}


/* ==========================================================================
   AUTHENTIC FDA NUTRITION FACTS LABEL
   ========================================================================== */

/* ==========================================================================
   AUTHENTIC THERMAL RECEIPT NUTRITION FACTS SLIP
   ========================================================================== */
.receipt-slip {
    background-color: #faf8f5; /* off-white thermal paper color */
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 100% 24px;
    color: #242424; /* thermal printing black ink, slightly faded */
    padding: 1.5rem 1.25rem 2rem 1.25rem;
    font-family: 'Courier New', Courier, Monaco, monospace;
    font-weight: bold;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.8);
    max-width: 330px;
    margin: 0 auto;
    position: relative;
    border-top: 4px dashed #c0c0c0;
    
    /* Jagged torn receipt edge at bottom */
    clip-path: polygon(
        0% 0%, 100% 0%, 
        100% 97%, 98% 100%, 96% 97%, 94% 100%, 92% 97%, 90% 100%, 
        88% 97%, 86% 100%, 84% 97%, 82% 100%, 80% 97%, 78% 100%, 
        76% 97%, 74% 100%, 72% 97%, 70% 100%, 68% 97%, 66% 100%, 
        64% 97%, 62% 100%, 60% 97%, 58% 100%, 56% 97%, 54% 100%, 
        52% 97%, 50% 100%, 48% 97%, 46% 100%, 44% 97%, 42% 100%, 
        40% 97%, 38% 100%, 36% 97%, 34% 100%, 32% 97%, 30% 100%, 
        28% 97%, 26% 100%, 24% 97%, 22% 100%, 20% 97%, 18% 100%, 
        16% 97%, 14% 100%, 12% 97%, 10% 100%, 8% 97%, 6% 100%, 
        4% 97%, 2% 100%, 0% 97%
    );
}

.receipt-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.receipt-header h3 {
    font-family: 'Courier New', Courier, Monaco, monospace;
    font-size: 1.4rem;
    font-weight: 900;
    color: #111;
    margin: 0 0 0.15rem 0;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.receipt-header p {
    font-size: 0.78rem;
    color: #555;
    margin: 0;
    line-height: 1.35;
    text-transform: uppercase;
}

.receipt-header h4 {
    font-family: 'Courier New', Courier, Monaco, monospace;
    font-size: 0.85rem;
    font-weight: 800;
    margin: 0.4rem 0;
    letter-spacing: 0.05em;
    color: #000;
}

.receipt-dashes {
    font-size: 0.85rem;
    letter-spacing: -0.05em;
    color: #666;
    margin: 0.25rem 0;
    user-select: none;
}

/* Calorie callout */
.receipt-calories-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 1.15rem;
    color: #000;
}

.rc-label {
    font-weight: 900;
}

.rc-val {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

/* DV header */
.receipt-dv-header {
    font-size: 0.72rem;
    text-align: right;
    color: #444;
    font-weight: bold;
    padding: 0.2rem 0;
}

/* Individual rows */
.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    border-bottom: 1px dotted #ccc;
    font-size: 0.85rem;
}

.receipt-row:last-of-type {
    border-bottom: none;
}

.receipt-row.rr-indent {
    padding-left: 1.25rem;
}

.rr-label {
    color: #242424;
}

.rr-val {
    font-weight: 900;
    color: #000;
}

/* Footer elements */
.receipt-footer {
    text-align: center;
    font-size: 0.7rem;
    color: #666;
    line-height: 1.4;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.receipt-footer p {
    margin: 0 0 0.25rem 0;
}

/* AdSense Responsive Ad Unit Placeholders */
.adsense-unit {
    margin: 2rem auto;
    padding: 0.75rem;
    background-color: var(--bg-secondary);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    text-align: center;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.adsense-unit::before {
    content: 'ADVERTISEMENT';
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.adsense-unit-inline {
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.adsense-sidebar {
    width: 100%;
    min-height: 250px;
    background-color: var(--bg-secondary);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    padding: 1rem;
}

.adsense-sidebar::before {
    content: 'SPONSORED';
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}



/* ==========================================================================
   BLOG POST STYLES (Single Page Uniform Layout - No Sidebar)
   ========================================================================== */
.post-layout-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.post-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-family: var(--font-headers);
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.post-breadcrumbs a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.post-breadcrumbs a:hover {
    color: var(--brand-red);
}

.post-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.post-category {
    background-color: var(--brand-red);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    width: fit-content;
    letter-spacing: 0.05em;
}

.post-title-heading {
    font-family: var(--font-headers);
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.15;
    color: var(--brand-black);
    text-transform: uppercase;
}

.post-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: var(--font-headers);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.post-meta-strip span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.post-featured-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
}

.post-body-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.post-body-content p {
    margin-bottom: 1.5rem;
}

.post-body-content h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--brand-black);
    margin: 2.5rem 0 1rem 0;
    border-left: 4px solid var(--brand-red);
    padding-left: 0.75rem;
    text-transform: uppercase;
}

.post-body-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-black);
    margin: 2rem 0 0.8rem 0;
    text-transform: uppercase;
}

.post-body-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-black);
    margin: 1.5rem 0 0.6rem 0;
}

.post-body-content blockquote {
    border-left: 4px solid var(--brand-red);
    padding: 0.75rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--brand-red);
    font-size: 1.25rem;
    font-family: var(--font-headers);
    font-weight: 800;
    background-color: var(--bg-secondary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.post-body-content ul, .post-body-content ol {
    margin: 0 0 1.75rem 1.5rem;
}

.post-body-content li {
    margin-bottom: 0.5rem;
}

.post-body-content .inline-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.post-body-content .table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.post-body-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: left;
}

.post-body-content th {
    background-color: var(--brand-black);
    color: var(--text-white);
    font-family: var(--font-headers);
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.85rem 1.15rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.post-body-content td {
    padding: 0.85rem 1.15rem;
    border-bottom: 1px solid var(--border-color);
}

.post-body-content tr:last-child td {
    border-bottom: none;
}

.post-body-content tr:nth-child(even) {
    background-color: var(--bg-secondary);
}

/* Dossier elements for Secret Menu */
.post-body-content .secret-dossier-box {
    background-color: #fafafa;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.post-body-content .secret-dossier-box::before {
    content: 'SECRET DOSSIER';
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    font-family: var(--font-headers);
    font-weight: 900;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    border: 1px solid var(--border-color);
    padding: 0.15rem 0.35rem;
    border-radius: var(--radius-sm);
}

.post-body-content .dossier-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--brand-black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.post-body-content .dossier-ingredients {
    background-color: #fffdec;
    border: 1px solid #ffe8cc;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin: 1rem 0;
    color: #d87c00;
    font-weight: 600;
}

.post-body-content .dossier-how-to-order {
    background-color: #f1f8e9;
    border: 1px solid #dcedc8;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin: 1rem 0;
    color: #33691e;
    font-weight: 600;
}

/* Rating scale badges for Ranked Tacos */
.post-body-content .rating-scale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    background-color: var(--bg-secondary);
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.post-body-content .rating-scale-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.post-body-content .rating-scale-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-family: var(--font-headers);
    font-weight: 800;
}

.post-body-content .rating-scale-value {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--brand-red);
    font-family: var(--font-headers);
}

.post-body-content .rank-item-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.post-body-content .rank-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.post-body-content .rank-badge {
    background-color: var(--brand-black);
    color: var(--brand-red);
    font-family: var(--font-headers);
    font-weight: 900;
    font-size: 1.2rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
}

.post-body-content .rank-name {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--brand-black);
}

.post-body-content .pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 1.25rem 0;
}

.post-body-content .pros-box, .post-body-content .cons-box {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.post-body-content .pros-cons-title {
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-body-content .pros-box .pros-cons-title { color: var(--success); }
.post-body-content .cons-box .pros-cons-title { color: var(--brand-red); }

.post-body-content .pros-cons-list {
    list-style: none;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.post-body-content .pros-cons-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.3rem;
}

.post-body-content .pros-box .pros-cons-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.post-body-content .cons-box .pros-cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--brand-red);
    font-weight: bold;
}

/* Dietary badges for nutrition */
.post-body-content .diet-indicator-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-right: 0.3rem;
}

.post-body-content .diet-keto { background-color: #e3f2fd; color: #0d47a1; }
.post-body-content .diet-gf { background-color: #fff8e1; color: #ff8f00; }
.post-body-content .diet-veg { background-color: #e8f5e9; color: #2e7d32; }

/* CTAs and related stories */
.post-bottom-cta {
    margin-top: 4rem;
    border-top: 2px solid var(--brand-black);
    padding-top: 2.5rem;
}

.post-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.post-cta-card {
    background-color: var(--brand-black);
    color: var(--text-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--brand-black);
    transition: all var(--transition-normal);
}

.post-cta-card:hover {
    border-color: var(--brand-red);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.post-cta-card h4 {
    color: var(--brand-red);
    font-size: 1.2rem;
}

.post-cta-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #d1d5db;
}

.post-related-header {
    font-family: var(--font-headers);
    font-weight: 900;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--brand-black);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.post-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.post-related-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.post-related-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red);
}

.post-related-card img {
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.post-related-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.post-related-card-title {
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--brand-black);
}

.post-newsletter-box {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.post-newsletter-box h3 {
    margin-bottom: 0.75rem;
    color: var(--brand-black);
}

.post-newsletter-box p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 1.5rem auto;
    font-size: 0.9rem;
    line-height: 1.5;
}

.post-newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0.5rem;
}

.post-newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.post-newsletter-form button {
    padding: 0.75rem 1.25rem;
}

@media (max-width: 768px) {
    .post-layout-container {
        padding: 4rem 1rem;
    }
    .post-title-heading {
        font-size: 2rem;
    }
    .post-featured-image {
        height: 220px;
    }
    .post-body-content .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    .post-newsletter-form {
        flex-direction: column;
    }
}

/* ==========================================================================
   HOMEPAGE OVERHAUL & NEW SECTIONS STYLING
   ========================================================================== */

/* Section headers */
.overhaul-section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.overhaul-section-head h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.overhaul-section-head h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--brand-red);
}

.overhaul-section-head p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 1rem;
}

/* SECTION 1: Calculator Preview */
.calc-preview-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.calc-preview-card {
    background-color: var(--bg-primary);
    border: 2px solid var(--brand-black);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    padding: 3.5rem;
    align-items: center;
}

.calc-preview-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-preview-title {
    font-size: 2.2rem;
    line-height: 1.1;
    color: var(--brand-black);
}

.calc-preview-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.calc-preview-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.calc-preview-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.calc-preview-right {
    position: relative;
    background-color: var(--brand-black);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 2px solid var(--brand-red);
}

.calc-preview-right::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--success);
    box-shadow: 0 0 10px var(--success);
}

/* SECTION 2: Popular Searches */
.popular-searches-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.popular-search-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    text-align: center;
    font-family: var(--font-headers);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--brand-black);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.popular-search-card:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* SECTION 3: Most Popular Menu Items */
.popular-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.pop-item-card {
    background-color: var(--bg-primary);
    border: 2px solid var(--brand-black);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
}

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

.pop-item-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--brand-red);
    color: var(--text-white);
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    z-index: 1;
}

.pop-item-img-wrap {
    height: 180px;
    background-color: var(--bg-tertiary);
    overflow: hidden;
    position: relative;
}

.pop-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.pop-item-card:hover .pop-item-img-wrap img {
    transform: scale(1.05);
}

.pop-item-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.pop-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pop-item-title {
    font-size: 1.25rem;
    color: var(--brand-black);
    line-height: 1.2;
}

.pop-item-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    flex: 1;
}

.pop-item-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* SECTION 4: Why People Love Torchy's */
.why-love-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.why-love-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-fast);
}

.why-love-card:hover {
    border-color: var(--brand-red);
    background-color: var(--bg-primary);
    box-shadow: var(--shadow-md);
}

.why-love-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(200, 16, 46, 0.1);
    color: var(--brand-red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-love-card h4 {
    font-size: 1.1rem;
    color: var(--brand-black);
}

.why-love-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* SECTION 5: Featured Blog Section */
.blog-preview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.blog-featured-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-featured-card {
    background-color: var(--bg-primary);
    border: 2px solid var(--brand-black);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.blog-featured-img {
    height: 340px;
    background-color: var(--bg-tertiary);
    object-fit: cover;
}

.blog-featured-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-meta-strip {
    display: flex;
    gap: 1.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
}

.blog-list-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-list-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    align-items: center;
}

.blog-list-img {
    width: 120px;
    height: 90px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background-color: var(--bg-tertiary);
}

.blog-list-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.blog-list-title {
    font-size: 1rem;
    line-height: 1.3;
    color: var(--brand-black);
}

/* SECTION 6: Nutrition Highlights */
.highlights-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.highlight-box-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.highlight-box-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.highlight-box-badge {
    align-self: flex-start;
    background-color: rgba(200, 16, 46, 0.1);
    color: var(--brand-red);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
}

.highlight-box-val {
    font-family: var(--font-headers);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--brand-black);
}

/* SECTION 7: Meal Comparison Preview */
.compare-preview-card {
    background-color: var(--bg-primary);
    border: 2px solid var(--brand-black);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    margin-top: 2rem;
}

.compare-preview-grid {
    display: grid;
    grid-template-columns: 1fr 0.2fr 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.compare-product-col {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compare-vs-divider {
    font-family: var(--font-headers);
    font-size: 2rem;
    font-weight: 900;
    color: var(--brand-red);
}

.compare-rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.compare-row-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border-color);
}

/* SECTION 9: Editorial Trust Section */
.editorial-trust-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.editorial-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.editorial-trust-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.editorial-trust-card h4 {
    font-size: 1.15rem;
    color: var(--brand-black);
    border-bottom: 2px solid var(--brand-red);
    padding-bottom: 0.5rem;
    width: fit-content;
}

.editorial-trust-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* SECTION 10: Internal Linking Hub */
.linking-hub-section {
    background-color: var(--brand-black);
    color: var(--text-white);
    padding: 5rem 0;
}

.linking-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.linking-hub-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
    font-family: var(--font-headers);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.linking-hub-card:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    transform: translateY(-3px);
}
/* ==========================================================================
   NEW SEO PAGES (Hours, Breakfast, Kids Menu Styles)
   ========================================================================== */

/* Hours & Locations Page */
.hours-section {
    padding: 5rem 0;
    background-color: var(--bg-primary);
}
.hours-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.hours-table th, .hours-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.hours-table th {
    background-color: var(--brand-black);
    color: var(--text-white);
    font-family: var(--font-headers);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.hours-table tr:last-child td {
    border-bottom: none;
}
.hours-table td strong {
    color: var(--brand-red);
}
.location-directory {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.location-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.location-card h3 {
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--brand-black);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.location-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.5rem;
}
.location-meta i {
    color: var(--brand-red);
}

/* Breakfast Page */
.breakfast-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.9)), url('assets/hero_background.png');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: var(--text-white);
}
.breakfast-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Kids Menu Page */
.kids-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.kids-item-card {
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.kids-item-card::before {
    content: 'LITTLE DEVIL';
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--brand-red);
    color: var(--text-white);
    font-size: 0.55rem;
    font-weight: 900;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    font-family: var(--font-headers);
    letter-spacing: 0.05em;
}
.kids-item-card:hover {
    border-color: var(--brand-black);
    transform: translateY(-5px);
}
.kids-item-title {
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--brand-black);
    text-transform: uppercase;
}

/* Responsive adjustments for hours layout */
@media (max-width: 768px) {
    .hours-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   E-E-A-T AUTHOR BIO & REVIEWER CARD
   ========================================================================== */
.author-bio-card {
    display: flex;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 2.5rem auto 1rem auto;
    gap: 1.5rem;
    align-items: center;
    max-width: 800px;
}

.author-bio-avatar {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background-color: var(--brand-red);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-bio-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
}

.author-bio-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.author-bio-name {
    font-family: var(--font-headers);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--brand-black);
    text-transform: uppercase;
}

.author-bio-role {
    font-size: 0.7rem;
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.author-bio-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0.35rem 0 0 0;
}

.author-bio-verified {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #16a34a; /* Green success color */
    font-weight: 700;
    margin-top: 0.15rem;
    gap: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

@media (max-width: 600px) {
    .author-bio-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    .author-bio-title-row {
        justify-content: center;
    }
}


/* ==========================================================================
   SEO Long-form Editorial styling
   ========================================================================== */
.seo-editorial-content {
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}
.seo-editorial-content section {
    margin-bottom: 4rem;
}
.seo-editorial-content h2 {
    font-family: var(--font-headers);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.85rem;
    color: var(--brand-black);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--brand-yellow);
    padding-bottom: 0.5rem;
    display: inline-block;
}
.seo-editorial-content h3 {
    font-family: var(--font-headers);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.3rem;
    color: var(--brand-red);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}
.seo-editorial-content p {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 1.5rem;
}
.seo-editorial-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.seo-editorial-content table caption {
    font-family: var(--font-headers);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--brand-black);
    margin-bottom: 0.75rem;
    text-align: left;
}
.seo-editorial-content th {
    background-color: var(--brand-black);
    color: var(--text-white);
    font-family: var(--font-headers);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 1rem 1.25rem;
    text-align: left;
}
.seo-editorial-content td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    background-color: var(--bg-secondary);
}
.seo-editorial-content tr:last-child td {
    border-bottom: none;
}
.seo-editorial-content figure {
    margin: 3rem 0;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-secondary);
    padding: 1.5rem;
}
.seo-editorial-content figure img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.seo-editorial-content figcaption {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}
.seo-editorial-content ul, .seo-editorial-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.seo-editorial-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.seo-editorial-content .faq-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.seo-editorial-content .faq-item:hover {
    border-color: var(--brand-yellow);
}
.seo-editorial-content .faq-item h3 {
    margin-top: 0;
    color: var(--brand-black);
    font-size: 1.15rem;
    font-weight: 800;
}
.seo-editorial-content .faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ==========================================================================
   PDF Menu Section Styles
   ========================================================================== */
#pdf-section {
    scroll-margin-top: 140px; /* Offset for sticky header and sticky nav */
}

.pdf-viewer-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.pdf-frame-wrapper {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.pdf-info-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pdf-tab-link:hover {
    background-color: rgba(200, 16, 46, 0.05);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .pdf-viewer-container {
        grid-template-columns: 1fr;
    }
}

