
/* ===== GLOBAL STYLES ===== */

/* Reset and Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling for entire website */
html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 215, 0, 0.5) rgba(0, 0, 0, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffd700, #ffff00);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ffff00, #ffd700);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    color: white;
}



/* ===== NEW TRANSPARENT NAVIGATION BAR ===== */
.restaurant-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1002;
    padding: 20px 0;
    transition: all 0.3s ease;
    /* Prevent internal vertical scrollbar appearing inside navbar */
    overflow: visible !important;
    scrollbar-width: none; /* Firefox */
}
/* Hide any accidental scrollbar inside header (WebKit) */
.restaurant-header::-webkit-scrollbar { display: none; }

/* Safety: ensure children never force their own scrollbars */
.restaurant-header * { scrollbar-width: none; }
.restaurant-header *::-webkit-scrollbar { display: none; }
/* Enable background image behind navbar when .with-bg is present (uses inline --header-bg-image) */
.restaurant-header.with-bg { position: fixed; overflow: hidden; }
.restaurant-header.with-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--header-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.55) saturate(1.1);
    z-index: 0;
    transform: scale(1.05); /* slight overscan to avoid edges on scroll */
}
.restaurant-header.with-bg > * { position: relative; z-index: 1; }

/* When scrolled state adds dark background, still allow image faintly visible */
.restaurant-header.with-bg.scrolled::before { filter: brightness(0.45) saturate(1); }
.restaurant-header.with-bg.shrink::before { filter: brightness(0.42); }

/* Hidden state: hide on scroll down */
.restaurant-header.hidden {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

/* Scrolled state: solid black with subtle gold accents and room for fire particles */
.restaurant-header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    overflow: hidden; /* keep fire particles inside */
}

/* Shrink state: reduce navbar height on scroll */
.restaurant-header.shrink {
    padding: 8px 0; /* revert original shrink padding (navbar content height stays comfortable) */
}


/* Reduce logo and link padding when navbar shrinks */
.restaurant-header.scrolled .brand-logo {
    width: 220px !important;
    height: 130px !important;
}

.restaurant-header.shrink .brand-logo {
    width: 200px !important; /* revert previous (before extra shrink) */
    height: 110px !important;
}

.restaurant-header.shrink .nav-link {
    padding: 0.5rem 0.75rem; /* revert */
}

/* Background-only shrink effect: visually compress background image without over-shrinking content */
.restaurant-header.with-bg::before { transition: transform 0.4s ease, filter 0.4s ease; }
.restaurant-header.with-bg.shrink::before {
    transform: scale(1.05) scaleY(0.78); /* reduce visual bg height */
    transform-origin: top center;
    filter: brightness(0.4) saturate(1.05);
}

/* ===== TALL BLACK BACKGROUND ON SCROLL UP ===== */
.restaurant-header.bg-tall { background: transparent; overflow: visible; }
.restaurant-header.bg-tall::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px; /* requested height */
    background: rgba(0,0,0,0.9);
    z-index: 0;
    pointer-events: none;
}
/* Ensure inner content sits above tall background */
.restaurant-header.bg-tall > * { position: relative; z-index: 1; }
/* If header had background image variant, hide that image when tall black bg active */
.restaurant-header.with-bg.bg-tall::before { display: none; }



.restaurant-nav {
    width: 100%;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

/* ===== LEFT SIDE - LARGE LOGO ===== */
.restaurant-logo {
    flex: 0 0 auto;
    animation: fadeInRight 4s ease forwards; 
    will-change: transform;
}
@keyframes fadeInRight {
      0%,30%   { opacity: 0; transform: translateX(-50px); }
      33.3% { opacity: 0.7; transform: translateX(-25); }
      100%{ opacity: 1; transform: translateX(0); }
    }

.logo-container {
    display: block;
    text-decoration: none;
    /* transition: all 0.3s ease; */
    display: block;      /* avoid inline gaps */
   animation: floatY 3s ease-in-out infinite;
    will-change: transform;
}
@keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-18px); }
    }

.logo-container:hover {
    transform: scale(1.02);
}

.brand-logo {
    width: 400px !important;
    height: 280px !important;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* ===== CENTER - NAVIGATION LINKS ===== */
.main-navigation {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    transition: all 0.3s ease;
    transform: translateX(-80px);
}

/* Remove any bullets/markers for nav items across all pages */
.main-navigation, .main-navigation li { list-style: none !important; padding-left: 0 !important; margin-left: 0 !important; }
.main-navigation li::marker { content: "" !important; }
.main-navigation li::before, .main-navigation li::after { content: none !important; }

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform-origin: center;
    display: inline-block;
}

.nav-link:hover {
    color: #ffd700;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link.active {
    color: #ffd700;
    font-weight: 600;
    transform: scale(1.3);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 20%;
    width: 0;
    height: 3px;
    background: #ffd700;
    transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;

}

/* ===== SEARCH ENGINE - BETWEEN CONTACT & ORDER ===== */
.search-container {
    position: relative;
    z-index: 1003;
    transform: translateX(-60px);
}

/* ===== RIGHT SIDE - SEARCH & ORDER ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    transform: translateX(-30px);
}

.search-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.search-icon:hover {
    transform: scale(1.1);
    filter: invert(1) sepia(1) saturate(5) hue-rotate(45deg);
}

/* Hide search icon when search box is active */
.search-container.active .search-icon {
    opacity: 0;
}

.search-container:hover .search-input-box {
    opacity: 1;
    visibility: visible;
    width: 180px;
}

.search-input-box {
    position: absolute;
    top:-40%;
    left: 30%;
    transform: translateX(-50%);
    width: 0;
    height: 40px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid #ffd700;
    border-radius: 20px;
    padding: 0 15px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 1001;
    margin-top: 10px;
}

.search-input-box.active {
    width: 180px;
    opacity: 1;
    visibility: visible;
}

.search-input-box::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Navigation slide effects when search is active - Disabled since search opens below */
/* when nav-wrapper has search-active, move main nav */
.nav-wrapper.search-active .main-navigation {
    transform: translateX(-60px);
}

/* when nav-wrapper has search-active, move nav actions */
.nav-wrapper.search-active .nav-actions {
    transform: translateX(20px);
}

/* smooth animation */
.main-navigation, 
.nav-actions {
    transition: transform 0.3s ease;
}


/* Add to Cart Button */
.add-to-cart-btn {
    background: linear-gradient(135deg, #ff6b35, #ff9500);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 150px;
    text-align: center;
}

.add-to-cart-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: left 0.5s ease;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Fixed positioned logo */
.search-engine {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    width: 300px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.search-engine.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.search-field {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 25px;
    font-size: 16px;
    color: #ffffff;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.search-field::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-weight: 300;
}

.search-field:focus {
    color: #ffffff;
}


.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* ===== FOOTER SECTION (4 COLUMN GRID) ===== */
.restaurant-footer {
    background: linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(20,20,20,0.97) 50%, rgba(0,0,0,0.92) 100%);
    color: #fff;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
    min-height: 200px;
    display: block;      /* avoid inline gaps */
    animation: floatY 3s ease-in-out infinite;
    will-change: transform;
}

.footer-logo-img {
    width: 250px;
    height: auto;
    object-fit: contain;
    display: block;
    /* Revert to static positioning for consistent centering across pages */
    position: static;
    top: auto;
    left: auto;
    transform: none;
    z-index: 2;
    box-shadow: none;
    background: transparent;
}
@keyframes floatY {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

.footer-title {
    display: none;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.95rem;
    /* margin-bottom: 1.2rem; */
    margin-top: -80px; /* reduced from 170px */
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
}

.social-link:hover {
    transition: all 1s ease;
    background: #d4bd36ed;
    transform: scale(1.8 );
}

.social-link img {
    width: 18px;
    height: 18px;
}
.social-link:hover img {
    transition: all 1s ease;
    transform: scale(1.3);
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
    position: relative;
    padding-bottom: 0.3rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ffd700, #ff9500, #ffd700, #ff6b35);
    background-size: 200% 100%;
    animation: footerLineShimmer 2.2s linear infinite;
}

@keyframes footerLineShimmer {
    0% { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}

/* ==== FOOTER LOGO LAYOUT FIX (global) ====
     Previous absolute + translate centering caused misplacement on some pages after update.
     Use flex on container and static image positioning for stable alignment. */
.footer-logo {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        min-height: 160px;
        margin-bottom: 1.2rem;
}
.footer-description {
        margin-top: 0; /* reset negative offset */
}
@media (max-width: 600px) {
    .footer-logo { min-height: 120px; }
    .footer-logo-img { width: 200px; }
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.7rem;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.97rem;
    position: relative;
    padding-left: 1rem;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: #ff6b35;
}

.footer-menu a:hover {
    color: #ffd700;
    padding-left: 1.5rem;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contact-label {
    font-size: 0.9rem;
    color: #ff6b35;
    font-weight: 600;
}

.contact-value {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ff6b35;
}

/* ===== Footer Compact Typography (Laptop and Up) ===== */
@media (min-width: 1024px) {
    .footer-description,
    .footer-menu a,
    .contact-value,
    .contact-label,
    .copyright {
        font-size: 12px !important; /* uniform 12px */
        line-height: 1.45;
    }
    .footer-menu a { padding-left: 0.75rem; }
    .footer-menu a:hover { padding-left: 1.25rem; }
}

/* ===== Slim Footer Layout (Laptop & Up) ===== */
@media (min-width: 1024px) {
    /* Remove body text under logo */
    .footer-description { display: none !important; }
    /* Tighten global footer spacing */
    .restaurant-footer { padding-top: 0; }
    .footer-top { padding: 2rem 0 1.4rem; gap: 1.6rem; }
    .footer-section { gap: 0.6rem; }
    .footer-logo { min-height: auto; margin-bottom: 0.4rem; }
    .footer-logo-img { width: 210px; transition: width .3s ease; }
    .footer-logo-img:hover { width: 218px; }
    /* Bring social icons directly below logo */
    .footer-social { justify-content: center; margin-top: 0.2rem; flex-wrap: wrap; }
    .footer-social .social-link { width: 34px; height: 34px; }
    .footer-bottom { padding: 1rem 0; }
    .footer-bottom-content { gap: 0.5rem; }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }
    .footer-bottom-links {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff9500);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}

.btn-secondary {
    background: rgba(255,215,0,0.2);
    color: #ffd700;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 2px solid #ffd700;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-container {
        margin: 0;
        width: 100%;
    }

    .search-box {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
    }
}
/* Contact Bubbles */
.contact-bubbles {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    z-index: 9999 !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: auto;
}

.whatsapp-bubble {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bubblePulse 1.5s infinite;
    transition: box-shadow 0.3s;
}

.whatsapp-bubble:hover {
    box-shadow: 0 8px 32px rgba(208, 246, 222, 0.5);
    background: #0b3f1a;
}

.cart-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    animation: bubblePulse 1.5s ease-in-out infinite;
    background: #ffd700;
    cursor: pointer;
    border: none;
    position: relative;
}

.cart-bubble:hover {
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5);
    background: #ffc400;
}
.bubble-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
@keyframes bubblePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
/* Responsive for mobile */
@media (max-width: 600px) {
    .whatsapp-bubble {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
    }
    .bubble-icon {
        width: 28px;
        height: 28px;
    }
}

/* Improved Mobile Responsive Styles */
@media (max-width: 600px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 0.7rem;
        padding: 0 0.5rem;
    }
    .restaurant-logo {
        margin-bottom: 0.7rem;
    }
    .brand-logo {
        width: 220px !important;
        height: auto !important;
    }
    .main-navigation {
        gap: 0.7rem;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        transform: none;
    }
    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0.7rem;
    }
    .nav-actions {
        gap: 1rem;
        flex-direction: row;
        transform: none;
    }
    .search-container {
        transform: none;
    }
    .search-icon {
        width: 24px;
        height: 24px;
    }
    .search-input-box {
        height: 34px;
        font-size: 0.95rem;
        border-radius: 14px;
        margin-top: 6px;
        padding: 0 10px;
    }
    .order-button {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
        border-radius: 18px;
    }
    .footer-container {
        padding: 0 0.7rem;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0 1.2rem;
    }
    .footer-logo-img {
        width: 210px;
        height: auto;
    }
    .footer-description {
        font-size: 0.92rem;
        margin-top: -40px;
    }
    .footer-section-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    .footer-menu a {
        font-size: 0.92rem;
        padding-left: 0.7rem;
    }
    .footer-bottom {
        padding: 1rem 0;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.7rem;
        text-align: center;
    }
    .footer-bottom-links {
        gap: 0.7rem;
        flex-direction: column;
        align-items: center;
    }
    .copyright {
        font-size: 0.85rem;
    }
    .contact-bubbles {
        right: 10px !important;
        bottom: 10px !important;
        gap: 0.7rem;
    }
    .phone-bubble,
    .whatsapp-bubble {
        width: 44px;
        height: 44px;
    }
    .bubble-icon {
        width: 22px;
        height: 22px;
    }
}

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-container {
        margin: 0;
        width: 100%;
    }

    .search-box {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }


@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
    }
}
/* Contact Bubbles */
.contact-bubbles {
    position: fixed !important;
    bottom: 3rem !important;
    right: 2rem !important;
    z-index: 9999 !important;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    pointer-events: auto;
}
.phone-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    animation: bubblePulse 1.5s ease-in-out infinite;
    background: #fff;
    cursor: pointer;
}
.whatsapp-bubble {
    position: fixed;
    right: 30px;
    bottom: 110px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bubblePulse 1.5s infinite;
    transition: box-shadow 0.3s;
}
.whatsapp-bubble:hover {
    box-shadow: 0 8px 32px rgba(208, 246, 222, 0.5);
    background: #0b3f1a;
}
.bubble-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}
@keyframes bubblePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

/* Cart Modal */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cart-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-modal {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.cart-modal-overlay.active .cart-modal {
    transform: scale(1);
}

.cart-modal h2 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    flex-direction: column;
}

.item-name {
    font-weight: bold;
}

.item-price {
    color: #ffd700;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #ffd700;
    color: #000;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.remove-item-btn {
    background: transparent;
    border: 1px solid #ff6b35;
    color: #ff6b35;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-item-btn:hover {
    background: #ff6b35;
    color: #fff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.place-order-btn,
.close-cart-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
}

.place-order-btn {
    background: #ff6b35;
    color: #fff;
    margin-bottom: 0.5rem;
}

.place-order-btn:hover {
    background: #ff8c66;
}

.close-cart-btn {
    background: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
}

.close-cart-btn:hover {
    background: #ffd700;
    color: #000;
}
/* --- End WhatsApp Bubble Styles --- */
