        /* CSS Variables for Design System */
        :root {
            --background: hsl(0, 0%, 100%);
            --foreground: hsl(0, 0%, 5%);
            --card: hsl(0, 0%, 100%);
            --card-foreground: hsl(0, 0%, 5%);
            --primary: hsl(45, 100%, 51%);
            --primary-foreground: hsl(0, 0%, 5%);
            --secondary: hsl(0, 0%, 10%);
            --secondary-foreground: hsl(0, 0%, 98%);
            --muted: hsl(0, 0%, 96%);
            --muted-foreground: hsl(0, 0%, 40%);
            --accent: hsl(4, 90%, 58%);
            --accent-foreground: hsl(0, 0%, 98%);
            --destructive: hsl(0, 84%, 60%);
            --destructive-foreground: hsl(0, 0%, 98%);
            --border: hsl(0, 0%, 90%);
            --input: hsl(0, 0%, 90%);
            --radius: 0.25rem;
            --hero-gradient: linear-gradient(135deg, hsl(0, 0%, 5%), hsl(0, 0%, 15%));
            --gold-glow: 0 0 30px hsla(45, 100%, 51%, 0.3);
            --card-hover: 0 10px 40px -10px hsla(0, 0%, 0%, 0.4);
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            border: 0;
        }

        body {
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.5;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Bebas Neue', 'Impact', sans-serif;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .logo {
            display: block;
            text-decoration: none;
            padding: 8px 0; /* optional: vertical padding */
        }

        .logo-img {
            height: 50px;      /* adjust this value to fit your navbar height */
            width: auto;
            display: block;
            transition: transform 0.2s ease;
        }

        /* Optional: slight hover effect */
        .logo:hover .logo-img {
            transform: scale(1.05);
        }

        /* Utility Classes */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            font-size: 1rem;
            border-radius: var(--radius);
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: inherit;
            text-decoration: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--primary-foreground);

        }

        .btn-primary:hover {
            background-color: hsla(45, 100%, 51%, 0.9);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--border);
            color: var(--foreground);
        }

        .btn-outline:hover {
            border-color: var(--primary);
            background-color: var(--primary);
            color: var(--primary-foreground);
        }
        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.25rem;
        }

        .card {
            background-color: var(--card);
            border-radius: var(--radius);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: var(--card-hover);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.5rem;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: var(--radius);
            white-space: nowrap;
        }

        .badge-default {
            background-color: var(--primary);
            color: var(--primary-foreground);
        }

        .badge-secondary {
            background-color: var(--secondary);
            color: var(--secondary-foreground);
        }

        .badge-destructive {
            background-color: var(--destructive);
            color: var(--destructive-foreground);
        }

        .badge-accent {
            background-color: var(--accent);
            color: var(--accent-foreground);
        }

        .badge-outline {
            background-color: transparent;
            border: 1px solid var(--border);
            color: var(--foreground);
        }

        .input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            font-family: inherit;
        }

        .input:focus {
            outline: 2px solid var(--primary);
            outline-offset: 1px;
        }

        /* Navigation Styles */
        .navigation {
            position: sticky;
            top: 0;
            z-index: 50;
            background-color: var(--secondary);
            border-bottom: 1px solid hsla(45, 100%, 51%, 0.2);
        }

        .navigation .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 5rem;
        }



        .nav-items {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .logo {
            color: var(--primary);
            font-size: 1.875rem;
            font-weight: bold;
            letter-spacing: 0.05em;
        }
        .nav-link {
            color: var(--secondary-foreground);
            font-weight: 500;
            font-size: 1.125rem;
            letter-spacing: 0.05em;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: var(--primary);
        }
        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 60;
        }
        
        .hamburger-line {
            display: block;
            width: 28px;
            height: 3px;
            background-color: var(--primary);
            margin: 5px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 100;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-menu.active {
            display: block;
            opacity: 1;
            animation: fadeIn 0.3s ease;
        }
        
        .mobile-menu-content {
            position: fixed;
            top: 0;
            right: 0;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background-color: var(--secondary);
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.active .mobile-menu-content {
            transform: translateX(0);
        }
        
        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            border-bottom: 1px solid hsla(45, 100%, 51%, 0.2);
        }
        
        .mobile-menu-close {
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }
        
        .mobile-menu-close:hover {
            transform: rotate(90deg);
        }
        
        .mobile-nav {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 2rem 1.5rem;
            gap: 0.5rem;
            overflow-y: auto;
        }
        
        .mobile-nav-link {
            color: var(--secondary-foreground);
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            padding: 1rem;
            border-bottom: 1px solid hsla(45, 100%, 51%, 0.1);
            transition: all 0.2s ease;
            font-family: 'Bebas Neue', 'Impact', sans-serif;
        }
        
        .mobile-nav-link:hover,
        .mobile-nav-link:active {
            color: var(--primary);
            background-color: hsla(45, 100%, 51%, 0.1);
            padding-left: 1.5rem;
        }
        
        .mobile-menu-actions {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            border-top: 1px solid hsla(45, 100%, 51%, 0.2);
        }
        
        .w-full {
            width: 100%;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        /* Footer Styles */
        footer {
            background-color: var(--secondary);
            color: var(--secondary-foreground);
            padding: 3rem 0;
            border-top: 1px solid hsla(45, 100%, 51%, 0.2);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-bottom {
            border-top: 1px solid hsla(45, 100%, 51%, 0.2);
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-link {
            font-size: 0.875rem;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            transition: color 0.2s ease;
        }

        .social-link:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--secondary), hsla(0, 0%, 10%, 0.8), transparent);
        }

        .hero-content {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .hero-tag {
            display: inline-block;
            background-color: var(--primary);
            color: var(--primary-foreground);
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: bold;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: 6rem;
            color: var(--secondary-foreground);
            line-height: 1;
            margin-bottom: 1.5rem;
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-description {
            font-size: 1.25rem;
            color: hsla(0, 0%, 98%, 0.9);
            max-width: 36rem;
            margin-bottom: 1.5rem;
        }

        .gold-glow {
            box-shadow: var(--gold-glow);
        }

        /* Top Picks Section */
        .top-picks {
            background-color: var(--primary);
            padding: 4rem 0;
        }

        .top-picks-title {
            font-size: 5rem;
            color: var(--secondary);
            margin-bottom: 3rem;
        }

        .top-picks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        /* Page Content */
        .page-content {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1;
        }

        .section-title {
            font-size: 6rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        /* Menu Page Styles */
        .menu-search {
            max-width: 36rem;
            margin-bottom: 2rem;
            position: relative;
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--muted-foreground);
        }

        .search-input {
            padding-left: 2.5rem;
        }

        .menu-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .menu-item-image {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }

        .menu-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .card:hover .menu-item-image img {
            transform: scale(1.1);
        }

        .menu-item-badge {
            position: absolute;
            top: 1rem;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .badge-left {
            left: 1rem;
        }

        .badge-right {
            right: 1rem;
        }

        .menu-item-content {
            padding: 1.5rem;
        }

        .menu-item-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .menu-item-name {
            font-size: 1.25rem;
            font-weight: bold;
            color: var(--card-foreground);
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .menu-item-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
        }

        .menu-item-description {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            margin-bottom: 1rem;
            display: -webkit-box;
            line-clamp: 2;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .menu-item-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 100;
            align-items: center;
            justify-content: center;
        }

        .modal.open {
            display: flex;
        }

        .modal-content {
            background-color: var(--background);
            border-radius: var(--radius);
            max-width: 48rem;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 1.5rem;
        }

        .modal-header {
            margin-bottom: 1.5rem;
        }

        .modal-title {
            font-size: 1.875rem;
            font-weight: bold;
            letter-spacing: 0.05em;
        }

        .modal-image {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
        }

        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .nutrition-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .nutrition-item {
            background-color: var(--muted);
            padding: 1rem;
            border-radius: var(--radius);
            text-align: center;
        }

        .nutrition-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--card-foreground);
        }

        .nutrition-label {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        
        /* Sauces Page Styles */
        .sauces-hero {
        position: relative;
        height: 60vh;
        min-height: 500px;
        display: flex;
        align-items: center;
        overflow: hidden;
        background-color: var(--background);
        }

        .sauces-hero-bg {
            position: absolute;
            inset: 0;
        }

        .sauces-hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
        }

        .sauces-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, hsla(0, 0%, 100%, 0.6), hsla(0, 0%, 100%, 0.4), var(--background));
        }

        .sauces-hero-content {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sauces-title {
            font-size: 6rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .sauces-subtitle {
            font-size: 1.5rem;
            color: var(--foreground);
            margin-bottom: 1.5rem;
            max-width: 36rem;
        }

        .sauces-description {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            max-width: 48rem;
        }

        .sauces-filters {
            background-color: var(--background);
            padding: 2rem 0;
        }

        .filter-section {
            margin-bottom: 1.5rem;
        }

        .filter-title {
            font-size: 1.25rem;
            font-weight: bold;
            color: var(--foreground);
            margin-bottom: 0.75rem;
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .sauces-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            padding: 4rem 0;
        }

        .sauce-card-image {
            position: relative;
            height: 16rem;
            overflow: hidden;
            background-color: var(--background);
        }

        .sauce-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card:hover .sauce-card-image img {
            transform: scale(1.1);
        }

        .sauce-card-badges {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: flex;
            gap: 0.5rem;
        }

        .sauce-card-content {
            padding: 1.5rem;
        }

        .sauce-card-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }

        .sauce-card-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--card-foreground);
        }

        .heat-level {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .flame-icon {
            width: 1rem;
            height: 1rem;
        }
        .sauce-card-description {
            color: var(--muted-foreground);
            margin-bottom: 1rem;
            display: -webkit-box;
            line-clamp: 2;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .sauce-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .sauce-price {
            font-size: 1.875rem;
            font-weight: bold;
            color: var(--primary);
        }

        /* Locations Page Styles */
        .locations-hero {
            background-color: var(--secondary);
            padding: 4rem 0;
        }

        .locations-title {
            font-size: 6rem;
            color: var(--primary);
            margin-bottom: 2rem;
        }

        .location-search {
            margin-bottom: 3rem;
            max-width: 36rem;
        }

        .search-form {
            display: flex;
            gap: 1rem;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .location-card {
            padding: 2rem;
        }

        .location-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .location-name {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--card-foreground);
            margin-bottom: 1rem;
        }

        .location-details {
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
        }

        .location-detail {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .location-icon {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
            margin-top: 0.125rem;
        }

/* Exclusive Merch Section */
.exclusive-merch-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.exclusive-merch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.exclusive-merch-text p:first-child {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.exclusive-merch-text h2 {
  font-size: 3rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.exclusive-merch-text > p:nth-of-type(2) {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.exclusive-merch-text a {
  color: var(--foreground);
  text-decoration: underline;
  font-weight: bold;
}

.exclusive-merch-text .btn {
  font-weight: bold;
  margin-top: 2rem;
  background-color: var(--primary);
}

.exclusive-merch-image {
  text-align: center;
}

.exclusive-merch-image img {
  max-width: 100%;
  height: auto;
}

/* Features Grid Section */
.features-section {
  padding: 4rem 0;
  background-color: var(--muted);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  border: 1px solid var(--border);
}

.feature-card-icon {
  margin-bottom: 1.5rem;
}

.feature-card-icon img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: block;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}

.feature-card p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
}

.features-cta {
  text-align: center;
  margin-top: 3rem;
}

.features-cta .btn {
  font-weight: bold;
  background-color: var(--primary);
}

/* Orange Hero Banner */
.orange-banner {
  padding: 3rem 0;
  background-color: #e2980d;
  border-radius: 1rem;
  margin: 3rem 8rem;
}

.orange-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.orange-banner-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.orange-banner-logo img {
  height: 60px;
  width: auto;
}

.orange-banner h3 {
  font-size: 2.75rem;
  color: white;
  font-weight: bold;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.orange-banner p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.orange-banner-cta {
  text-align: right;
}

.orange-banner .btn {
  font-weight: bold;
  border: 3px solid white;
  background-color: white;
  color: var(--foreground);
}

/* Redeem Rewards Section */
.redeem-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.redeem-section h2 {
  font-size: 2.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.redeem-divider {
  height: 4px;
  width: 60px;
  background-color: var(--primary);
  margin-bottom: 3rem;
}

.redeem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.reward-item {
  padding: 2rem;
}

.reward-item-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.reward-item-image {
  width: 250px;
  height: 150px;
  object-fit: cover;
}

.reward-item h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.reward-item-points {
  color: var(--muted-foreground);
  font-size: 1.25rem;
  font-weight: bold;
}

/* Top CTA Banner */
.top-cta-banner {
  padding: 2rem;
  text-align: center;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}

.top-cta-banner .btn {
  font-weight: bold;
  border: 3px solid var(--foreground);
  background-color: transparent;
  color: var(--foreground);
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.faq-section h2 {
  font-size: 2.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.faq-divider {
  height: 4px;
  width: 80px;
  background-color: var(--primary);
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 1100px;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  cursor: pointer;
}

.faq-item summary {
  font-size: 1.25rem;
  color: var(--foreground);
  font-weight: bold;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary span {
  color: var(--muted-foreground);
}

.faq-item p {
  color: var(--muted-foreground);
  margin-top: 1rem;
  line-height: 1.6;
}

/* Download App Section */
.download-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.download-section h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.download-image img {
  max-width: 100%;
  height: auto;
}

.download-content p:first-child {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.download-content h3 {
  font-size: 2.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.download-content > p:nth-of-type(2) {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.app-store-links {
  display: flex;
  gap: 1rem;
}

.app-store-links a {
  display: inline-block;
}

.app-store-links img {
  height: 50px;
  width: auto;
}


        /* 404 Page Styles */
        .not-found {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--muted);
        }

        .not-found-content {
            text-align: center;
        }

        .not-found-title {
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .not-found-message {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
        }

        .not-found-link {
            color: var(--primary);
            text-decoration: underline;
            transition: color 0.2s ease;
        }

        .not-found-link:hover {
            color: hsla(45, 100%, 51%, 0.9);
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .hero {
                height: 700px;
            }
            
            .hero-title {
                font-size: 8rem;
            }
            
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
            
            .top-picks-title {
                font-size: 7rem;
            }
            
            .top-picks-grid {
                grid-template-columns: repeat(5, 1fr);
            }
            
            .section-title {
                font-size: 8rem;
            }
            
            .menu-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .nutrition-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .sauces-title {
                font-size: 8rem;
            }
            
            .sauces-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .locations-title {
                font-size: 8rem;
            }
            
            .locations-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .rewards-title {
                font-size: 8rem;
            }
            
            .rewards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-items {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-title {
                font-size: 4.5rem;
            }
            
            .top-picks-title {
                font-size: 4rem;
            }
            
            .section-title {
                font-size: 4.5rem;
            }
            
            .sauces-title {
                font-size: 4.5rem;
            }
            
            .locations-title {
                font-size: 4.5rem;
            }
            
            .rewards-title {
                font-size: 4.5rem;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInFromLeft {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .animate-fade-in {
            animation: fadeIn 0.7s ease-out;
        }

        .animate-slide-in-left {
            animation: slideInFromLeft 0.7s ease-out;
        }
/* ——— Top Picks Carousel ——— */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.top-picks-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s ease-in-out;
    will-change: transform;
}

/* Each card takes a fixed width – change if you want more/less visible */
.top-picks-track .card {
    flex: 0 0 280px;          /* visible card width */
    width: 280px;
}

/* Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: var(--primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* Hide arrows on very small screens (optional) */
@media (max-width: 640px) {
    .carousel-btn { width: 40px; height: 40px; }
}

/* Optional: infinite loop visual gap filler (duplicate first/last items) */
.top-picks-track.infinite {
    padding-left: 280px;   /* same as card width */
    padding-right: 280px;
}

/* ——— FIX: Mobile Header – Keep buttons visible (320-425px) ——— */
@media (max-width: 768px) {
    .navigation .container {
        justify-content: space-between;
        padding: 0 0.75rem; /* tighter padding on mobile */
    }

    /* Make nav-actions shrink and stack nicely */
    .nav-actions {
        display: flex;
        gap: 0.5rem;           /* reduced gap */
        flex-shrink: 0;
    }

    /* Shrink buttons on small screens */
    .nav-actions .btn-primary {
        padding: 0.5rem 0.75rem;   /* smaller padding */
        font-size: 0.8125rem;      /* 13px */
        letter-spacing: 0.03em;
        white-space: nowrap;
        margin-left: 0;            /* remove the old 1.5rem margin */
    }

    /* On very small screens (≤360px), make text even tighter */
    @media (max-width: 360px) {
        .nav-actions .btn-primary {
            padding: 0.45rem 0.6rem;
            font-size: 0.75rem;    /* 12px */
            font-weight: 600;
        }
    }
}
/* Menu Hero Section Styles */
.menu-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--background);
}

.menu-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.menu-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.menu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, hsla(0, 0%, 100%, 0.6), hsla(0, 0%, 100%, 0.4), var(--background));
}

.menu-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-title {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.menu-subtitle {
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    max-width: 36rem;
    font-weight: 500;
}

.menu-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .menu-hero {
        height: 70vh;
    }
    
    .menu-title {
        font-size: 8rem;
    }
}

@media (max-width: 768px) {
    .menu-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .menu-title {
        font-size: 4.5rem;
    }
    
    .menu-subtitle {
        font-size: 1.25rem;
    }
    
    .menu-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-hero {
        height: 40vh;
        min-height: 350px;
    }
    
    .menu-title {
        font-size: 3.5rem;
    }
    
    .menu-subtitle {
        font-size: 1.125rem;
    }
    
    .menu-description {
        font-size: 0.875rem;
    }
}
/* Operating Hours Section */
.operating-hours {
    padding: 4rem 0;
    background-color: var(--background);
}

.hours-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hours-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.hours-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hours-card {
    padding: 2rem;
}

.hours-title {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.hours-description {
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
    text-align: center;
}

.hours-table-container {
    overflow-x: auto;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.hours-table thead {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.hours-table th {
    padding: 1rem;
    text-align: left;
    font-weight: bold;
    letter-spacing: 0.05em;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
}

.hours-table th:nth-child(2),
.hours-table th:nth-child(3) {
    text-align: center;
}

.hours-table tr {
    border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table tr:nth-child(even) {
    background-color: var(--muted);
}

.hours-table tr:hover {
    background-color: hsla(45, 100%, 51%, 0.1);
}

.hours-table td {
    padding: 1rem;
    font-weight: 500;
}

.hours-table td:nth-child(2),
.hours-table td:nth-child(3) {
    text-align: center;
}

.hours-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--muted);
    border-radius: var(--radius);
}

.hours-note-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.hours-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.hours-info-card {
    padding: 1.5rem;
}

.hours-info-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-info-text {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.happy-hour-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: bold;
}

.hours-list {
    color: var(--muted-foreground);
    list-style-type: disc;
    padding-left: 1.5rem;
}

.hours-list li {
    margin-bottom: 0.5rem;
}

.hours-tip {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--muted);
    border-radius: var(--radius);
}

.hours-tip-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: bold;
}

.hours-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(to right, var(--primary), hsla(45, 100%, 51%, 0.8));
    border-radius: var(--radius);
}

.hours-cta-title {
    font-size: 2rem;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.hours-cta-text {
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.hours-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hours-cta-btn {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    font-weight: bold;
}

.hours-cta-btn-alt {
    background-color: var(--primary-foreground);
    color: var(--primary);
    font-weight: bold;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hours-container {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 768px) {
    .hours-table {
        font-size: 0.875rem;
    }
    
    .hours-table th,
    .hours-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .hours-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hours-cta-btn,
    .hours-cta-btn-alt {
        width: 100%;
        max-width: 300px;
    }
}
html {
    scroll-behavior: smooth;
}

/* ——— Intro Section ——— */
.intro-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--background), hsla(45, 100%, 51%, 0.03));
    position: relative;
    overflow: hidden;
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-tag {
    display: inline-block;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
}

.intro-title {
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.gold-text {
    color: var(--primary);
}

.intro-description {
    font-size: 1.35rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;

}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.8rem;
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    letter-spacing: 0.05em;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.intro-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro-title {
        font-size: 4.2rem;
    }
    
    .intro-description {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 3.5rem;
    }
    
    .intro-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* About paragraph below CTA */
.intro-about {
    margin-top: 4.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;

}

.intro-about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.intro-about p:last-child {
    margin-bottom: 0;
}

.intro-about strong {
    color: var(--primary);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-about {
        margin-top: 3.5rem;
        padding-top: 2.5rem;
    }
    
    .intro-about p {
        font-size: 1rem;
        line-height: 1.75;
    }
}
/* ——— Conclusion Section ——— */
.conclusion-section {
    padding: 6rem 0 8rem;
    background: linear-gradient(to bottom, var(--background), hsla(45, 100%, 51%, 0.04));
    text-align: center;
}

.conclusion-content {
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-heading {
    font-size: 4rem;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.conclusion-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--foreground);
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .conclusion-heading {
        font-size: 3.5rem;
    }
    .conclusion-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .conclusion-heading {
        font-size: 3rem;
    }
    .conclusion-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}
