﻿/*
Theme Name: Singh's Corner
Theme URI: https://singhscorner.com/
Author: Singh's Corner Team
Author URI: https://singhscorner.com/
Description: Premium fast-food 100% vegetarian theme featuring 3D frame scroll animations, interactive burger builder, dynamic menu filters, locations finder, and cinematic glassmorphism UI.
Version: 1.0.0
Text Domain: singhs-corner
Tags: restaurant, fast-food, custom-hero, frame-animation, interactive-builder, full-width, responsive-layout
*/
/* ============================================
   Singh's Corner - Design System & Styles
   Saffron & Sapphire Theme
   ============================================ */

/* === CSS Custom Properties === */
:root {
    /* Primary Colors */
    --primary: #9a4600;
    --primary-container: #f47920;
    --on-primary: #ffffff;
    --on-primary-container: #572400;
    --primary-fixed: #ffdbc9;
    --primary-fixed-dim: #ffb68d;
    --on-primary-fixed: #321200;

    /* Secondary Colors */
    --secondary: #3d608a;
    --secondary-container: #abcffe;
    --on-secondary: #ffffff;
    --on-secondary-container: #345881;
    --secondary-fixed: #d2e4ff;

    /* Tertiary Colors */
    --tertiary: #5e5f5c;
    --on-tertiary: #ffffff;
    --tertiary-container: #9c9c99;

    /* Error */
    --error: #ba1a1a;
    --error-container: #ffdad6;

    /* Surface & Background */
    --surface: #fcf9f8;
    --surface-bright: #fcf9f8;
    --surface-dim: #dcd9d9;
    --surface-container: #f0eded;
    --surface-container-low: #f6f3f2;
    --surface-container-high: #eae7e7;
    --surface-container-highest: #e5e2e1;
    --surface-container-lowest: #ffffff;
    --surface-variant: #e5e2e1;
    --on-surface: #1c1b1b;
    --on-surface-variant: #574237;
    --background: #fcf9f8;
    --on-background: #1c1b1b;
    --inverse-surface: #313030;
    --inverse-on-surface: #f3f0ef;
    --inverse-primary: #ffb68d;

    /* Outline */
    --outline: #8b7265;
    --outline-variant: #dec0b1;

    /* Spacing */
    --unit: 8px;
    --gutter: 24px;
    --margin-desktop: 80px;
    --margin-mobile: 20px;
    --container-max: 1440px;

    /* Rounded */
    --rounded-sm: 0.25rem;
    --rounded: 0.5rem;
    --rounded-md: 0.75rem;
    --rounded-lg: 1rem;
    --rounded-xl: 1.5rem;
    --rounded-2xl: 2rem;
    --rounded-3xl: 2.5rem;
    --rounded-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 48, 87, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 48, 87, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 48, 87, 0.1);
    --shadow-xl: 0 16px 50px rgba(0, 48, 87, 0.12);
    --shadow-2xl: 0 24px 80px rgba(0, 48, 87, 0.15);
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--surface-bright);
    color: var(--on-surface);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary-container);
    color: var(--on-primary-container);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* === Typography === */
.font-display {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
}

.section-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 110%;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 4rem;
}

.text-orange { color: var(--primary-container); }
.text-blue { color: var(--secondary); }
.text-primary { color: var(--primary); }

/* === Container === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--margin-mobile);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--margin-desktop);
    }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    border-radius: var(--rounded-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--primary-container);
    color: var(--on-primary);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--primary);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--on-secondary);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    background: #2d4d73;
    box-shadow: var(--shadow-xl);
}

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

.btn-outline:hover {
    background: var(--secondary);
    color: var(--on-secondary);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
}

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

.btn-white:hover {
    background: var(--surface-bright);
}

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

.btn-xl {
    padding: 1.25rem 3rem;
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === Preloader === */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--surface-bright);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-logo {
    position: relative;
    width: 12rem;
    height: 12rem;
    margin-bottom: 2rem;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-spinner {
    position: absolute;
    inset: 0;
    border: 4px solid rgba(154, 70, 0, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--primary);
    animation: bounce 1.5s ease-in-out infinite;
}

/* === Navigation === */
.nav-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 2rem;
    margin-top: 1.25rem;
    width: 92%;
    max-width: 80rem;
    background: rgba(18, 16, 16, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--rounded-full);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.nav-bar.scrolled {
    background: rgba(15, 13, 13, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    margin-top: 0.5rem;
    padding: 0.75rem 2rem;
    border-color: rgba(244, 121, 32, 0.3);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 2.5rem;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-container);
    border-radius: 2px;
}

.nav-cta {
    display: none;
    background: var(--primary-container);
    color: var(--on-primary-container);
    padding: 0.625rem 1.5rem;
    border-radius: var(--rounded-full);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: scale(1.05);
}

.nav-cta:active {
    transform: scale(0.95);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    padding: 0.5rem;
}

.mobile-menu-btn .material-symbols-outlined {
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .nav-cta { display: inline-flex; }
    .mobile-menu-btn { display: none; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: var(--surface-bright);
    display: flex;
    flex-direction: column;
    padding: calc(1.5rem + env(safe-area-inset-top, 0px)) 1.5rem calc(2rem + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    max-height: 100vh;
    max-height: 100dvh;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--on-surface);
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close .material-symbols-outlined {
    font-size: 2rem;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-menu-links a {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--secondary);
    transition: color 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-menu-links a:hover {
    color: var(--primary);
}

.mobile-order-btn {
    background: var(--primary-container) !important;
    color: white !important;
    padding: 0.875rem 2rem;
    border-radius: var(--rounded-full);
    text-align: center;
    justify-content: center;
    font-size: 1.125rem !important;
    margin-top: 1rem;
    min-height: 48px;
}

/* === Hero Scroll & Canvas Frame Animation System === */
.hero-scroll-container {
    position: relative;
    height: 380vh; /* Scroll track length for smooth frame animation */
    background: #0b0a0a;
}

.hero-sticky-viewport {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    pointer-events: none;
}

.hero-canvas-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(11, 10, 10, 0.3) 0%, rgba(11, 10, 10, 0.75) 65%, rgba(11, 10, 10, 0.95) 100%),
                linear-gradient(to bottom, rgba(11, 10, 10, 0.7) 0%, transparent 20%, transparent 80%, rgba(11, 10, 10, 0.95) 100%);
    pointer-events: none;
}

.hero-text-stage {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    padding: 0 var(--margin-mobile);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text-card {
    position: absolute;
    width: 90%;
    max-width: 820px;
    padding: 3rem 2.5rem;
    background: rgba(18, 16, 16, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--rounded-3xl);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    opacity: 0;
    transform: translateY(35px) scale(0.94);
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: #ffffff;
}

.hero-text-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.45rem 1.25rem;
    border-radius: var(--rounded-full);
    background: rgba(244, 121, 32, 0.2);
    border: 1px solid rgba(244, 121, 32, 0.5);
    color: #f47920;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(244, 121, 32, 0.2);
}

.hero-badge.badge-blue {
    background: rgba(61, 96, 138, 0.28);
    border-color: rgba(171, 207, 254, 0.5);
    color: #abcffe;
    box-shadow: 0 4px 15px rgba(61, 96, 138, 0.3);
}

.hero-badge.badge-orange {
    background: rgba(255, 182, 141, 0.25);
    border-color: rgba(255, 182, 141, 0.6);
    color: #ffb68d;
    box-shadow: 0 4px 15px rgba(255, 182, 141, 0.2);
}

.hero-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6.5vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.hero-phase-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5.5vw, 4.4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, #f47920 0%, #ffb68d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-blue-gradient {
    background: linear-gradient(135deg, #70aaff 0%, #abcffe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-orange-glow {
    color: #f47920;
    text-shadow: 0 0 25px rgba(244, 121, 32, 0.7);
}

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin: 0 auto 1.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 90%;
    max-width: 380px;
    pointer-events: none;
}

.scroll-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.scroll-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f47920, #ffb68d);
    border-radius: 4px;
    transition: width 0.05s linear;
}

.scroll-prompt {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(18, 16, 16, 0.75);
    padding: 0.45rem 1.1rem;
    border-radius: var(--rounded-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.scroll-mouse {
    width: 16px;
    height: 26px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: #f47920;
    border-radius: 2px;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}

.scroll-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

.frame-counter {
    font-family: monospace;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.12em;
}

/* === Category Pills === */
.categories-section {
    padding: 3rem 0;
    background: var(--surface-bright);
}

.category-pills {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
    display: none;
}

.pill {
    flex-shrink: 0;
    padding: 0.625rem 1.5rem;
    border-radius: var(--rounded-full);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid var(--outline-variant);
    color: var(--on-surface);
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pill-active {
    background: var(--primary-container);
    color: white;
    border-color: var(--primary-container);
}

.pill-active:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* === Featured / Menu Cards === */
.featured-section {
    padding: 5rem 0;
    background: var(--surface-bright);
}

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

.menu-card {
    background: var(--surface-container-lowest);
    border-radius: var(--rounded-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--outline-variant);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.menu-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--surface-container-high);
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.menu-card-body {
    padding: 1.5rem;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.menu-card-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: 1.375rem;
    line-height: 1.2;
    color: var(--on-surface);
}

.menu-card-price {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-container);
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-card-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--on-surface-variant);
    margin-bottom: 1.25rem;
}

.add-to-cart-btn {
    font-size: 0.8125rem;
    padding: 0.75rem 1rem;
}

.add-to-cart-btn .material-symbols-outlined {
    font-size: 1.125rem;
}

/* === Dietary Tags === */
.dietary-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem;
    border-radius: var(--rounded-full);
    background: rgba(34, 139, 34, 0.1);
    color: #228b22;
}

.dietary-tag.spicy {
    background: rgba(186, 26, 26, 0.1);
    color: #ba1a1a;
}

.dietary-tag.vegan {
    background: rgba(34, 139, 34, 0.1);
    color: #228b22;
}

/* === Unified 3D Burger Scroll & Floating Callouts System === */
.burger-scroll-container {
    position: relative;
    height: 400vh; /* Smooth scroll runway */
    background: radial-gradient(circle at 50% 45%, #9a7d5e 0%, #6e553c 55%, #463423 100%);
}

.burger-sticky-viewport {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#burger-build-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    pointer-events: none;
}

/* Subtle non-obscuring vignette */
.burger-soft-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at 50% 50%, transparent 50%, rgba(35, 25, 16, 0.45) 85%, rgba(20, 14, 9, 0.8) 100%),
                linear-gradient(to bottom, rgba(20, 14, 9, 0.6) 0%, transparent 15%, transparent 85%, rgba(20, 14, 9, 0.7) 100%);
    pointer-events: none;
}

/* Main Top Header */
.burger-main-header {
    position: absolute;
    top: 6.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 800px;
    pointer-events: none;
}

.burger-main-header .build-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
}

.burger-main-header .build-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Callouts Stage & Synchronized Floating Movement */
.burger-callouts-stage {
    position: absolute;
    inset: 0;
    z-index: 15;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.callout-card {
    position: absolute;
    width: 330px;
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}

.callout-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Position callouts on left & right sides of burger */
.callout-card.layer-1 {
    left: 8%;
    top: 55%;
}

.callout-card.layer-2 {
    right: 8%;
    top: 48%;
}

.callout-card.layer-3 {
    left: 8%;
    top: 40%;
}

.callout-card.layer-4 {
    right: 8%;
    top: 32%;
}

@media (max-width: 991px) {
    .callout-card.layer-1,
    .callout-card.layer-2,
    .callout-card.layer-3,
    .callout-card.layer-4 {
        left: 50%;
        top: 62%;
        transform: translate(-50%, 30px) scale(0.92);
        width: 88%;
        max-width: 380px;
    }
    .callout-card.active {
        transform: translate(-50%, 0) scale(1);
    }
}

.callout-body {
    background: rgba(18, 14, 11, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 5px solid #f47920;
    border-radius: var(--rounded-2xl);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.callout-body .layer-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.callout-body .layer-num {
    font-family: monospace;
    font-weight: 800;
    font-size: 0.85rem;
    color: #ffffff;
    background: #f47920;
    padding: 0.2rem 0.6rem;
    border-radius: var(--rounded-sm);
    box-shadow: 0 2px 10px rgba(244, 121, 32, 0.4);
}

.callout-body h3 {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.callout-body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

/* Floating Bottom Controls */
.burger-floating-footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(18, 14, 11, 0.85);
    padding: 0.6rem 1.5rem;
    border-radius: var(--rounded-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.burger-scroll-prompt {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
}

.animated-arrow {
    font-size: 1.1rem;
    color: #f47920;
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* === Bento Grid === */
.bento-section {
    padding: 5rem 0;
    background: var(--surface-bright);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: auto auto;
        min-height: 700px;
    }
}

.bento-card {
    border-radius: 2.5rem;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    box-shadow: var(--shadow-2xl);
}

.bento-large {
    background: white;
    position: relative;
    box-shadow: var(--shadow-xl);
    min-height: 350px;
}

@media (min-width: 768px) {
    .bento-large {
        grid-column: span 8;
        padding: 3rem;
    }
}

.bento-card-content {
    position: relative;
    z-index: 10;
    max-width: 28rem;
}

.bento-badge {
    display: inline-block;
    background: rgba(244, 121, 32, 0.1);
    color: var(--primary-container);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: var(--rounded-full);
    margin-bottom: 1.5rem;
}

.bento-card-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 110%;
    margin-bottom: 1rem;
}

.bento-card-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--on-surface-variant);
}

.bento-card-img {
    position: absolute;
    right: -10%;
    bottom: -5%;
    width: 55%;
    height: auto;
    object-fit: contain;
    transition: transform 0.7s ease;
}

.bento-large:hover .bento-card-img {
    transform: scale(1.1);
}

.bento-blue {
    background: var(--secondary);
    color: white;
    position: relative;
}

@media (min-width: 768px) {
    .bento-blue {
        grid-column: span 4;
    }
}

.bento-card-title-sm {
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 120%;
    margin-bottom: 0.75rem;
}

.bento-card-desc-sm {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

.bento-bottom-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: var(--rounded-lg);
    margin-top: 1.5rem;
    opacity: 0.9;
}

.bento-veg {
    background: white;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(222, 192, 177, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

@media (min-width: 768px) {
    .bento-veg {
        grid-column: span 4;
    }
}

.bento-icon {
    font-size: 3rem;
    color: var(--primary-container);
}

.bento-legacy {
    background: var(--primary-container);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.bento-legacy .bento-card-title-sm {
    transition: transform 0.3s ease;
}

.bento-legacy:hover .bento-card-title-sm {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .bento-legacy {
        grid-column: span 4;
    }
}

.bento-legacy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bento-legacy .bento-icon {
    color: white;
}

.bento-badge-outline {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.25rem 0.75rem;
    border-radius: var(--rounded-full);
}

.bento-shake {
    background: white;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(222, 192, 177, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

@media (min-width: 768px) {
    .bento-shake {
        grid-column: span 4;
    }
}

.bento-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    transition: transform 0.5s ease;
}

.bento-shake:hover .bento-bg-img {
    transform: scale(1.1);
}

.bento-shake-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

/* === Pizza Section === */
.pizza-section {
    padding: 5rem 0;
    overflow: hidden;
}

.pizza-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .pizza-content {
        flex-direction: row;
        gap: 4rem;
    }
}

.pizza-text {
    flex: 1;
}

.pizza-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 7.5rem);
    line-height: 100%;
    margin-bottom: 1.5rem;
}

.pizza-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--on-surface-variant);
    margin-bottom: 2rem;
    max-width: 32rem;
}

.pizza-visual {
    flex: 1;
    position: relative;
}

.pizza-glow {
    position: absolute;
    inset: -5rem;
    background: rgba(61, 96, 138, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.pizza-circle {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 20px solid rgba(61, 96, 138, 0.1);
    overflow: hidden;
}

.pizza-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-2xl);
    transition: transform 2s ease-in-out;
}

.pizza-circle:hover img {
    transform: rotate(45deg);
}

.pizza-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: rgba(61, 96, 138, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
}

.pizza-circle:hover .pizza-overlay {
    opacity: 1;
}

.pizza-overlay span {
    color: white;
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

/* === Highlights Section === */
.highlights-section {
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.highlight-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .highlight-row {
        flex-direction: row;
        gap: 5rem;
    }
    .highlight-row-reverse {
        flex-direction: row-reverse;
    }
}

.highlight-img-wrapper {
    flex: 1;
    position: relative;
    height: 400px;
}

@media (min-width: 768px) {
    .highlight-img-wrapper {
        height: 500px;
    }
}

.highlight-img-bg {
    position: absolute;
    inset: 0;
    background: rgba(154, 70, 0, 0.05);
    border-radius: 3.75rem;
    transform: rotate(-3deg);
}

.highlight-img-bg-orange {
    background: rgba(244, 121, 32, 0.05);
    transform: rotate(3deg);
}

.highlight-img-wrapper img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3.75rem;
    box-shadow: var(--shadow-2xl);
    transition: transform 0.5s ease;
}

.highlight-img-wrapper:hover img {
    transform: scale(1.05);
}

.highlight-text {
    flex: 1;
}

.highlight-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 115%;
    margin-bottom: 1.5rem;
}

.highlight-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--on-surface-variant);
    margin-bottom: 2rem;
}

.text-right {
    text-align: right;
}

/* === Shopfront Scroll & Frame Animation System === */
.shopfront-scroll-container {
    position: relative;
    height: 350vh;
    background: #0d1520;
    color: white;
}

.shopfront-sticky-viewport {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem var(--margin-mobile);
}

@media (min-width: 768px) {
    .shopfront-sticky-viewport {
        padding: 3rem 4rem;
    }
}

#shopfront-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    pointer-events: none;
}

.shopfront-canvas-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(13, 21, 32, 0.4) 0%, rgba(13, 21, 32, 0.75) 60%, rgba(8, 12, 18, 0.95) 100%),
                linear-gradient(to bottom, rgba(13, 21, 32, 0.85) 0%, transparent 25%, transparent 75%, rgba(8, 12, 18, 0.95) 100%);
    pointer-events: none;
}

.shopfront-stage {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    pointer-events: none;
}

.shopfront-header-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    pointer-events: auto;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .shopfront-header-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.shopfront-title-box {
    max-width: 36rem;
}

.shopfront-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 105%;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.shopfront-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
}

.shopfront-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.75rem 2rem;
    border-radius: var(--rounded-2xl);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    min-width: 290px;
}

.shopfront-card-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #ffb68d;
}

.shopfront-card-address {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.shopfront-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    pointer-events: auto;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .shopfront-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

.shopfront-gallery-card {
    position: relative;
    background: rgba(18, 25, 36, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--rounded-xl);
    padding: 1.25rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
}

.shopfront-gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-container);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shopfront-gallery-card.active {
    background: rgba(244, 121, 32, 0.22);
    border-color: rgba(244, 121, 32, 0.65);
    box-shadow: 0 10px 30px rgba(244, 121, 32, 0.3);
    transform: translateY(-4px);
}

.shopfront-gallery-card.active::before {
    opacity: 1;
}

.shopfront-gallery-card h3 {
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shopfront-gallery-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.shopfront-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 10;
    pointer-events: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.shopfront-progress-track {
    flex: 1;
    max-width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 1.5rem;
}

.shopfront-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f47920, #ffb68d);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.shopfront-frame-badge {
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #ffb68d;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.35rem 0.85rem;
    border-radius: var(--rounded-full);
    border: 1px solid rgba(255, 182, 141, 0.3);
}

/* === CTA Section === */
.cta-section {
    padding: 8rem 0;
    background: var(--primary-container);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-watermark {
    position: absolute;
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: 30vw;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-logo {
    width: 12rem;
    height: auto;
    margin: 0 auto 3rem;
    animation: pulse 2s ease-in-out infinite;
}

.cta-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 7.5rem);
    line-height: 110%;
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* === Footer === */
.site-footer {
    background: var(--surface-container-lowest);
    border-top: 1px solid var(--outline-variant);
    padding: 2rem 0;
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--margin-mobile);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 var(--margin-desktop);
    }
}

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

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--on-surface);
    opacity: 0.6;
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links a {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--on-surface-variant);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(154, 70, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary);
    color: white;
}

.social-btn .material-symbols-outlined {
    font-size: 1.25rem;
}

/* === Custom Cursor === */
.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--primary-container);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease;
    display: none;
}

@media (min-width: 768px) {
    .custom-cursor {
        display: block;
    }
}

/* === Animations === */
@keyframes reveal {
    from { transform: translateY(80px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cinematic-reveal {
    animation: reveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

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

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

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

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Menu Page Specific === */
.page-header {
    padding-top: 10rem;
    padding-bottom: 3rem;
    text-align: center;
}

.page-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 110%;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--on-surface-variant);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.menu-section-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--on-surface);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-container);
    display: inline-block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* === Cart / Selection Floating Bar === */
.floating-cart {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 40;
    background: var(--inverse-surface);
    color: var(--inverse-on-surface);
    padding: 1rem 2rem;
    border-radius: var(--rounded-full);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-2xl);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cart.visible {
    transform: translateX(-50%) translateY(0);
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-icon {
    width: 2rem;
    height: 2rem;
    background: var(--primary-container);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon .material-symbols-outlined {
    font-size: 1rem;
    color: white;
}

.cart-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.7;
}

.cart-total {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
}

.cart-order-btn {
    background: var(--primary-container);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: var(--rounded-full);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cart-order-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
}

/* === Build Your Burger Page === */
.builder-container {
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.builder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .builder-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.builder-preview {
    background: var(--surface-container-lowest);
    border-radius: var(--rounded-2xl);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 8rem;
}

.builder-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.option-group-title {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-container);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.option-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.option-chip {
    padding: 0.75rem 1.25rem;
    border-radius: var(--rounded-full);
    border: 2px solid var(--outline-variant);
    background: var(--surface-container-lowest);
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.option-chip.selected {
    background: var(--primary-container);
    border-color: var(--primary-container);
    color: white;
}

.option-chip .material-symbols-outlined {
    font-size: 1rem;
}

/* === Locations Page === */
.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--surface-container-high);
    border-radius: var(--rounded-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--rounded-2xl);
}

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

.store-info-card {
    background: var(--surface-container-lowest);
    border-radius: var(--rounded-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--outline-variant);
}

.store-info-card h3 {
    font-family: 'Anybody', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-container);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.store-info-card p {
    color: var(--on-surface-variant);
    line-height: 1.8;
}

/* === Experience Page === */
.experience-hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, #001c37 0%, #1a3a5c 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.experience-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(244,121,32,0.1)"/></svg>') repeat;
    background-size: 50px;
    opacity: 0.5;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--primary-container);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--on-surface-variant);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.testimonial-section {
    padding: 5rem 0;
    background: var(--surface-container);
}

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

.testimonial-card {
    background: var(--surface-container-lowest);
    border-radius: var(--rounded-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.testimonial-stars {
    color: var(--primary-container);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--on-surface);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--on-surface-variant);
}

/* === Page Transition === */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--primary-container);
    z-index: 200;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Scroll to Top === */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--primary-container);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
    z-index: 30;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: var(--primary);
}

/* === Responsive Utilities & Mobile Optimization === */
@media (max-width: 991px) {
    .bento-shake {
        grid-column: span 12;
    }
}

@media (max-width: 767px) {
    .order-img-first {
        order: -1;
    }
    
    .text-right {
        text-align: left;
    }
    
    .hero-section {
        flex-direction: column;
    }

    /* Navigation Mobile */
    .nav-bar {
        width: 94%;
        padding: 0.65rem 1.25rem;
        margin-top: 0.75rem;
    }

    .nav-title {
        font-size: 1.25rem;
    }

    .nav-logo {
        height: 2.1rem;
    }

    /* Page Headers */
    .page-header,
    .experience-hero,
    .builder-container {
        padding-top: 6.5rem;
        padding-bottom: 3rem;
    }

    /* Burger Builder Mobile Optimization */
    .builder-preview {
        position: relative;
        top: 0;
        padding: 1.5rem 1.25rem;
        min-height: auto;
    }

    .builder-canvas-box {
        height: 260px !important;
    }

    /* Bento Grid Mobile */
    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .bento-large,
    .bento-blue,
    .bento-veg,
    .bento-legacy,
    .bento-shake {
        grid-column: span 1 / span 1 !important;
        width: 100%;
    }

    .bento-card-img {
        height: 220px;
    }

    .highlight-row {
        gap: 1.5rem;
    }

    .highlight-row .highlight-img {
        height: 250px;
    }

    /* Menu Grid Mobile */
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.25rem;
    }

    /* Floating Cart Mobile */
    .floating-cart {
        width: 92%;
        padding: 0.75rem 1.25rem;
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        gap: 0.85rem;
        justify-content: space-between;
    }

    .cart-label {
        display: none;
    }

    .cart-total {
        font-size: 1.1rem;
    }

    /* Maps & Footers */
    .map-placeholder {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .nav-bar {
        width: 95%;
        padding: 0.55rem 1rem;
        margin-top: 0.5rem;
    }

    .nav-brand {
        gap: 0.5rem;
    }

    .nav-title {
        font-size: 1.1rem;
    }

    /* Hero Text Cards Mobile Scaling */
    .hero-text-card {
        padding: 1.5rem 1.15rem;
        width: 95%;
        border-radius: var(--rounded-2xl);
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.9rem;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7.5vw, 2.5rem);
        margin-bottom: 0.85rem;
    }

    .hero-phase-title {
        font-size: clamp(1.5rem, 6.8vw, 2.3rem);
        margin-bottom: 0.85rem;
    }

    .hero-subtitle {
        font-size: 0.925rem;
        line-height: 1.55;
        margin-bottom: 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.65rem;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-scroll-indicator {
        bottom: 1rem;
    }

    .scroll-progress-label {
        font-size: 0.65rem;
    }

    /* Typography & Spacing */
    .section-title {
        font-size: clamp(1.8rem, 6.5vw, 2.8rem);
    }

    .btn-xl {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Option Chips */
    .option-chip {
        padding: 0.6rem 0.95rem;
        font-size: 0.8rem;
    }
}
