@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Mukta:wght@300;400;600;700&display=swap');

/* Performance: font-display already set via Google Fonts API. GPU hints below. */

:root {
    /* Color Palette - Authentic Kanha Olive/Gold */
    --primary: #A19200;
    --primary-light: #FFD700;
    --secondary: #333333;
    --accent: #EF4444;
    --bg-light: #f9f9f9;
    --bg-white: #FFFFFF;
    --text-main: #222222;
    --text-muted: #666666;

    /* Spacing */
    --section-padding: 4rem 1.5rem;
    --container-max-width: 1200px;

    /* Shadow & Radius */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --radius-md: 12px;
    --radius-lg: 30px;

    --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Mukta', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.font-logo {
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Nav System */
nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--container-max-width);
    z-index: 1000;
    padding: 0.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 100px;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(161, 146, 0, 0.12);
    top: 0.8rem;
    color: var(--text-main);
}

nav:not(.scrolled) {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    color: white;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
    left: 0;
}

nav.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-logo img {
    height: 45px;
    transition: var(--transition);
}

nav.scrolled .nav-logo img {
    height: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 15px rgba(161, 146, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(161, 146, 0, 0.4);
    background: #c2af00;
}

.btn-outline {
    background: transparent;
    border: 3px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45)), url('images/homebg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 6rem 1.5rem;
}

.hero-logo {
    width: 280px;
    margin: 0 auto 1.5rem;
    animation: fadeInDown 1.2s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s ease-in-out infinite;
}

@keyframes textShimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Hero Premium Buttons --- */
.hero-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-btns .btn {
    min-width: 180px;
}

.btn-direction {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-direction:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn i,
.btn svg {
    margin-right: 0.7rem;
}

/* --- Social Links (Hero + Footer) --- */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeIn 1.5s ease-out;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(161, 146, 0, 0.4);
    color: white;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.footer-grid h4 {
    margin-top: 0.5rem;
}

.footer-contact-list {
    margin-top: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    color: var(--secondary);
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 5px;
}

/* Plan Section */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* About & Contact Specific Grids */
.about-vision-grid,
.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 4rem;
    /* Clearance for sticky nav */
}

.plan-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
}

.plan-card .img-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.plan-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s var(--transition);
}

.plan-card:hover img {
    transform: scale(1.1);
}

.plan-card .plan-btn-label {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
    z-index: 10;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(161, 146, 0, 0.1);
    text-transform: uppercase;
}

.plan-desc {
    padding: 2.5rem 2rem 2rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
}

/* Gallery Section */
.gallery-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.1s linear;
    width: max-content;
}

.gallery-item {
    flex: 0 0 350px;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Icons */
.service-icon-box {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(161, 146, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-icon-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(circle at 50% 0%, rgba(161, 146, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.service-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(161, 146, 0, 0.12);
}

.service-icon-box:hover::after {
    opacity: 1;
}

.service-icon-box img {
    width: 90px;
    margin: 0 auto 2rem;
    transition: transform 0.4s ease;
}

.service-icon-box:hover img {
    transform: scale(1.1);
}

/* Floating Elements */
.floating-order {
    position: fixed;
    bottom: 3rem !important;
    right: 8rem !important;
    /* Shifted left to make room for back-to-top */
    z-index: 1000;
    background: var(--primary);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 100px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(161, 146, 0, 0.5);
    animation: bounce 4s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* Scroll Reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author::before {
    content: '';
    width: 30px;
    height: 3px;
    background: var(--primary);
}

/* Footer Styles */
footer {
    position: relative;
}

footer h4 {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-partners {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.footer-partner-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-partner-item:hover {
    opacity: 0.9;
}

.footer-partner-item span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.footer-partner-item img {
    height: 22px;
    filter: brightness(0) invert(1);
}

.footer-partners img {
    height: 30px;
    filter: grayscale(1) brightness(0.6) invert(1);
    opacity: 0.5;
    transition: var(--transition);
}

.footer-partners img:hover {
    filter: none;
    opacity: 1;
}

.footer-contact-list {
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.3s ease;
}

.footer-contact-list li:hover {
    color: rgba(255, 255, 255, 0.95);
}

.footer-contact-list i,
.footer-contact-list svg {
    color: var(--primary);
    width: 20px;
    flex-shrink: 0;
}

/* Footer social links glow */
footer .social-icon {
    transition: all 0.3s ease;
}

footer .social-icon:hover {
    box-shadow: 0 0 20px rgba(161, 146, 0, 0.4);
    border-color: var(--primary);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
}

.footer-hours-list {
    list-style: none;
}

.footer-hours-list li {
    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.75);
}

.footer-hours-list li span:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile footer center alignment */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-grid img {
        margin: 0 auto;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    footer .social-links {
        justify-content: center !important;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-partners {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-hours-list li {
        justify-content: space-between;
        text-align: left;
    }

    .underline {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Background Animation */
#bg-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    background: #fbfbfb;
}

#bg-animation-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Food Particles */
.food-particle {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    border-radius: 50%;
    transition: transform 15s linear;
}

.particle-cumin {
    width: 4px;
    height: 8px;
    border-radius: 40%;
    background: #967444;
}

.particle-pepper {
    width: 5px;
    height: 5px;
    background: #332b21;
}

.particle-chili {
    width: 6px;
    height: 10px;
    border-radius: 20%;
    background: #b01b1b;
}

.particle-herb {
    width: 8px;
    height: 4px;
    border-radius: 50%;
    background: #4a6741;
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 55px;
    height: 55px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    border: 1px solid #eee;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-main);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 3px;
}

nav:not(.scrolled) .hamburger span {
    background: white;
}

.hamburger.active span {
    background: var(--secondary) !important;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: var(--secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
}

.mobile-nav-links a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    color: var(--primary);
}

/* Responsive Polish */
@media (max-width: 992px) {
    nav {
        width: 95%;
        padding: 0.6rem 1.2rem;
        top: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .plan-grid,
    .menu-grid,
    .footer-grid,
    .about-vision-grid,
    .contact-grid-container,
    .contact-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .footer-grid h4 {
        margin-top: 2.5rem;
        /* Better spacing for mobile footer headings */
    }

    .about-vision-grid div:nth-child(2) {
        order: -1;
        /* Image on top for Vision section on mobile */
    }

    .menu-sections-nav {
        gap: 0.5rem;
        padding: 1rem;
    }

    .menu-sections-nav a {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .floating-order {
        right: 1rem !important;
        bottom: 1rem !important;
        padding: 0.7rem 1.2rem !important;
        font-size: 0.75rem !important;
        border-radius: 50px !important;
    }

    #back-to-top {
        bottom: 5rem;
        right: 1.2rem;
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .footer-partners {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        justify-content: center;
    }

    .footer-partners>div {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 481px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   SIPO API — Status Strip
   ============================================ */
.status-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    padding: 0.55rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
    transition: background 0.4s ease;
    background: #f0f0f0;
    color: var(--text-main);
}

/* Push page content down when strip is present */
body:has(.status-strip) {
    padding-top: 36px;
}

body:has(.status-strip) nav {
    top: calc(1.5rem + 36px);
}

body:has(.status-strip) nav.scrolled {
    top: calc(0.8rem + 36px);
}

.status-strip.open {
    background: linear-gradient(135deg, #065f46, #047857);
    color: white;
}

.status-strip.closed {
    background: linear-gradient(135deg, #7f1d1d, #991b1b);
    color: white;
}

.status-strip.error {
    background: #fef3c7;
    color: #92400e;
}

.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: #9ca3af;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.countdown-timer {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ============================================
   SIPO API — Modals (Closed + Offer)
   ============================================ */
.sipo-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    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: white;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
}

.sipo-modal-overlay.active .sipo-modal {
    transform: translateY(0) scale(1);
}

.sipo-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.sipo-modal-close:hover {
    color: var(--text-main);
}

.sipo-modal-icon {
    margin-bottom: 1.5rem;
}

.sipo-modal-title {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.sipo-modal-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.sipo-modal-btn {
    padding: 0.9rem 2.5rem;
    font-size: 0.95rem;
}

.sipo-modal-img img {
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

/* ============================================
   SIPO API — Popular Items Section
   ============================================ */
.popular-items .items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.item-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.item-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.item-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s 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: white;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(161, 146, 0, 0.3);
}

.item-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.item-card-body h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.item-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-card-body .price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.15rem;
}

/* Steam effect */
.steam-effect {
    position: absolute;
    top: -15px;
    width: 6px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(4px);
    animation: steam 3s infinite;
    opacity: 0;
}

.steam-1 {
    left: 30%;
    animation-delay: 0s;
}

.steam-2 {
    left: 50%;
    animation-delay: 0.8s;
}

.steam-3 {
    left: 70%;
    animation-delay: 1.6s;
}

@keyframes steam {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }

    30% {
        opacity: 0.4;
    }

    60% {
        opacity: 0.2;
        transform: translateY(-25px) scaleX(1.5);
    }

    100% {
        opacity: 0;
        transform: translateY(-50px) scaleX(2);
    }
}

/* Skeleton loader for items */
.skeleton-card .item-card-img,
.skeleton-card .item-card-body h3,
.skeleton-card .item-card-body p {
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================
   SIPO API — Footer Hours List
   ============================================ */
.footer-hours-list {
    color: #D1D5DB;
    font-size: 0.95rem;
    padding: 0;
    margin: 0;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-hours-list li.today {
    color: var(--primary-light);
    font-weight: 700;
}

.footer-hours-list .day {
    font-weight: 600;
    min-width: 90px;
}

.footer-hours-list .closed-day {
    color: #f87171;
}

/* ============================================
   SIPO API — Google Rating Badge
   ============================================ */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    color: #D1D5DB;
    transition: var(--transition);
    text-decoration: none;
    flex-wrap: wrap;
}

.google-rating-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.rating-stars {
    color: #FFD700;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.rating-num {
    font-weight: 800;
    color: white;
}

.rating-label {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Hero rating badge (lighter style for hero section) */
#hero-rating .google-rating-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

/* ============================================
   SIPO API — Ordering Disabled State
   ============================================ */
body.ordering-disabled [data-order-url],
body.ordering-disabled .floating-order,
body.ordering-disabled .nav-order-btn {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(0.5);
}

/* ============================================
   Responsive — API Components
   ============================================ */
@media (max-width: 768px) {
    .status-strip {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .sipo-modal {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .popular-items .items-grid {
        grid-template-columns: 1fr;
    }

    .google-rating-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .footer-hours-list {
        font-size: 0.85rem;
    }
}

/* ============================================
   Section Padding & Footer Grid
   ============================================ */
.section {
    padding: var(--section-padding);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
    text-align: left;
}

/* ============================================
   Hero Variants — About & Contact
   ============================================ */
.hero-about {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../../assets/images/hero/about.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-contact {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../../assets/images/hero/contact.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* ============================================
   About Page — Pillar Cards
   ============================================ */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(161, 146, 0, 0.1);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.pillar-card img {
    width: 60px;
    margin: 0 auto 1rem;
}

/* ============================================
   Contact Page — Cards & Map
   ============================================ */
.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #f0f0f0;
}

.contact-info-item {
    margin-bottom: 2.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.contact-info-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 400px;
}

/* Contact hours list */
#contact-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

#contact-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#contact-hours li.today {
    color: var(--primary);
    font-weight: 700;
}

#contact-hours .day {
    font-weight: 600;
}

#contact-hours .closed-day {
    color: var(--accent, #ef4444);
}

/* ============================================
   Menu Page — Menu Cards
   ============================================ */
.menu-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

.menu-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-card-body h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.4rem;
}

.menu-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.menu-card-footer .price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.15rem;
}

.menu-card-footer .order-link {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.menu-card-footer .order-link:hover {
    transform: translateX(4px);
}

/* ============================================
   Item Card — Footer & Placeholder
   ============================================ */
.item-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.item-card-footer .order-link {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.item-card-footer .order-link:hover {
    transform: translateX(4px);
}

.item-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

/* Menu Tab active (Button variant from app.js) */
.menu-tab {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Mukta', sans-serif;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(161, 146, 0, 0.3);
}

/* ============================================
   Enhanced Mobile Responsiveness
   ============================================ */
@media (max-width: 768px) {
    .contact-grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-about,
    .hero-contact {
        height: 50vh;
        min-height: 320px;
    }

    .hero-about h1,
    .hero-contact h1 {
        font-size: 2.5rem !important;
    }

    .hero-about p,
    .hero-contact p {
        font-size: 1.1rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }

    .footer-grid .social-links {
        justify-content: center;
    }

    .footer-grid .underline {
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-item {
        flex: 0 0 280px;
        height: 220px;
    }

    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-logo {
        width: 200px;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.85rem;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex: 0 0 250px;
        height: 200px;
    }

    .status-strip {
        font-size: 0.7rem;
        padding: 0.4rem 0;
    }

    .google-rating-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}