/* ============================================
   LA MIA PIZZA — Design System & Core Styles
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Montserrat:wght@300;400;500;600;700&family=Dancing+Script:wght@400;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
    /* Brand Colors */
    --red: #d31e26;
    --red-dark: #a8171d;
    --red-light: #e84950;
    --dark-blue: #003249;
    --cream: #f0f1ec;
    --cream-warm: #faf6ee;
    --green: #2e6001;
    --gold: #d4a853;
    --charcoal: #1a1a1a;
    --dark-bg: #0d0d0d;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --font-accent: 'Dancing Script', cursive;
    --font-logo: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(211, 30, 38, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--cream);
    background: var(--dark-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ---- Utility Classes ---- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header .subtitle {
    font-family: var(--font-accent);
    color: var(--red);
    font-size: 1.3rem;
    display: block;
    margin-bottom: var(--space-xs);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--cream);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.section-header p {
    color: rgba(240, 241, 236, 0.7);
    max-width: 600px;
    margin: var(--space-md) auto 0;
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(211, 30, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(211, 30, 38, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(240, 241, 236, 0.4);
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-3px);
}

.text-red {
    color: var(--red);
}

.text-gold {
    color: var(--gold);
}

.text-accent {
    font-family: var(--font-accent);
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-sm);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.nav-logo img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-full);
    border: 2px solid rgba(211, 30, 38, 0.5);
    transition: var(--transition-base);
}

.nav-logo img:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-glow);
}

.nav-logo span {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.5px;
    font-style: italic;
}

/* Theme Toggle */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition-base);
    color: var(--cream);
    z-index: 1001;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(20deg);
}

/* Light Theme */
body.light-theme {
    --dark-bg: #f5f5f0;
    --charcoal: #eae8e3;
    --cream: #1a1a1a;
    color: #1a1a1a;
}

/* SVG Icon Utility */
.svg-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svg-icon-lg {
    width: 2.8rem;
    height: 2.8rem;
}

.svg-icon-md {
    width: 1.5rem;
    height: 1.5rem;
}

.svg-icon-filled {
    fill: currentColor;
    stroke: currentColor;
}

/* ---- Light Theme Overrides ---- */
body.light-theme .navbar.scrolled {
    background: rgba(245, 245, 240, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

body.light-theme .nav-logo span {
    color: #1a1a1a;
}

body.light-theme .nav-links a {
    color: rgba(26, 26, 26, 0.7);
}

body.light-theme .nav-links a:hover,
body.light-theme .nav-links a.active {
    color: var(--red);
}

body.light-theme .hamburger span {
    background: #1a1a1a;
}

body.light-theme .theme-toggle {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

/* Section Headers */
body.light-theme .section-header h2,
body.light-theme .about-text h2,
body.light-theme .story-text h2 {
    color: #1a1a1a;
}

body.light-theme .section-header p {
    color: rgba(26, 26, 26, 0.6);
}

body.light-theme .section-header .subtitle {
    color: var(--red);
}

/* Cards & Components */
body.light-theme .item-card,
body.light-theme .menu-card,
body.light-theme .value-card,
body.light-theme .contact-card,
body.light-theme .social-link-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body.light-theme .item-card:hover,
body.light-theme .menu-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .item-card-body h3,
body.light-theme .menu-card-body h3,
body.light-theme .value-card h3,
body.light-theme .contact-card h3 {
    color: #1a1a1a;
}

body.light-theme .item-card-body p,
body.light-theme .menu-card-body .desc,
body.light-theme .value-card p,
body.light-theme .contact-card p,
body.light-theme .story-text p,
body.light-theme .about-text p,
body.light-theme .footer-brand p {
    color: rgba(26, 26, 26, 0.6);
}

body.light-theme .item-card-body .price,
body.light-theme .menu-card-body .price {
    color: var(--red-dark);
}

/* Menu Tabs */
body.light-theme .menu-tab {
    background: #fff;
    color: rgba(26, 26, 26, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .menu-tab:hover,
body.light-theme .menu-tab.active {
    color: #fff;
}

/* Reviews */
body.light-theme .reviews-section {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--dark-bg) 100%);
}

body.light-theme .review-card .review-text {
    color: rgba(26, 26, 26, 0.75);
}

body.light-theme .review-card .reviewer {
    color: #1a1a1a;
}

body.light-theme .review-card .reviewer span {
    color: rgba(26, 26, 26, 0.45);
}

body.light-theme .google-rating {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .google-rating .rating-text {
    color: rgba(26, 26, 26, 0.5);
}

body.light-theme .reviews-dots .dot {
    background: rgba(0, 0, 0, 0.12);
}

/* Features Strip - softer tones in light mode */
body.light-theme .features-strip {
    background: linear-gradient(135deg, #faf6ee 0%, #f0ebe0 100%);
}

body.light-theme .features-strip::before {
    background: none;
}

body.light-theme .feature-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body.light-theme .feature-card:hover {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

body.light-theme .features-strip .feature-card h3 {
    color: var(--charcoal);
}

body.light-theme .features-strip .feature-card p {
    color: rgba(26, 26, 26, 0.6);
}

body.light-theme .feature-card .icon-container {
    color: var(--red);
}

/* Hero text - keep white on dark overlay */
body.light-theme .hero-content h1,
body.light-theme .hero-content .tagline,
body.light-theme .page-hero h1 {
    color: #f0f1ec;
}

body.light-theme .hero-content .accent-text {
    color: var(--gold);
}

body.light-theme .page-hero .breadcrumb {
    color: rgba(240, 241, 236, 0.6);
}

/* Marquee */
body.light-theme .marquee-strip {
    background: #e8e6e1;
}

body.light-theme .marquee-content span {
    color: rgba(26, 26, 26, 0.2);
}

/* Footer */
body.light-theme .footer {
    background: #f5f3ef;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-theme .footer-brand .footer-logo span,
body.light-theme .footer-col h4 {
    color: #1a1a1a;
}

body.light-theme .footer-col ul li a,
body.light-theme .footer-contact li {
    color: rgba(26, 26, 26, 0.55);
}

body.light-theme .footer-bottom {
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .footer-bottom p {
    color: rgba(26, 26, 26, 0.4);
}

body.light-theme .partner-logos img {
    filter: grayscale(1) brightness(0.4);
}

body.light-theme .partner-logos img:hover,
body.light-theme .partner-logos a:hover img {
    opacity: 1;
    filter: none;
}

body.light-theme .social-links a {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
}

/* Contact Socials */
body.light-theme .contact-socials h3,
body.light-theme .social-link-card .info h4 {
    color: #1a1a1a;
}

body.light-theme .social-link-card .info p {
    color: rgba(26, 26, 26, 0.5);
}

/* Forms */
body.light-theme .contact-form input,
body.light-theme .contact-form textarea {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1a1a1a;
}

body.light-theme .contact-form input::placeholder,
body.light-theme .contact-form textarea::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

/* About page */
body.light-theme .about-text .accent,
body.light-theme .story-text .accent {
    color: var(--red);
}

/* CTA Banner - keep white text on red bg */
body.light-theme .cta-banner h2,
body.light-theme .cta-banner p {
    color: #f0f1ec;
}

/* Floating button text */
body.light-theme .floating-order {
    color: #f0f1ec;
}

/* Scroll top */
body.light-theme .scroll-top {
    color: #f0f1ec;
}

/* Feature icon containers */
body.light-theme .feature-card .icon-container,
body.light-theme .value-card .icon-container {
    color: var(--red);
}

body.light-theme .contact-card .icon-container {
    color: var(--red);
}

/* Nav links panel on mobile */
body.light-theme .nav-links {
    background: rgba(245, 245, 240, 0.98);
}

@media (max-width: 768px) {
    body.light-theme .nav-links {
        background: rgba(245, 245, 240, 0.99);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(240, 241, 236, 0.8);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-order-btn {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--cream) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(211, 30, 38, 0.4);
}

.nav-order-btn::after {
    display: none !important;
}

.nav-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(211, 30, 38, 0.6);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition-base);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(13, 13, 13, 0.7) 0%,
            rgba(13, 13, 13, 0.4) 40%,
            rgba(13, 13, 13, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    padding: var(--space-md);
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-content .logo-hero {
    width: 200px;
    height: auto;
    border-radius: 0;
    border: none;
    margin: 0 auto var(--space-md);
    filter: drop-shadow(0 0 30px rgba(211, 30, 38, 0.4)) drop-shadow(0 0 60px rgba(211, 30, 38, 0.15));
    animation: logoEntrance 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .accent-text {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: var(--space-xs);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: var(--cream);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    letter-spacing: 3px;
}

.hero-content h1 .highlight {
    color: var(--red);
    position: relative;
}

.hero-content .tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(240, 241, 236, 0.8);
    margin-bottom: var(--space-lg);
    font-weight: 300;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Pizza slice animation container in hero */
.pizza-float {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
}

/* ---- FEATURES STRIP ---- */
.features-strip {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    padding: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
}

.features-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    text-align: center;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
    color: var(--cream);
}

.feature-card p {
    color: rgba(240, 241, 236, 0.8);
    font-size: 0.95rem;
}

/* ---- ABOUT PREVIEW ---- */
.about-preview {
    background: var(--charcoal);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(211, 30, 38, 0.3);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: var(--space-sm);
}

.about-text .accent {
    font-family: var(--font-accent);
    color: var(--red);
    font-size: 1.3rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.about-text p {
    color: rgba(240, 241, 236, 0.75);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

.about-text .btn {
    margin-top: var(--space-sm);
}

/* ---- POPULAR ITEMS ---- */
.popular-items {
    background: var(--dark-bg);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.item-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-base);
    position: relative;
}

.item-card:hover {
    transform: translateY(-8px);
    border-color: rgba(211, 30, 38, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(211, 30, 38, 0.1);
}

.item-card-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.item-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.item-card:hover .item-card-img img {
    transform: scale(1.1);
}

.item-card-img .badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--red);
    color: var(--cream);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-card-body {
    padding: var(--space-md);
}

.item-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--cream);
}

.item-card-body p {
    color: rgba(240, 241, 236, 0.6);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.item-card-body .price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}

/* ---- REVIEWS ---- */
.reviews-section {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--dark-bg) 100%);
    overflow: hidden;
}

.reviews-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card {
    min-width: 100%;
    padding: var(--space-lg);
    text-align: center;
}

.review-card .stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 4px;
}

.review-card .review-text {
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(240, 241, 236, 0.85);
    margin-bottom: var(--space-md);
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.review-card .reviewer {
    font-weight: 600;
    color: var(--cream);
    font-size: 1.05rem;
}

.review-card .reviewer span {
    display: block;
    font-weight: 300;
    color: rgba(240, 241, 236, 0.5);
    font-size: 0.85rem;
    margin-top: 4px;
}

.reviews-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: var(--space-md);
}

.reviews-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(240, 241, 236, 0.2);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.reviews-dots .dot.active {
    background: var(--red);
    box-shadow: 0 0 15px rgba(211, 30, 38, 0.5);
    transform: scale(1.2);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.google-rating .g-icon {
    font-size: 1.8rem;
}

.google-rating .rating-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

.google-rating .rating-text {
    color: rgba(240, 241, 236, 0.6);
    font-size: 0.85rem;
}

/* ---- CTA BANNER ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--red-dark), var(--red), var(--red-dark));
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--cream);
    margin-bottom: var(--space-sm);
    position: relative;
}

.cta-banner p {
    color: rgba(240, 241, 236, 0.9);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    position: relative;
}

.cta-banner .btn {
    position: relative;
    background: var(--cream);
    color: var(--red);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--charcoal);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-sm);
}

.footer-brand .footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(211, 30, 38, 0.4);
}

.footer-brand .footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(240, 241, 236, 0.6);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(211, 30, 38, 0.4);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--cream);
    font-family: var(--font-heading);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(240, 241, 236, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--red);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(240, 241, 236, 0.6);
    font-size: 0.9rem;
}

.footer-contact li .icon {
    color: var(--red);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Opening Hours (replaced map) */
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours .day {
    color: rgba(240, 241, 236, 0.6);
    font-weight: 400;
}

.footer-hours .time {
    color: rgba(240, 241, 236, 0.85);
    font-weight: 500;
}

.footer-hours li.today {
    background: rgba(211, 30, 38, 0.06);
    padding: 6px 8px;
    border-radius: 6px;
    margin: 0 -8px;
}

.footer-hours li.today .day {
    color: var(--red);
    font-weight: 600;
}

.footer-hours li.today .time {
    color: var(--cream);
    font-weight: 600;
}

.footer-hours .closed-day {
    color: rgba(240, 241, 236, 0.35);
    font-style: italic;
}

/* Light theme */
body.light-theme .footer-hours li {
    border-bottom-color: rgba(0, 0, 0, 0.04);
}

body.light-theme .footer-hours .day {
    color: rgba(26, 26, 26, 0.6);
}

body.light-theme .footer-hours .time {
    color: rgba(26, 26, 26, 0.85);
}

body.light-theme .footer-hours li.today {
    background: rgba(211, 30, 38, 0.06);
}

body.light-theme .footer-hours li.today .day {
    color: var(--red);
}

body.light-theme .footer-hours li.today .time {
    color: #1a1a1a;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    color: rgba(240, 241, 236, 0.4);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--red);
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.partner-logos a {
    display: flex;
    align-items: center;
    transition: var(--transition-base);
}

.partner-logos img {
    height: 30px;
    opacity: 0.5;
    transition: var(--transition-base);
    filter: grayscale(1) brightness(2);
}

.partner-logos img:hover,
.partner-logos a:hover img {
    opacity: 1;
    filter: none;
}

body.light-theme .partner-logos img {
    filter: grayscale(1) brightness(0.5);
}

body.light-theme .partner-logos img:hover,
body.light-theme .partner-logos a:hover img {
    opacity: 1;
    filter: none;
}

/* ---- PAGE HERO (Inner pages) ---- */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.6));
    z-index: -1;
}

.page-hero .hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.page-hero .breadcrumb {
    margin-top: var(--space-sm);
    color: rgba(240, 241, 236, 0.6);
    font-size: 0.95rem;
}

.page-hero .breadcrumb a {
    color: var(--red);
}

/* ---- MENU PAGE ---- */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.menu-tab {
    padding: 12px 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(240, 241, 236, 0.7);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-body);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--red);
    color: var(--cream);
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(211, 30, 38, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.menu-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-base);
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: rgba(211, 30, 38, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.menu-card-img {
    height: 200px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.1);
}

.menu-card-body {
    padding: var(--space-md);
}

.menu-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.menu-card-body .desc {
    color: rgba(240, 241, 236, 0.6);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.menu-card-body .menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-card-body .price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
}

.menu-card-body .order-link {
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-card-body .order-link:hover {
    text-decoration: underline;
}

/* ---- ABOUT PAGE ---- */
.story-section {
    background: var(--charcoal);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(211, 30, 38, 0.2);
    border-radius: var(--radius-lg);
}

.story-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: var(--space-md);
}

.story-text .accent {
    font-family: var(--font-accent);
    color: var(--red);
    font-size: 1.3rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.story-text p {
    color: rgba(240, 241, 236, 0.75);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

/* Values Cards */
.values-section {
    background: var(--dark-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.value-card {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transition: var(--transition-base);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(211, 30, 38, 0.2);
}

.value-card .icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: rgba(240, 241, 236, 0.65);
    font-size: 0.95rem;
}

/* Gallery */
.gallery-section {
    background: var(--charcoal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-sm);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(211, 30, 38, 0);
    transition: var(--transition-base);
}

.gallery-item:hover::after {
    background: rgba(211, 30, 38, 0.15);
}

/* ---- CONTACT PAGE ---- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-card {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-base);
}

.contact-card:hover {
    border-color: rgba(211, 30, 38, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-card .icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--red);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-card p {
    color: rgba(240, 241, 236, 0.65);
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--red);
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-hours-card {
    text-align: left;
}

.contact-hours-card .footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours-card .footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
    color: rgba(240, 241, 236, 0.6);
}

.contact-hours-card .footer-hours li.today {
    color: var(--cream);
    font-weight: 600;
}

.contact-hours-card .footer-hours li.today .time {
    color: var(--red);
}

.contact-hours-card h3 {
    text-align: center;
}

body.light-theme .contact-hours-card .footer-hours li {
    border-bottom-color: rgba(0, 0, 0, 0.04);
    color: rgba(0, 0, 0, 0.55);
}

body.light-theme .contact-hours-card .footer-hours li.today {
    color: var(--charcoal);
}

body.light-theme .contact-hours-card .footer-hours li.today .time {
    color: var(--red);
}

/* Map Section */
.map-section {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-xl);
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Contact Form */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(211, 30, 38, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(240, 241, 236, 0.4);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-socials h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.contact-socials p {
    color: rgba(240, 241, 236, 0.65);
    margin-bottom: var(--space-md);
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-base);
}

.social-link-card:hover {
    border-color: rgba(211, 30, 38, 0.3);
    transform: translateX(5px);
}

.social-link-card .icon {
    font-size: 2rem;
}

.social-link-card .info h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.social-link-card .info p {
    font-size: 0.85rem;
    color: rgba(240, 241, 236, 0.5);
    margin: 0;
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--cream);
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(211, 30, 38, 0.4);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(211, 30, 38, 0.6);
}

/* ---- FLOATING ORDER BUTTON ---- */
.floating-order {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--cream);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(211, 30, 38, 0.4), 0 0 0 0 rgba(211, 30, 38, 0.3);
    transition: all 0.3s ease;
    animation: floatingPulse 3s ease-in-out infinite;
    opacity: 0;
    visibility: hidden;
}

.floating-order.visible {
    opacity: 1;
    visibility: visible;
}

.floating-order:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(211, 30, 38, 0.6);
    animation: none;
}

.floating-order .order-icon {
    font-size: 1.3rem;
}

@keyframes floatingPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(211, 30, 38, 0.4), 0 0 0 0 rgba(211, 30, 38, 0.3);
    }

    50% {
        box-shadow: 0 8px 30px rgba(211, 30, 38, 0.4), 0 0 0 12px rgba(211, 30, 38, 0);
    }
}

@media (max-width: 768px) {
    .floating-order {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .floating-order span:not(.order-icon) {
        display: none;
    }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid,
    .story-grid,
    .contact-form-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-lg);
        transition: var(--transition-slow);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: var(--space-sm) 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-content .logo-hero {
        width: 140px;
        height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .items-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .status-strip-text {
        font-size: 0.7rem;
    }

    .nav-brand span {
        font-size: 1rem;
    }
}

/* ---- LOADING / PRELOADER ---- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-pizza {
    width: 80px;
    height: 80px;
    animation: spinPizza 1.2s ease-in-out infinite;
}

@keyframes spinPizza {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* ============================================
   STATUS STRIP (above navbar)
   ============================================ */
.status-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.status-strip.open {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.12));
    border-bottom-color: rgba(34, 197, 94, 0.15);
    color: #86efac;
}

.status-strip.closed {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.1));
    border-bottom-color: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

.status-strip.error {
    background: rgba(13, 13, 13, 0.95);
    color: rgba(240, 241, 236, 0.5);
}

.status-strip-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #888;
    flex-shrink: 0;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Push navbar + body down when strip is visible */
body:has(.status-strip) .navbar {
    top: 36px;
}

body:has(.status-strip) .hero,
body:has(.status-strip) .page-hero {
    padding-top: calc(var(--nav-height) + 36px);
}

/* ============================================
   STATUS DOT (navbar badge)
   ============================================ */
.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
    background: #888;
    vertical-align: middle;
    transition: background 0.3s ease;
    position: relative;
}

.status-dot.open {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
    animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.closed {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

/* ============================================
   MODAL SYSTEM
   ============================================ */
.sipo-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sipo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sipo-modal {
    background: linear-gradient(135deg, #1a1a1a, #242424);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.sipo-modal-overlay.active .sipo-modal {
    transform: translateY(0) scale(1);
}

.sipo-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(240, 241, 236, 0.5);
    font-size: 1.6rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.sipo-modal-close:hover {
    color: var(--cream);
}

.sipo-modal-icon {
    margin-bottom: 1.2rem;
}

.sipo-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.sipo-modal-text {
    color: rgba(240, 241, 236, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sipo-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sipo-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211, 30, 38, 0.3);
}

/* ============================================
   ORDERING DISABLED BANNER
   ============================================ */
.ordering-disabled-banner {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1050;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.15));
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
}

body:has(.status-strip):has(.ordering-disabled-banner) .navbar {
    top: 72px;
}

/* ============================================
   ORDERING DISABLED STATE
   ============================================ */
body.ordering-disabled .nav-order-btn,
body.ordering-disabled .floating-order,
body.ordering-disabled .order-link {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
    filter: grayscale(60%);
}

body.ordering-disabled .btn-primary[href*="sipocloudpos"],
body.ordering-disabled a[href*="sipocloudpos"] {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(60%);
}

/* ============================================
   LIGHT THEME — Status & Modal overrides
   ============================================ */
body.light-theme .status-strip {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .status-strip.open {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.03), rgba(34, 197, 94, 0.08));
    border-bottom-color: rgba(34, 197, 94, 0.2);
    color: #15803d;
}

body.light-theme .status-strip.closed {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.03), rgba(239, 68, 68, 0.08));
    border-bottom-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

body.light-theme .status-strip.error {
    background: rgba(255, 255, 255, 0.95);
    color: rgba(26, 26, 26, 0.5);
}

body.light-theme .sipo-modal {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

body.light-theme .sipo-modal-close {
    color: rgba(26, 26, 26, 0.4);
}

body.light-theme .sipo-modal-close:hover {
    color: #1a1a1a;
}

body.light-theme .sipo-modal-title {
    color: #1a1a1a;
}

body.light-theme .sipo-modal-text {
    color: rgba(26, 26, 26, 0.6);
}

body.light-theme .ordering-disabled-banner {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.03), rgba(239, 68, 68, 0.08));
    border-bottom-color: rgba(239, 68, 68, 0.15);
    color: #dc2626;
}

/* ---- GOOGLE RATING BADGE ---- */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.google-rating-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.rating-stars {
    color: #f59e0b;
    letter-spacing: 1px;
}

.rating-num {
    font-weight: 700;
    font-size: 1.1rem;
}

.rating-label {
    color: rgba(240, 241, 236, 0.6);
    font-size: 0.75rem;
}

.footer-rating {
    text-align: center;
    padding: var(--space-sm) 0;
    margin-bottom: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-rating {
    margin-bottom: var(--space-sm);
}

.hero-rating .google-rating-badge {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
}

body.light-theme .google-rating-badge {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--charcoal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.light-theme .google-rating-badge:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.light-theme .rating-label {
    color: rgba(26, 26, 26, 0.5);
}

body.light-theme .footer-rating {
    border-top-color: rgba(0, 0, 0, 0.06);
}

body.light-theme .hero-rating .google-rating-badge {
    background: rgba(0, 0, 0, 0.4);
    color: var(--cream);
    border-color: rgba(255, 255, 255, 0.15);
}

body.light-theme .hero-rating .rating-label {
    color: rgba(240, 241, 236, 0.6);
}

/* ---- LIGHT THEME: Stats Section (about.html) ---- */
body.light-theme .stats-strip {
    background: linear-gradient(135deg, #faf6ee 0%, #f0ebe0 100%);
}

body.light-theme .stat-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

body.light-theme .stat-card h3,
body.light-theme .stat-card .stat-number {
    color: var(--red);
}

body.light-theme .stat-card p {
    color: rgba(26, 26, 26, 0.6);
}

/* ---- LIGHT THEME: Menu card image area ---- */
body.light-theme .menu-card-img {
    background: linear-gradient(135deg, #faf6ee, #f0ebe0) !important;
}

/* ---- MOBILE: Nav & Footer fixes ---- */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0 1rem;
    }

    .nav-brand img {
        width: 40px;
        height: 40px;
    }

    .footer-grid {
        gap: var(--space-md);
        text-align: center;
    }

    .footer-hours li {
        justify-content: center;
        gap: 1rem;
    }

    .footer-bottom {
        gap: var(--space-sm);
        padding: var(--space-sm) 0;
    }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}