/* 
    Radha's Kitchen - Main Style System 
    Author: Antigravity AI
*/



:root {
    /* Color Palette */
    --primary-pink: #E91E63;
    --primary-gradient: linear-gradient(135deg, #FF4081 0%, #E91E63 100%);
    --secondary-green: #4CAF50;
    --accent-blue: #2196F3;
    --primary-yellow: #FFDE03;
    --neutral-dark: #333333;
    --neutral-light: #F8F9FA;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(233, 30, 99, 0.15);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-body);
    color: var(--neutral-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--neutral-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
}

.btn-outline:hover {
    background: var(--primary-pink) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3) !important;
}

.btn-order-online {
    background: transparent !important;
    color: var(--accent-blue, #2196F3) !important;
    border: 2px solid var(--accent-blue, #2196F3) !important;
    transition: var(--transition);
}

.btn-order-online:hover {
    background: var(--accent-blue, #2196F3) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.3) !important;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Utilities */
.responsive-grid-2, .responsive-grid-equal, .cart-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .responsive-grid-2, .responsive-grid-equal, .cart-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

.flex-responsive {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.flex-item {
    flex: 1;
    min-width: 350px;
}

@media (max-width: 991px) {
    .responsive-grid-2, .responsive-grid-equal, .cart-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
    }
    
    .flex-responsive {
        gap: 3rem;
        flex-direction: column !important;
    }
    
    .flex-item {
        min-width: 100%;
    }
}

/* Header Top Bar */
.top-bar {
    background: #fff;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem; /* Reduced from 2.5rem for better laptop fit */
}

.phone-display {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.phone-icon-circle {
    width: 45px;
    height: 45px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.phone-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-pink);
    font-style: italic;
    white-space: nowrap;
}

.divider-line {
    height: 40px;
    width: 1px;
    background: #ddd;
    transform: rotate(15deg);
}

.btn-top {
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    color: white;
    background: var(--primary-pink);
    text-transform: uppercase;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.btn-top:hover {
    background: #d81b60;
    transform: translateY(-2px);
}

header {
    padding: 1.2rem 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 2000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

/* Header Navigation */
.nav-links {
    display: flex;
    gap: 1rem; /* Slightly reduced gap */
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1.15rem;
    position: relative;
    white-space: nowrap;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-links li {
    position: relative;
}

/* Yellow Line Hover Effect */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-yellow);
    transition: var(--transition);
    border-radius: 5px;
}

.nav-links li a:hover {
    color: var(--primary-pink);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: var(--shadow-md);
    border-radius: 15px;
    padding: 1rem 0;
    display: none;
    z-index: 1000;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.nav-links li:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 0.7rem 1.5rem;
    display: block;
    font-size: 0.95rem !important;
    transition: var(--transition);
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: rgba(233, 30, 99, 0.05);
    color: var(--primary-pink);
    padding-left: 2rem;
}

.nav-item.dropdown > a::after {
    display: none !important;
}

/* Dropdown Arrow Icon */
.dropdown-icon {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: var(--transition);
}

.nav-links li:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-cta .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
}
.dropdown-icon {
    padding: 10px;
    margin-left: 0;
}
.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2500; /* Increased to be above nav-links */
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 2px;
    transition: var(--transition);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .top-bar-content {
        gap: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem;
        box-shadow: -10px 0 50px rgba(0,0,0,0.15);
        z-index: 2100;
        transition: right 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0s 0.6s;
        display: flex !important;
        visibility: hidden;
        overflow-y: auto; /* Allow scrolling if many items */
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
        transition: right 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0s 0s;
    }

    /* Menu Overlay Style */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1800;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu {
        position: static;
        display: none !important;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0 1rem;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li a {
        font-size: 1.1rem !important;
        padding: 0.8rem 0;
        text-align: left;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li a {
        font-size: 1.25rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.2rem 0;
        font-weight: 700;
        color: var(--neutral-dark);
    }

    .dropdown-icon {
        display: block;
        transition: transform 0.3s ease;
    }

    .nav-item.dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .menu-toggle {
        display: flex;
        order: 3;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    nav {
        gap: 1rem;
        width: 100%;
        justify-content: space-between;
        padding: 0 1rem;
    }

    .nav-cta {
        order: 2;
        margin-left: auto;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        order: 3;
    }

    .mobile-cart-btn {
        display: flex;
        position: relative;
        font-size: 1.5rem;
        color: var(--primary-pink);
        padding: 5px;
    }

    .cart-badge {
        position: absolute;
        top: -5px;
        right: -8px;
        background: var(--primary-yellow);
        color: var(--neutral-dark);
        font-size: 0.7rem;
        font-weight: 800;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 991px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.8rem; }
    h3 { font-size: 1.8rem; }
    
    .hero { padding: 40px 0; text-align: center; }
    .hero-content { margin: 0 auto; text-align: center; }
    .hero-btns { justify-content: center; flex-wrap: wrap; }
    
    .top-bar { display: none; }
    
    .experience-wrap { flex-direction: column; }
    .experience-text, .experience-visual { width: 100%; min-width: 0; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.2rem; }
    
    .logo div span {
        font-size: 1.4rem !important;
    }
    
    .logo {
        gap: 0.5rem !important;
    }

    .logo img {
        height: 45px !important;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-content h1 { font-size: 2.4rem; line-height: 1.2; }
    .hero-content p { font-size: 1.15rem; }
    
    .feature-grid, .batter-grid, .events-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    
    .cat-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    section { padding: 60px 0 !important; }
    
    .experience-card { flex-direction: column; text-align: center; padding: 2.5rem; }
    .exp-icon { margin: 0 auto; }
    
    .contact-form-card {
        padding: 2.5rem !important;
    }

    .cart-item-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .checkout-modal-content {
        grid-template-columns: 1fr !important;
        padding: 2.5rem !important;
        margin: 20px auto !important;
    }

    .checkout-modal-content > div:first-child {
        border-right: none !important;
        border-bottom: 1px solid #eee;
        padding-right: 0 !important;
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .logo img { height: 42px; }
    .logo div span { font-size: 1.1rem !important; }
    .logo { gap: 0.3rem !important; }
    
    h1, h2 { font-size: 2rem !important; }
    p { font-size: 1rem !important; }
    
    .hero-btns .btn { width: 100%; text-align: center; }
    
    .nav-links { max-width: 100%; } /* Full width mobile menu for phones */
    .footer-grid-box { gap: 2.5rem !important; }
}

/* Category Card Animations */
.cat-card {
    position: relative;
    overflow: hidden !important;
    text-decoration: none;
    transition: transform 0.3s ease !important;
}

.cat-card:hover {
    transform: none !important;
}

.cat-img {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 190px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
    pointer-events: none;
}

.cat-card:hover .cat-img {
    transform: translate(-140%, 0) !important; /* Elegant slide to the left */
}

.cat-arrow {
    position: absolute;
    bottom: 25px;
    right: -100px; /* Hidden off-screen to the right */
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 3;
}

.cat-card:hover .cat-arrow {
    right: 25px !important; /* Slides in from the right */
}
/* Why Choose Section Styles */
.why-section {
    padding: 120px 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 60px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 1.8rem 1.6rem 1rem; /* Significantly reduced bottom padding */
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(233, 30, 99, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.15);
    background: #fff;
}

/* Creative Enhancement: Background Soft Glow */
.feature-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(59, 126, 185, 0.1));
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
    transition: all 0.8s ease;
}

.feature-box:hover::before {
    transform: scale(2) translate(-20px, 20px);
    opacity: 0.6;
}

/* Creative Enhancement: Shine Effect */
.feature-box:hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 55%
    );
    animation: shine 1.5s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translate(-30%, -30%) rotate(0deg); }
    100% { transform: translate(30%, 30%) rotate(0deg); }
}

/* Bottom accent line refinement */
.feature-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.feature-box:hover .feature-accent {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 50px; /* Reduced from 55px */
    height: 50px;
    background: linear-gradient(135deg, #F9A825 0%, #EF6C00 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem; /* Reduced from 1.5rem */
    color: white;
    font-size: 1.2rem; /* Reduced from 1.4rem */
    box-shadow: 0 6px 12px rgba(239, 108, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.feature-box:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.25rem; /* Reduced from 1.35rem */
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.6rem; /* Reduced from 0.8rem */
    font-family: var(--font-body);
    z-index: 3;
}

.feature-text {
    font-size: 0.9rem; /* Reduced from 0.95rem */
    color: #666;
    line-height: 1.5; /* Slightly tighter line height */
    margin: 0;
    z-index: 3;
}

@media (max-width: 768px) {
    .why-section { padding: 80px 0; }
    .feature-box { padding: 2rem 1.5rem; }
}
/* Batter Section Styles */
.batter-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
@media (max-width: 991px) {
    .batter-section { padding: 50px 0; }
}

.batter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 60px;
}

.batter-card {
    background: #fff;
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.batter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.1);
}

.batter-img-wrapper {
    flex: 0 0 260px; /* Increased from 200px */
    height: 260px;
    position: relative;
    background: #fbf0f1; /* Soft brand-matching background circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Removed padding to let image be larger */
}

.batter-img-wrapper img {
    width: 135%; /* Increased to make batter more visible */
    height: 135%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2));
    transition: transform 0.5s ease;
    display: block;
    aspect-ratio: 1/1; 
    z-index: 2;
}

.batter-card:hover .batter-img-wrapper img {
    transform: scale(1.08) rotate(-5deg); /* Subtle playful interaction */
}

.batter-content {
    flex: 1;
}

.batter-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.batter-card-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.batter-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.batter-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

.batter-benefits li i {
    color: #43A047;
    font-size: 1.1rem;
}

.batter-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #3B7EB9; /* Precise Logo Center Blue */
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 126, 185, 0.2);
}

.batter-cta:hover {
    transform: scale(1.05);
    background: #DC2C84; /* Precise Logo Pink */
    box-shadow: 0 8px 25px rgba(220, 44, 132, 0.3);
}

@media (max-width: 991px) {
    .batter-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }
    .batter-img-wrapper {
        flex: 0 0 180px;
        width: 180px;
        height: 180px; 
        margin: 0 auto 1rem;
    }
    .batter-benefits li {
        justify-content: center;
    }
    /* Philosophy Overflows Fix */
    .philosophy-stats { margin-top: 2rem; }
    
    /* Decorative element overflow fix */
    div[style*="position: absolute; bottom: -30px; right: -30px"] {
        right: 0px !important;
        bottom: 0px !important;
        padding: 1rem !important;
        border-radius: 15px !important;
    }
    div[style*="position: absolute; top: -40px; left: -40px"] {
        display: none !important; /* Hide dot decorations that cause overflow */
    }
}
/* Enhanced Events Section Styles */
.events-section {
    padding: 80px 0;
    background: #ffffff;
    background-image: radial-gradient(#f0f0f0 1px, transparent 1px);
    background-size: 40px 40px; /* Subtle dot pattern for texture */
}
@media (max-width: 991px) {
    .events-section { padding: 50px 0; }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 60px;
}

.event-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2.5rem;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(233, 30, 99, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.event-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.6s ease;
}

.event-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(233, 30, 99, 0.1);
    background: #fff;
    border-color: rgba(233, 30, 99, 0.2);
}

.event-card:hover::before {
    transform: scale(3);
    opacity: 0.5;
}

/* Floating Corner Accent */
.event-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(233, 30, 99, 0.05) 50%);
    transition: all 0.4s ease;
    z-index: 0;
}

.event-card:hover::after {
    background: linear-gradient(135deg, transparent 50%, rgba(233, 30, 99, 0.1) 50%);
    width: 100px;
    height: 100px;
}

.event-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.event-icon-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 1.8rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.event-card:hover .event-icon-box {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.3);
    border-color: transparent;
}

.event-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    font-family: var(--font-body);
    transition: color 0.3s ease;
}

.event-card:hover h3 {
    color: var(--primary-pink);
}

.event-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.event-footer {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #3B7EB9;
    color: white !important;
    padding: 0.9rem 1.8rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(59, 126, 185, 0.2);
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-card:hover .event-footer {
    background: #DC2C84;
    box-shadow: 0 10px 25px rgba(220, 44, 132, 0.4);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .events-section { padding: 80px 0; }
    .events-grid { gap: 1.5rem; }
    .event-card { padding: 2.5rem 2rem; }
}

/* Modern Splitscreen Experience Section */
.catering-experience {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
@media (max-width: 991px) {
    .catering-experience { padding: 50px 0; }
}

.experience-wrap {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.experience-text {
    flex: 1;
    min-width: 400px;
    z-index: 2;
}

.experience-visual {
    flex: 1;
    min-width: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background: #fbf0f1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob-morph 15s infinite alternate;
    z-index: 1;
}

@keyframes blob-morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
}

.experience-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    margin-bottom: 1.2rem;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    gap: 1.5rem;
    transition: all 0.4s ease;
}

.experience-card:hover {
    transform: translateX(15px);
    box-shadow: 0 25px 60px rgba(59, 126, 185, 0.1);
}

.exp-icon {
    width: 60px;
    height: 60px;
    background: #3B7EB9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.floating-stat {
    position: absolute;
    top: 10%;
    right: 5%;
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 3;
    animation: float-y 4s infinite ease-in-out;
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 992px) {
    .experience-wrap { gap: 2rem; }
    .experience-text, .experience-visual { min-width: 100%; }
    .visual-blob { display: none; }
}

/* Blog Card Styles */
.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1) !important;
    border-color: rgba(233, 30, 99, 0.2) !important;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    width: fit-content;
}

.blog-btn:hover {
    gap: 1.2rem;
    border-bottom-color: var(--primary-pink);
}

.blog-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-btn i {
    transform: translateX(5px);
}
/* Philosophy Stats */
.philosophy-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    border-left: 1px solid #eee;
    padding-left: 3rem;
}

@media (max-width: 768px) {
    .philosophy-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .stat-item {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 2rem;
        width: 100%;
    }
}
/* Menu Filter Section */
.menu-filter-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
    background: #fafafa;
}

.menu-filter-box {
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.category-pills-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.search-filter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 750px;
    margin: 0 auto;
}

.search-container {
    flex: 1; /* Search takes remaining space */
    position: relative;
    max-width: 650px;
}

.mobile-filter-toggle {
    display: none; /* Hidden by default on desktop */
    align-items: center;
    gap: 10px;
    background: white;
    border: 1.5px solid #eee;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    color: var(--neutral-dark);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.mobile-filter-toggle i {
    color: var(--primary-pink);
    font-size: 1.1rem;
}

.mobile-filter-toggle:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.1);
}

/* Off-canvas Filter Drawer */
.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 2900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.filter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-filter-btn {
    display: none; /* Mobile only */
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-filter-btn:hover {
    background: white;
    color: var(--primary-pink);
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .search-filter-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .search-container {
        width: 100%;
    }

    .mobile-filter-toggle {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
    }

    /* Fixed drawer styles override */
    .premium-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        max-width: 380px !important;
        height: 100vh !important;
        max-height: 100vh !important;
        z-index: 3000 !important;
        border-radius: 0 !important;
        transition: left 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        display: block !important; /* Force block in grid context */
        margin-bottom: 0 !important;
    }

    .premium-sidebar.active {
        left: 0 !important;
    }

    .close-filter-btn {
        display: flex;
        margin-left: auto;
    }

    .menu-filter-section,
    .menu-main-content,
    .menu-signature-seo,
    .faq-section {
        padding: 50px 0 !important;
    }
}

@media (max-width: 576px) {
    .premium-sidebar {
        max-width: 320px !important;
    }
}

.search-container input {
    width: 100%;
    padding: 20px 30px;
    border-radius: 50px;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
    outline: none;
    transition: var(--transition);
}

.search-submit {
    position: absolute;
    right: 8px;
    top: 8px;
    bottom: 8px;
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background: #d81b60;
}

/* Menu Layout Grid */
.menu-main-content {
    padding: 80px 0;
}

/* Independent Scrolling Logic for Menu & Catering (Desktop) */
@media (min-width: 992px) {
    .menu-layout-grid, .catering-layout-box {
        display: grid !important;
        grid-template-columns: 340px 1fr !important;
        height: calc(100vh - 165px) !important; /* Perfect height minus header/topbar */
        gap: 3rem !important;
        align-items: stretch !important;
        overflow: hidden !important;
        margin-bottom: 20px;
    }

    .sidebar-column, .menu-items-column {
        height: 100% !important;
        overflow-y: auto !important;
        padding-right: 15px;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-pink) #f8f9fa;
    }

    /* Professional Scrollbar Styling */
    .sidebar-column::-webkit-scrollbar, .menu-items-column::-webkit-scrollbar {
        width: 6px;
    }
    .sidebar-column::-webkit-scrollbar-thumb, .menu-items-column::-webkit-scrollbar-thumb {
        background: var(--primary-pink);
        border-radius: 10px;
    }

    /* Transform Sidebar into the Scroll Pane Container */
    .sidebar-column {
        background: #fff;
        border-radius: 30px;
        padding: 30px !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.04);
        border: 1px solid rgba(0,0,0,0.02);
    }

    /* Reset internal premium-sidebar to work inside the new scroll-column */
    .premium-sidebar {
        position: relative !important;
        top: 0 !important;
        max-height: none !important;
        overflow-y: visible !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
    }
}

@media (max-width: 991px) {
    .menu-layout-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

.menu-items-column {
    flex: 1;
}

@media (max-width: 991px) {
    .menu-filter-box {
        padding: 30px 20px;
    }
    
    .category-pills-wrapper {
        gap: 0.8rem;
    }
    
    .search-container input {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .search-submit {
        padding: 0 20px;
    }

    .menu-main-content {
        padding: 40px 0;
    }

    .menu-layout-grid {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .menu-filter-box h2 {
        font-size: 1.8rem;
    }
    
    .search-container input {
        padding-right: 60px; /* Space for the button */
    }
    
    .search-submit {
        padding: 0 15px;
        right: 6px;
        top: 6px;
        bottom: 6px;
    }
    
    .search-submit i {
        font-size: 1rem;
    }
}
