html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; */
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 
                 'Helvetica Neue', Arial, sans-serif; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* For italic emphasis */
.italic-text {
    font-style: italic;
    font-weight: 300;
}

/* Navigation Bar */
/* Navigation Bar - 3 Column Layout */
.navbar {
    display: grid;
    /* Left (Auto), Center (1fr), Right (Auto) */
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 20px;
    height: 70px;
    /* Matched to previous height */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    /* Crucial for padding */
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-left {
    display: flex;
    justify-content: flex-start;
    min-width: 60px;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    min-width: 60px;
}

.nav-center {
    position: relative;
    /* Relative for centering */
    display: flex;
    justify-content: center;
    align-items: center;
    left: auto;
    transform: none;
    height: 100%;
}

/* Logo Styles */
.logo {
    height: 50px;
    width: 50px;
    background: linear-gradient(135deg);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    color: #000000;
    font-size: 24px;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(227, 238, 227, 0.6);
}

/* Button Styles */
.nav-btn {
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.nav-btn:hover svg {
    stroke: #cfd1cf;
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(0, 255, 8, 0.6));
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #007504;
    color: #efefef;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    animation: pulse 2s infinite;
}


@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 300px;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 100px 30px 30px;
}

.sidebar-left {
    left: 0;
    transform: translateX(-100%);
}

.sidebar-left.active {
    transform: translateX(0);
}

.sidebar-right {
    right: 0;
    transform: translateX(100%);
}

.sidebar-right.active {
    transform: translateX(0);
}

/* Menu Items */
.menu-item {
    padding: 18px 20px;
    margin: 10px 0;
    color: #fff;
    text-decoration: none;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-size: 18px;
    opacity: 0;
    transform: translateX(-20px);
}

.sidebar-left.active .menu-item {
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-item:nth-child(1) {
    animation-delay: 0.1s;
}

.menu-item:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-item:nth-child(3) {
    animation-delay: 0.3s;
}

.menu-item:nth-child(4) {
    animation-delay: 0.4s;
}

.menu-item:nth-child(5) {
    animation-delay: 0.5s;
}

.menu-item:hover {
    background: rgba(0, 255, 8, 0.1);
    border-left-color: #000000;
    transform: translateX(10px);
    color: #00FF08;
}

/* Sidebar Close Button */
.sidebar-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1001; /* Above other elements */
}

.sidebar-close-btn:hover {
    color: #00FF08;
    background: rgba(0, 255, 8, 0.1);
    transform: rotate(90deg);
}

/* Cart Sidebar Styles Removed */

/* Unavailable Item Styles */
/* Unavailable Item Styles */
.menu-card.unavailable {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
    cursor: not-allowed;
    /* Reverted forced grey backgroud to match user image preference (Filter handles it) */
}

.grayscale-wrapper {
    filter: grayscale(100%);
    width: 100%;
}

.unavailable-link {
    cursor: not-allowed;
}

.unavailable-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85); /* Back to dark overlay */
    color: #ff4d4d; /* Red Text */
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
    z-index: 10;
    border: 1px solid #555;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Search Bar */
/* Search Removed */

/* Mobile Visibility */
.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}

/* Responsive */
/* Mobile styles moved to end of file to fix cascade */

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    /* Reduced height as requested */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
        url('assets/hero.jpg') center/cover no-repeat fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 8, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.highlight {
    color: #00FF08;
    /* Neon Green Accent */
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-cta {
    background-color: #00FF08;
    color: #000;
    border: 2px solid #00FF08;
    box-shadow: 0 0 15px rgba(0, 255, 8, 0.4);
}

.primary-cta:hover {
    background-color: #00cc06;
    border-color: #00cc06;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 255, 8, 0.6);
}

.secondary-cta {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #00FF08;
    color: #00FF08;
    transform: translateY(-3px);
}

.hero-micro-copy {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero h1 .italic {
    font-style: italic;
    color: #00FF08;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    color: #ffffff;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-offer-text {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-micro-copy {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #00FF08;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.cta-button {
    padding: 1rem 3rem;
    background: rgba(106, 105, 105, 0.41);
    /* linear-gradient(135deg, hsla(0, 0%, 96%, 0.899) 0%, #e7e729cf 100%); */
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    box-shadow: 0 4px 15px rgba(74, 145, 226, 0);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(120, 111, 10, 0.6);
}

/* About Section */
.about {
    padding: 6rem 3rem;
    display: flex;
    /* Changed from grid to flex */
    flex-direction: column;
    /* Stacks image and text vertically */
    align-items: center;
    /* Centers items horizontally */
    justify-content: center;
    text-align: center;
    /* Centers the text lines themselves */
    background: #000000;
    width: 100%;
    margin: 0 auto;
}

.about-content {
    max-width: 800px;
    /* Prevents text from stretching too wide */
    margin: 0 auto;
}

.about-content h2 {
    font-size: 3.5rem;
    color: #00FF08;
    margin-bottom: 2rem;
    font-weight: 200;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #050505;
    border: 1px solid #00FF08;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.stat-item:nth-child(1):hover {
    /* transform: rotate(-15deg) translateY(-1px); */
    border-color: #00FF08;
    box-shadow: 0 10px 30px rgba(0, 255, 8, 0.3);
}

.stat-item:nth-child(2):hover {
    /* transform: rotate(15deg) translateY(-10px); */
    border-color: #00FF08;
    box-shadow: 0 10px 30px rgba(0, 255, 8, 0.3);
}

.stat-item:nth-child(3):hover {
    /* transform: rotate(-5deg) translateY(-10px); */
    border-color: #00FF08;
    box-shadow: 0 10px 30px rgba(0, 255, 8, 0.3);
}

.stat-item:nth-child(4):hover {
    /* transform: rotate(-5deg) translateY(-10px); */
    border-color: #00FF08;
    box-shadow: 0 10px 30px rgba(0, 255, 8, 0.3);
}

.stat-item:nth-child(5):hover {
    transform: rotate(-5deg) translateY(-10px);
    border-color: #00FF08;
    box-shadow: 0 10px 30px rgba(0, 255, 8, 0.3);
}

.stat-item:nth-child(6):hover {
    transform: rotate(-5deg) translateY(-10px);
    border-color: #00FF08;
    box-shadow: 0 10px 30px rgba(0, 255, 8, 0.3);
}

.about-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.stat-item h3 {
    font-size: 1.3rem;
    color: #00FF08;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.stat-item p {
    font-size: 0.9rem;
    color: #d0d0d0;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.about-image {
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 8, 0.15);
    border: 3px solid #007504;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Menu Section */
/* .menu {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #001a00 0%, #000000 100%);
}

.menu h2 {
    text-align: center;
    font-size: 3.5rem;
    color: #00FF08;
    margin-bottom: 1rem;
    font-weight: 700;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.menu-item {
    background: rgba(0, 255, 8, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #007504;
    transition: all 0.4s ease;
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-10px);
    border-color: #00FF08;
    box-shadow: 0 15px 40px rgba(0, 255, 8, 0.25);
}

.menu-item-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image {
    transform: scale(1.1);
}

.menu-item-content {
    padding: 2rem;
}

.menu-item h3 {
    color: #00FF08;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.menu-item p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    color: #00FF08;
    font-size: 1.8rem;
    font-weight: 700;
}

.add-btn {
    padding: 0.5rem 1.2rem;
    background: #007504;
    color: #ffffff;
    border: 2px solid #00FF08;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-btn:hover {
    background: #00FF08;
    color: #000000;
} */
/* Menu Section - 3D Cards */
.menu {
    padding: 8rem 3rem 6rem;
    background: linear-gradient(135deg, #000000 0%, #001a00 100%);
    position: relative;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-header h2 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.menu-header .highlight {
    color: #00FF08;
}

.menu-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Buttons */
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 10rem;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid rgba(0, 255, 8, 0.3);
    border-radius: 30px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(0, 255, 8, 0.1);
    border-color: #00FF08;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #00FF08;
    color: #000000;
    border-color: #00FF08;
}

/* 3D Menu Cards Grid */
.menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem 2.5rem;
    max-width: 1400px;
    margin: auto;
    padding: 2rem 0;

}

/* Individual 3D Card */
.menu-card {
    margin-top: 3rem;
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    padding: 0 0 2rem 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

.menu-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(112, 119, 114, 0.686);
}

.menu-card:hover:not(:has(button:hover)) {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(112, 119, 114, 0.686);
}

/* 3D Floating Image Wrapper */
.card-image-wrapper {
    /* position: relative;
    height: 120px;       
    min-height: 120px;   
    margin-top: 60px;    
    display: flex;
    justify-content: center;
    align-items: center; */

    position: relative;
    height: 180px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-food-img {
    /* width: 220px;       
    height: 220px;
    object-fit: contain;
    position: absolute;
    top: -110px;         
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5)); */


    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    top: -80px;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    z-index: 2;
    content-visibility: auto;
    will-change: transform;
}

/* Nutrition Styles */
.nutrition-grid-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.nutrition-item-small {
    background: #1a1a1a;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.nutrition-item-small:hover {
    border-color: #00FF08;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 255, 8, 0.1);
}

.nutrition-value-small {
    color: #00FF08;
    font-weight: bold;
    font-size: 1.1rem;
}

.nutrition-label-small {
    font-size: 0.8rem;
    color: #888;
    margin-top: 4px;
}

.nutrition-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

.menu-card:hover .card-food-img {
    /* transform: translateX(-50%) scale(1.1) rotate(5deg); */
    transform: translateY(-20px) scale(1.08) rotateZ(5deg);
    filter: drop-shadow(0 35px 50px rgba(32, 31, 31, 0.615));
}

.new-badge {
    position: absolute;
    top: -45px;
    right: 40px;
    left: auto;
    margin: 0;
    /* Default background if not set inline */
    background: #109022; 
    color: white;
    padding: 3px 7px;
    border-radius: 4px; /* Simple tag look */
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 20;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: bounce-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), badge-shake 2s ease-in-out 1s infinite;
    border: none;
    clip-path: none;
    width: auto;
    height: auto;
    display: block;
    line-height: normal;
}

@keyframes bounce-in {
    0% { transform: scale(0) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(5deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); }
}

@keyframes badge-shake {
    0%, 50%, 100% { transform: rotate(0deg); }
    5% { transform: rotate(5deg); }
    10% { transform: rotate(-5deg); }
    15% { transform: rotate(5deg); }
    20% { transform: rotate(-5deg); }
    25% { transform: rotate(3deg); }
    30% { transform: rotate(-3deg); }
    35% { transform: rotate(2deg); }
    40% { transform: rotate(-2deg); }
    45% { transform: rotate(1deg); }
}

/* Card Content */
.card-content {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

/* Category Badge Styles */
.filter-btn {
    position: relative; /* Ensure badge position relative to button */
    overflow: visible; /* Allow badge to spill out */
}

.submenu-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Push badge to right */
}

.category-new-badge {
    background: #109022;
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    position: absolute;
    z-index: 10;
    animation: badge-shake 2s ease-in-out infinite; /* Reuse optimized shake */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: normal;
}

.category-new-badge.filter-badge {
    top: -8px;
    right: -5px;
}

.category-new-badge.sidebar-badge {
    position: static; /* Adjust for flex layout in sidebar */
    margin-left: 8px;
    font-size: 0.5rem;
    padding: 2px 4px;
}

.card-header {
    display: block;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-title {

    font-size: 1.4rem;
    color: #000000;
    font-weight: 700;
    margin: 0;
}

.card-rating {
    margin-bottom: 15px;
    margin-left: auto;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 255, 8, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    width: 80px;
}

.star {
    font-size: 1rem;
}

.rating-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
}

.card-description {
    flex-grow: 1;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    /* Reduced from 0.95rem */
    line-height: 1.5;
    /* Tighter line height */
    margin-bottom: 1rem;
    /* Reduced margin */
    min-height: 65px;
    /* Reduced from 80px */
}

/* Card Footer */
.card-footer {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    /* This forces elements to stack vertically */
    align-items: flex-start;
    gap: 1rem;
}

.card-price {
    font-size: 1.8rem;
    /* Reduced from 2rem */
    font-weight: 500;
    color: #228733;
}

.view-details-btn {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.8rem 0;
    background-color: #000000;
    border: 1px solid #00FF08;
    border-radius: 30px;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-card:hover .view-details-btn {
    background-color: #00FF08;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 255, 8, 0.3);
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Reduced gap */
    padding: 0.8rem 1.5rem;
    /* Reduced padding */
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 0.95rem;
    /* Reduced font size */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* .add-to-cart-btn:hover {
    background: #00FF08;
    color: #000000;
    transform: translateX(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 8, 0.3);
} */

.add-to-cart-btn svg {
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover svg {
    transform: translateX(3px);
}

/* Explore More Button */
.explore-more-wrapper {
    text-align: center;
    margin-top: 5rem;
}

.explore-more-btn {
    padding: 1.2rem 3.5rem;
    background: #000000;
    color: #ffffff;
    border: 2px solid #00FF08;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.explore-more-btn:hover {
    background: #00FF08;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 8, 0.3);
}

/* Responsive for Menu Cards */
/* Fix Mobile Card Spacing - Prevent Overlapping */
@media (max-width: 768px) {
    .menu-card:hover {
        transform: translateY(-10px);
        /* Less movement */
    }

    .menu {
        padding: 6rem 1.5rem 4rem;
    }

    .menu-header h2 {
        font-size: 2.5rem;
    }

    .menu-subtitle {
        font-size: 1rem;
    }

    .menu-cards-grid {
        grid-template-columns: 1fr;
        gap: 12rem 0;
        /* Much larger gap */
        padding-top: 8rem;
        /* More top padding */
    }

    .menu-card {
        transition: transform 0.2s ease;
        margin: 0 auto;
        min-height: 380px;
        /* Smaller on mobile */
    }

    .card-food-img {
        width: 200px;
        /* Smaller image on mobile */
        height: 200px;
        top: -60px;
        /* Less overlap */
    }

    .card-image-wrapper {
        height: 130px;
        /* Reduced */
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 0.85rem;
        min-height: 60px;
    }

    .card-price {
        font-size: 1.6rem;
    }

    .add-to-cart-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }

    /* First card extra spacing */
    .menu-card:first-child {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-cards-grid {
        gap: 4rem 0;
        /* Reduced gap */
        padding-top: 1rem;
    }

    .menu-card {
        min-height: 360px;
        /* Even smaller */
    }

    .card-food-img {
        width: 180px;
        /* Smaller for small phones */
        height: 180px;
        top: -55px;
    }

    .card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .add-to-cart-btn {
        justify-content: center;
        width: 100%;
    }

    .filter-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Meal Plans Section */
.meal-plans {
    padding: 6rem 3rem;
    background: #000000;
}

.meal-plans h2 {
    text-align: center;
    font-size: 3.5rem;
    color: #00FF08;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 4rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(0, 255, 8, 0.03);
    border: 2px solid #007504;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.plan-card.featured {
    border-color: #00FF08;
    background: rgba(0, 255, 8, 0.08);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00FF08;
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #00FF08;
    box-shadow: 0 15px 40px rgba(0, 255, 8, 0.2);
}

.plan-card h3 {
    color: #00FF08;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.plan-price {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 2rem;
}

.plan-price span {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 0;
    color: #cccccc;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 255, 8, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    background: #007504;
    color: #ffffff;
    border: 2px solid #00FF08;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: #00FF08;
    color: #000000;
}

/* Contact Section */
.contact {
    padding: 6rem 3rem;
    background: #000c00;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 3.5rem;
    color: #00FF08;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info>p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    color: #00FF08;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0, 255, 8, 0.05);
    border: 2px solid #007504;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    transition: border-color 0.2s ease;
    /* Simplified transition */
    will-change: border-color;
    /* Hint to browser */
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00FF08;
    background: rgba(0, 255, 8, 0.08);
}

.form-textarea {
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    padding: 1.2rem;
    background: #007504;
    color: #ffffff;
    border: 2px solid #00FF08;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    will-change: transform;
}

.submit-btn:hover {
    background: #00FF08;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 8, 0.3);
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 1.5rem;
        background: #000000;
        /* Flat color on mobile */
    }

    .submit-btn:hover {
        transform: none;
        /* Disable transform on mobile */
    }

    .social-links a:hover {
        transform: none;
        /* Disable transform on mobile */
    }
}

/* Footer */
footer {
    background: #000000;
    padding: 3rem;
    border-top: 2px solid #007504;
    will-change: auto;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00FF08;
    margin-bottom: 1.5rem;
}

.footer-content>p {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.logo-img-tail {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-links a {
    color: #00FF08;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: #007504;
    transform: translateY(-1px);
}

.contact-container,
.footer-content {
    transform: translateZ(0);
    /* Force GPU acceleration */
    backface-visibility: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about,
    .contact-container {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .dropdown {
        right: 1.5rem;
    }

    .hero {
        padding: 5rem 1.5rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .about,
    .menu,
    .meal-plans,
    .contact {
        padding: 4rem 1.5rem;
    }

    .about h2,
    .menu h2,
    .meal-plans h2,
    .contact-info h2 {
        font-size: 2.5rem;
    }

    .menu-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* --- Sidebar & Search Active States --- */
#menuSidebar {
    z-index: 1001;
    /* Ensure this is higher than the overlay */
}

/* 1. Slide the Left Menu in */
#menuSidebar.active {
    left: 0 !important;
}

/* 2. Slide the Right Cart in */
#cartSidebar.active {
    right: 0 !important;
}

/* 3. Show the Overlay */
#overlay.active {
    display: block !important;
    opacity: 1 !important;
}

/* 4. Show the Search Bar */
#searchContainer.active {
    top: 0 !important;
    display: flex !important;
}

/* 5. Smooth Transition for Navbar scroll effect */
#navbar {
    transition: top 0.3s ease-in-out;
}

/* Container for the two prices */
.price-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

/* The Discounted (New) Price */
.card-price {
    font-size: 1.4rem;
    font-weight: 500;
    color: #109022;
    /* Your signature green */
}

/* The Strikethrough (Old) Price */
.original-price {
    /* padding-left: 40px; */
    font-size: 1.1rem;
    color: #888;
    /* Dimmed gray */
    text-decoration: line-through;
    /* This adds the strike */
    font-weight: 400;
}

.product-original-price {
    font-size: 1.5rem;
    color: #888;
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 15px;
}

.variant-original-price {
    font-size: 0.95rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 8px;
    font-weight: 400;
}

.variant-price-group {
    display: flex;
    align-items: center;
    margin-left: auto;
    /* Push to right */
}

/* ============================================
   NUTRITION BUTTON & POPUP
   ============================================ */

/* Nutrition Button - Replaces Add to Cart */
.nutrition-btn {
    width: fit-content;
    max-width: 200px;
    display: block;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #00FF08;
    color: #000000;
    border: 2px solid #00FF08;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 50;
    pointer-events: auto !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nutrition-btn:hover {
    cursor: pointer;
    background: #000000;
    color: #00FF08;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 8, 0.3);
}

/* Nutrition Popup Overlay */
.nutrition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
}

.nutrition-overlay.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Nutrition Popup Card */
.nutrition-popup {
    background: #ffffff;
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 255, 8, 0.3);
    animation: popupSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.nutrition-popup h3 {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Close Button */
.close-nutrition {
    position: absolute;
    top: 1rem;
    padding-bottom: 1rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: #f8f9fa00;
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-nutrition:hover {
    background: #00FF08;
    transform: rotate(90deg);
}

.nutrition-info {
    padding-top: 10px;
    align-items: center;
    justify-content: center;
}

/* Nutrition Grid */
.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Individual Nutrition Item */
.nutrition-item {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.nutrition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Nutrition Item Colors */
.nutrition-item.calories {
    border-color: #ff6b6b;
}

.nutrition-item.calories:hover {
    background: rgba(255, 107, 107, 0.1);
}

.nutrition-item.carbs {
    border-color: #4ecdc4;
}

.nutrition-item.carbs:hover {
    background: rgba(78, 205, 196, 0.1);
}

.nutrition-item.protein {
    border-color: #a855f7;
}

.nutrition-item.protein:hover {
    background: rgba(168, 85, 247, 0.1);
}

.nutrition-item.fats {
    border-color: #ffd93d;
}

.nutrition-item.fats:hover {
    background: rgba(255, 217, 61, 0.1);
}

/* Nutrition Icon */
.nutrition-icon {
    width: 60px;
    /* Adjust size as needed */
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nutrition-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Keeps the image from stretching */
}

/* Nutrition Value */
.nutrition-value {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

/* Nutrition Label */
.nutrition-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nutrition-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    font-style: italic;
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nutrition-overlay {
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nutrition-popup {
        /* padding: 2rem 1.5rem;
        width: 95%; */
        width: 90%;
        /* Responsive width */
        max-width: 360px;
        /* Limits size on larger phones/tablets */
        height: auto;
        /* Adapts to content height */
        max-height: 85vh;
        /* Prevents card from going off-screen */
        padding: 30px 20px;
        border-radius: 30px;
        overflow-y: auto;
    }

    .nutrition-popup h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .nutrition-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns instead of 1 or 4 */
        gap: 15px;
        margin-top: 1.5rem;
        /* grid-template-columns: 1fr;
        gap: 1rem; */
    }

    .nutrition-item {
        padding: 1.5rem 1rem;
    }

    .nutrition-icon {
        /* font-size: 2.5rem; */
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }

    .nutrition-value {
        font-size: 1rem;
    }

    .nutrition-btn {
        width: 100%;
        justify-content: center;
    }

    .nutrition-label {
        font-size: 0.8rem;
    }
}

/* IMAGE LIGHTBOX */
/* Lightbox Overlay Background */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 3000;
    /* Higher than navbar */
    cursor: zoom-out;
}

.image-lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

/* The Image inside the Lightbox */
.lightbox-content img {
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    /* REMOVED: border-radius: 50% (This caused the oval shape) */
    /* REMOVED: box-shadow (This caused the solid background glow) */

    /* ADDED: drop-shadow (This follows the transparent shape of the food) */
    filter: drop-shadow(0 0 30px rgba(122, 126, 122, 0.5)) drop-shadow(0 0 60px rgba(76, 78, 76, 0.2));

    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-lightbox.active img {
    transform: scale(1);
}

/* Add a cursor pointer to your menu card images so users know they are clickable */
.card-food-img {
    cursor: zoom-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Offers Modal Styles */
.offers-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.offers-modal.active {
    opacity: 1;
    visibility: visible;
}

.offers-content {
    background: #111;
    width: 90%;
    max-width: 450px;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    position: relative;
    border: 2px solid #00FF08;
    box-shadow: 0 0 50px rgba(0, 255, 8, 0.15);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.offers-modal.active .offers-content {
    transform: scale(1);
}

.offers-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    line-height: 1;
}

.offers-close:hover {
    color: #00FF08;
}

.offers-header {
    text-align: center;
    margin-bottom: 2rem;
}

.offers-header h2 {
    color: #00FF08;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 8, 0.3);
}

.offers-header p {
    color: #aeaeae;
    font-size: 1.1rem;
}

.offer-item {
    background: #222;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 0;
    position: relative;
    border-left: 5px solid #00FF08;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.offer-tag {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #00FF08;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.offer-item h3 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

.offer-item p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Card Tags */
.card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    /* Space between tags and title */
    flex-wrap: wrap;
    justify-content: center;
}

.tag-badge {
    background: rgba(0, 255, 8, 0.1);
    color: #00FF08;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 8, 0.3);
}

.tag-badge:hover {
    background: rgba(0, 255, 8, 0.2);
    border-color: #00FF08;
}

/* Sidebar Submenu */
.submenu-item {
    display: block;
    padding: 10px 0 10px 20px;
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.submenu-item:hover {
    color: #00FF08;
    padding-left: 25px;
    border-left-color: #00FF08;
}

.menu-item-group .menu-item {
    margin-bottom: 5px;
    /* Reduce gap between parent and child */
}

/* Sidebar Submenu */
.sidebar-submenu {
    display: none;
    /* Hidden by default if not .open */
    overflow: hidden;
    transition: all 0.3s ease;
}

.sidebar-submenu.open {
    display: block;
    animation: fadeInSubmenu 0.3s ease;
}

.submenu-item {
    display: block;
    padding: 10px 0 10px 40px;
    /* Indented more */
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.submenu-item:hover {
    color: #00FF08;
    padding-left: 45px;
    border-left-color: #00FF08;
    background: rgba(0, 255, 8, 0.05);
}

.dropdown-toggle {
    transition: transform 0.3s ease;
}

.dropdown-toggle.open {
    transform: rotate(180deg);
}

@keyframes fadeInSubmenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky Product Header */
.sticky-product-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid #00FF08;
    padding: 10px 20px;
    z-index: 2000;
    /* Above navbar (usually 1000) */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 8, 0.2);
    backdrop-filter: blur(10px);
}

.sticky-product-header.visible {
    transform: translateY(0);
}

.sticky-header-content {
    display: flex;
    flex-direction: column;
}

.sticky-header-content h3 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Sticky Product Summary (Mobile Bottom) */
.sticky-product-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid #333;
    padding: 15px 20px;
    z-index: 9999;
    transform: translateY(0);
    /* Always visible */
    transition: transform 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    display: none;
    /* Hidden by default, shown via media query */
}

/* .visible class removed as it is always visible on mobile now */

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-info {
    flex: 1;
    overflow: hidden;
    padding-right: 15px;
}

.sticky-info h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 1rem;
    /* white-space: nowrap; - Removed for wrapping */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
}

.sticky-info p {
    color: #00FF08;
    margin: 0;
    font-size: 0.8rem;
    /* white-space: nowrap; - Removed for wrapping */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    line-height: 1.4;
    /* Improve readability when wrapped */
}

.sticky-price-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-price-action span {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile Display Only */
@media (max-width: 768px) {
    .sticky-product-summary {
        display: block;
        /* Enabled on mobile */
    }

    /* Ensure it sits above footer/other mobile elements if needed */
    /* Ensure it sits above footer/other mobile elements if needed */
    footer {
        padding-bottom: 80px;
        /* Add space so sticky bar doesn't cover footer content at very bottom */
    }

    /* Mobile Spacer */
    .mobile-spacer {
        height: 80px;
        /* Reduced space */
        width: 100%;
        display: block;
    }

    /* Resize Product Image on Mobile */
    /* Using specific selector to override internal styles in product.html */
    /* Resize Product Image on Mobile - No Border */
    .product-page .product-image-container img {
        width: 50%;
        height: auto;
        max-height: 50vh;
        object-fit: contain;
        margin: 0 auto;
        display: block;
        border: none !important;
        box-shadow: none !important;
    }

    .product-image-container {
        display: flex;
        justify-content: center;
        /* margin-bottom: 20px; */
    }

    /* Mobile Text & Tag Resizing */
    .product-title {
        font-size: 1.8rem !important;
        /* Reduced from default */
    }

    .product-price {
        font-size: 1.5rem !important;
        /* Reduced from default */
    }

    .tag-badge {
        font-size: 0.7rem !important;
        /* Smaller text */
        padding: 4px 8px !important;
        /* Smaller text */
    }
}

/* =========================================
   404 ERROR PAGE
   ========================================= */
.error-page-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 2rem;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: #00FF08;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 8, 0.5);
}

.error-title {
    font-size: 2.5rem;
    margin: 1rem 0;
    font-weight: 600;
}

.error-message {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 500px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.home-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #00FF08;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 8, 0.3);
}

.home-btn:hover {
    background: #00cc06;
    transform: translateY(-3px);
}

.mobile-hero-addon {
    display: none;
}

/* Default state for Desktop/Tablet */
.mobile-text {
    display: none;
}

/* Responsive Styles - Mobile Only (< 550px) */
/* Changed from 768px to 550px to restore Desktop view on Tablets */
@media (max-width: 550px) {
    .sidebar {
        width: 100%;
        /* Full width sidebar on small mobile */
    }

    .navbar {
        padding: 0 15px;
    }

    .nav-left,
    .nav-right {
        gap: 10px;
    }

    .product-page {
        padding-bottom: 80px;
    }

    /* Mobile Text Toggle (Softer Pill) */
    .mobile-text {
        display: inline-block;
        background-color: #1eff00cf;
        color: #000000;
        padding: 4px 14px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        text-shadow: none;
    }

    .desktop-text {
        display: none;
    }

    /* Mobile Hero Addon (Below Fold) */
    .mobile-hero-addon {
        display: block;
        background: #0d0d0d;
        padding: 4rem 2rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* REMOVE Subtitle from Addon (User Req) */
    .mobile-hero-addon .hero-subtitle {
        display: none;
    }

    .mobile-hero-addon .hero-micro-copy {
        color: #00FF08;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 600;
    }

    /* Mobile Hero Reordering & Styling */
    .hero {
        min-height: 100vh !important;
        padding: 8rem 1.5rem 4rem !important;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.1) 40%,
                rgba(0, 0, 0, 0.4) 100%),
            url('assets/hero.jpg') center/cover no-repeat scroll !important;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero h1 {
        order: 1;
        font-size: 2.2rem !important;
        margin-top: 1rem;
        margin-bottom: 2.5rem;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }

    .hero-offer-text {
        order: 2;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        order: 3;
        margin-bottom: 0;
    }

    .hero .hero-subtitle,
    .hero .hero-micro-copy {
        display: none !important;
    }

    .primary-cta {
        backdrop-filter: none !important;
        background-color: #ffffff !important;
        color: #000 !important;
        padding: 0.85rem 2rem !important;
    }
}
/* Add-on Indicator */
.addon-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    background: #FFD700; /* Gold/Yellow to stand out */
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 0 0 10px 0; /* Rounded bottom-right corner */
    z-index: 20;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Highlight No Mayo Tag */
.tag-no-mayo {
    font-weight: 800 !important;
    border: 2px solid #FFFFFF !important; /* White border to pop */
    box-shadow: 0 0 8px rgba(14, 165, 233, 0.6); /* Glow using the blue bg color */
    transform: scale(1.05); /* Slightly larger */
    z-index: 5;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(14, 165, 233, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

/* Highlight Indicator (Generic) */
.highlight-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    top: auto;
    background: linear-gradient(45deg, #FF416C, #FF4B2B); /* Sunset Red Gradient */
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 12px 0 0 0; /* Softer, modern curve - Top Left for Bottom Right position */
    z-index: 20;
    box-shadow: 3px -3px 10px rgba(255, 75, 43, 0.4); /* Matching colored glow */
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* =========================================
   MOBILE UX COMBO CUSTOMIZATION
   ========================================= */

.combo-step-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    background: #444; /* Default: Dark Grey (Pending) */
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-number.completed {
    background: #00FF08; /* Completed: Green */
    color: #000;
}

.combo-step-header.completed {
    color: #00FF08; /* Optional: Make text green too */
}

.customization-group {
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.customization-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.combo-options-grid {
    display: flex;
    flex-direction: column;
    gap: 16px; /* Increased from 12px */
}

.combo-option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.combo-option-card:active {
    transform: scale(0.98);
}

.combo-option-card.selected {
    background: rgba(0, 255, 8, 0.05);
    border-color: #00FF08;
    box-shadow: 0 4px 12px rgba(0, 255, 8, 0.15);
}

.card-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.option-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.option-price-tag {
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    gap: 8px;
    align-items: center;
}

.option-price-tag .discounted {
    color: #00FF08;
    font-weight: 600;
}

.option-price-tag .original {
    text-decoration: line-through;
    color: #666;
    font-size: 0.8rem;
}

/* Checkmark indicator */
.selection-indicator {
    width: 24px;
    height: 24px;
    border: 2px solid #555;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.combo-option-card.selected .selection-indicator {
    background: #00FF08;
    border-color: #00FF08;
}

.selection-indicator::after {
    content: '✓';
    color: #000;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.combo-option-card.selected .selection-indicator::after {
    opacity: 1;
    transform: scale(1);
}

/* Nested Drawer */
.addon-drawer {
    margin-top: 0;
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.combo-option-card.selected .addon-drawer {
    margin-top: 12px;
    padding-top: 12px;
    max-height: 500px; /* Arbitrary large height for expansion */
    opacity: 1;
}

.drawer-header {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
.drawer-name {
    font-size: 0.85rem; /* Slightly reduced from 0.9rem */
    color: #ccc;
    font-weight: 500;
}
    margin-bottom: 8px;
    font-weight: 600;
}

.drawer-option {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-option:last-child {
    border-bottom: none;
}

/* Specific targeting for Add-on checkboxes */
/* Specific targeting for Add-on checkboxes */
input[type="checkbox"].drawer-checkbox {
    width: 18px; /* Reduced from 20px */
    height: 18px; /* Reduced from 20px */
    margin-right: 20px; /* Keep gap */
    accent-color: #00FF08;
    cursor: pointer;
}

/* Inline Radio Group for Dips */
.drawer-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.drawer-option-radio {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.drawer-option-radio:hover {
    background: rgba(255, 255, 255, 0.1);
}

.drawer-option-radio input[type="radio"] {
    margin-right: 6px;
    accent-color: #00FF08;
}

.drawer-option-radio:has(input:checked) {
    background: rgba(0, 255, 8, 0.1);
    border-color: #00FF08;
    color: #fff;
}

.radio-label {
    font-size: 0.8rem; /* Slightly reduced from 0.85rem */
    color: #ddd;
}

/* No Mayo Indicator */
.no-mayo-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #FFFFFF;
    color: #DC2626; /* Red text for visibility/alert style */
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-top-right-radius: 8px;
    z-index: 20;
    box-shadow: 2px -2px 5px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #DC2626;
    border-left: none;
    border-bottom: none;
}
