/* 
   Taste of Tandoor - Design System
   Color Palette: Warm Oranges, Deep Terracotta, Earthy Wood
*/

html {
    scroll-behavior: smooth;
}

:root {
    --primary: hsl(25, 100%, 50%);
    --primary-dark: hsl(25, 100%, 40%);
    --secondary: hsl(25, 30%, 20%);
    --accent: hsl(45, 100%, 50%);
    --text-main: hsl(25, 10%, 20%);
    --text-light: hsl(25, 5%, 45%);
    --bg-light: hsl(30, 15%, 98%);
    --white: #ffffff;
    --black: #1a1a1a;
    --overlay: rgba(0, 0, 0, 0.4);

    /* Glassmorphism Tokens */
    --glass: rgba(255, 255, 255, 0.08);
    --glass-heavy: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-bg: blur(12px);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Floating Button */
.floating-order-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(255, 107, 0, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    }
}

.floating-order-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* Glass Utility */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--white);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #251206 0%, #1a1a1a 100%);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* Navbar */
#navbar {
    position: fixed;
    top: var(--strip-height, 0);
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.8rem 0;
}

#navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-container {
    display: flex;
    align-items: center;
}

nav {
    margin-left: auto;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 2.5rem;
}

.nav-logo {
    height: 60px;
    transition: var(--transition);
}

.scrolled .nav-logo {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--white);
    font-size: 0.95rem;
    position: relative;
    padding: 0.4rem 0;
    transition: var(--transition);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.scrolled .mobile-nav-toggle span {
    background-color: var(--text-main);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        padding: 80px 2rem;
        z-index: 1050;
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }

    .nav-links.active a {
        font-size: 1.5rem;
    }

    .mobile-nav-toggle {
        display: flex;
    }
}

.mobile-nav-toggle span {
    background-color: var(--white) !important;
}

.scrolled .mobile-nav-toggle span {
    background-color: var(--text-main) !important;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: url('images/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-text-box {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    animation: fadeInUp 1s ease-out;
}

/* Inner Page Hero */
.inner-page-hero {
    height: 45vh;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)), url('images/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.inner-page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-logo {
    height: 100px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-main);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Features Section */
.section-header {
    margin-bottom: 4rem;
}

.text-center {
    text-align: center;
}

.subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contrast-text h2,
.contrast-text p,
.contrast-text .subtitle {
    color: var(--white) !important;
}

/* Redesign Why Choose Us Cards */
.feature-card.glass {
    padding: 3.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force side-by-side */
    gap: 1.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-card {
    padding: 2.5rem 1.5rem;
    /* Decreased size */
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Testimonials Section */
#testimonials {
    background: radial-gradient(circle at center, #251206 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50px;
    font-size: 20rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    opacity: 0.05;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 100px 0;
    align-items: stretch;
    /* Match heights */
}

.contact-details {
    padding: 4rem;
    color: var(--white) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-details h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--white) !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 5px;
    filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.4));
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--white) !important;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.8;
    font-size: 1.1rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 550px;
    /* Stretchable but has min height */
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
    /* Dark background for visibility */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card p,
.reviewer-name {
    color: var(--white) !important;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
}

.google-tag {
    margin-left: auto;
    color: #4285F4;
    font-size: 1.2rem;
}

.google-tag {
    margin-left: auto;
    color: #4285F4;
    font-size: 1.2rem;
}

/* Gallery Section */
#gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Footer */
footer {
    background: #151515;
    color: var(--white);
    padding: 80px 0 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    opacity: 0.7;
}

/* Global Visibility & Alignment Fixes */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    padding: 100px 0;
}

.chef-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-text.glass {
    padding: 4rem;
    color: var(--white) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2,
.about-text .subtitle {
    color: var(--white) !important;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.menu-section {
    padding: 80px 0;
    color: var(--white);
}

.menu-nav {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.menu-nav a {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.menu-nav a.active,
.menu-nav a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.menu-category h2 {
    color: var(--primary);
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-info h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.item-info p {
    color: rgba(255, 255, 255, 0.7);
}

.item-price {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 800;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.contact-info-item i {
    color: var(--primary);
    margin-top: 5px;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.opening-hours .day {
    font-weight: 600;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.partner-item:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.partner-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Make logos white for dark footer */
}

#dd-logo {
    height: 30px;
}

#sipo-logo {
    height: 35px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
    #hero h1 {
        font-size: 3.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--white) !important;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .hero-text-box {
        padding: 2rem;
        margin: 0 1rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
        padding: 40px 1rem;
        gap: 2rem;
    }

    .contact-details {
        padding: 2.5rem 1.5rem;
        width: 100%;
        text-align: left;
        /* Keep left alignment for readability */
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .contact-item i {
        font-size: 1.5rem;
        min-width: 25px;
        /* Ensure icons don't shrink */
    }

    .chef-image,
    .map-container {
        height: 350px;
        min-height: auto;
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info-item {
        justify-content: center;
    }

    .opening-hours li {
        justify-content: space-around;
    }

    .footer-partners {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-actions .btn-sm {
        display: none;
    }
}

/* ============================================
   SIPO API Components — Premium Styles
   ============================================ */

/* ---- Status Strip ---- */
.status-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 0.55rem 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.4s ease, transform 0.4s ease;
    backdrop-filter: blur(12px);
}

.status-strip.open {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(22, 163, 74, 0.95));
    color: #fff;
}

.status-strip.closed {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(185, 28, 28, 0.95));
    color: #fff;
}

.status-strip.error {
    background: rgba(100, 100, 100, 0.9);
    color: #fff;
}

.status-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.status-strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: statusDotPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes statusDotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.status-strip-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.has-status-strip #navbar {
    top: var(--strip-height, 36px);
}

body.has-status-strip #hero,
body.has-status-strip .inner-page-hero {
    margin-top: var(--strip-height, 36px);
}

/* ---- Countdown Timer ---- */
.countdown-timer {
    font-family: 'Inter', monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ---- SIPO Modal System (Closed + Offer) ---- */
.sipo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sipo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sipo-modal {
    background: var(--secondary, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    color: var(--white, #fff);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sipo-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.sipo-modal-close:hover {
    color: #fff;
}

.sipo-modal-icon {
    margin-bottom: 1.2rem;
}

.sipo-modal-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.sipo-modal-text {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sipo-modal-btn {
    width: 100%;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

/* ---- Google Rating Badge ---- */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}

.google-rating-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.rating-stars {
    color: #facc15;
    font-size: 1rem;
    letter-spacing: 1px;
}

.rating-num {
    font-weight: 700;
    font-size: 0.95rem;
}

.rating-label {
    opacity: 0.7;
    font-size: 0.8rem;
}

#hero-rating {
    margin-top: 1.5rem;
}

#footer-rating {
    margin-top: 1rem;
}

/* ---- Popular Items Section ---- */
.popular-items {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--secondary) 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.item-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
}

.item-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.item-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.item-card:hover .item-card-img img {
    transform: scale(1.08);
}

.item-card-img .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

/* Steam effect */
.steam-effect {
    position: absolute;
    bottom: 0;
    width: 8px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(6px);
    animation: steamRise 3s ease-in-out infinite;
    pointer-events: none;
}

.steam-1 {
    left: 30%;
    animation-delay: 0s;
}

.steam-2 {
    left: 50%;
    animation-delay: 1s;
}

.steam-3 {
    left: 70%;
    animation-delay: 2s;
}

@keyframes steamRise {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-30px) scaleX(1.5);
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) scaleX(2);
    }
}

.item-card-body {
    padding: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.item-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.item-card-body p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-card-footer .price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

/* ---- Dynamic Menu Page (API) ---- */
#api-menu-tabs {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.menu-tab {
    padding: 0.7rem 1.6rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    font-family: inherit;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

#api-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.12);
}

.menu-card-img {
    height: 180px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 1.2rem 1.5rem;
    color: #fff;
}

.menu-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: #fff;
}

.menu-card-body p {
    font-size: 0.82rem;
    opacity: 0.65;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-card-footer .price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.menu-card-footer .order-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.menu-card-footer .order-link:hover {
    opacity: 0.8;
}

#menu-loading {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

#menu-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 0.8rem;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---- Hours Table (Contact / Footer) ---- */
.hours-table {
    margin-top: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.hours-row .day {
    font-weight: 600;
    color: #fff;
}

.hours-row .time {
    text-align: right;
}

.hours-row.today {
    color: var(--primary);
    font-weight: 700;
    position: relative;
}

.hours-row.today .day,
.hours-row.today .time {
    color: var(--primary);
}

.hours-row .closed-day {
    opacity: 0.4;
    font-style: italic;
}

#footer-hours li.today {
    color: var(--primary);
}

#footer-hours li.today .day,
#footer-hours li.today .time {
    color: var(--primary);
}

/* ---- Ordering Disabled Overlay ---- */
body.ordering-disabled .floating-order-btn,
body.ordering-disabled [data-order-url] {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(1);
}

/* ---- Responsive for SIPO Components ---- */
/* ---- Status Strip (Tarka Style) ---- */
.status-strip {
    background: #4a0404;
    color: #fff;
    padding: 0.6rem 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Offset body content when status strip is fixed */
body.has-status-strip {
    padding-top: 0;
    /* We handle this on the navbar and hero instead */
}

/* Push Hero content down slightly more when strip is present */
body.has-status-strip #hero .hero-content {
    margin-top: var(--strip-height, 0);
}

/* Adjust Inner Page margins too */
body.has-status-strip .inner-page-hero {
    padding-top: calc(80px + var(--strip-height, 0px));
}

.status-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.status-strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.countdown-timer {
    color: #ffd700;
    font-weight: 700;
}

/* ---- Offers Section ---- */
.glass-red {
    background: linear-gradient(135deg, #8b0000 0%, #4a0404 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.glass-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/food.png');
    opacity: 0.08;
    pointer-events: none;
}

.offers-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.offers-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.offers-desc {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.offer-box {
    background: #e67e22;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 0.8rem;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.offer-sub {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.offer-text {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.offers-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.dietary {
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .offers-title {
        font-size: 2.5rem;
    }

    .offer-box {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }

    .glass-red {
        padding: 3rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text.glass {
        padding: 2.5rem 1.5rem;
    }

    .chef-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .status-strip {
        font-size: 0.75rem;
        padding: 0.4rem 0;
    }

    .status-strip-inner {
        gap: 0.4rem;
    }

    .items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    #api-menu-grid {
        grid-template-columns: 1fr;
    }

    #api-menu-tabs {
        gap: 0.5rem;
    }

    .menu-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .sipo-modal {
        width: 92%;
        padding: 2rem 1.5rem;
    }

    .google-rating-badge {
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 992px) {
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- CTC (Click-to-Call) Button ---- */
.btn-ctc {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-ctc:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.2);
}

.btn-ctc i {
    font-size: 0.85rem;
    animation: ctcPulse 2s ease-in-out infinite;
}

@keyframes ctcPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* ---- Hero Secondary Buttons Row ---- */
.hero-btns-secondary {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-sm:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Page Load Animation ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* ---- Inner Page Hero CTC ---- */
.inner-page-hero .hero-btns-secondary {
    margin-top: 1.5rem;
}

/* ---- Responsive Polish — Mobile ---- */
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .hero-btns-secondary {
        flex-direction: column;
        align-items: center;
    }

    .btn-ctc,
    .btn-outline-sm {
        width: 100%;
        justify-content: center;
    }

    .floating-order-btn {
        bottom: 20px;
        right: 16px;
        font-size: 0.85rem;
        padding: 0.75rem 1.4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Desktop Polish ---- */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .items-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    #api-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}