/* ===== RESET & BASE STYLES (UNCHANGED) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY (UNCHANGED) ===== */
h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* ===== HEADER & NAVIGATION (UPDATED FOR MOBILE ACTIONS) ===== */
.announcement-bar {
    background: #2c3e50;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo a {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 50px;
    width: auto;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 10px;
    color: #7f8c8d;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #e67e22;
    background: rgba(230, 126, 34, 0.1);
}

.cart-link {
    position: relative;
}

.count-badge {
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.8em;
    min-width: 20px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
}

/* NEW MOBILE NAVIGATION STYLES */
.mobile-actions {
    display: none; /* Hidden on Desktop */
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    background: none;
    border: none;
    color: #2c3e50;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: #e67e22;
}

.mobile-cart-link {
    position: relative;
    color: #2c3e50;
    font-size: 1.5rem;
    text-decoration: none;
    padding: 5px;
    display: flex;
    align-items: center;
}

.mobile-cart-link .count-badge {
    position: absolute;
    top: -5px;
    right: -10px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    display: none;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.mobile-nav-overlay.open {
    display: block;
}

.mobile-nav-content {
    background: #fff;
    width: 80%; /* Takes 80% of screen width */
    max-width: 400px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease-out;
    padding: 20px;
    box-shadow: 5px 0 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.open .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.close-menu-btn {
    background: #e74c3c;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.close-menu-btn:hover {
    background: #c0392b;
}

/* Small Buttons in Mobile Menu */
.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.mobile-nav-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 12px 15px;
    border-radius: 8px;
    background: #f8f9fa; /* Small button background */
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
    font-size: 1rem;
}

.mobile-nav-btn i {
    color: #3498db;
    font-size: 1.2rem;
}

.mobile-nav-btn:hover {
    background: #e6f7ff;
    color: #3498db;
    transform: translateX(5px);
}

.cart-mobile-btn {
    background: #ffeaa7; /* Special color for cart */
    position: relative;
    justify-content: space-between;
}

.cart-mobile-btn .count-badge {
    background: #e74c3c;
    color: white;
}

/* Mobile Footer Info */
.mobile-nav-info {
    padding-top: 20px;
    margin-top: auto; /* Pushes to the bottom */
    text-align: center;
    border-top: 1px solid #eee;
}

.mobile-nav-info p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.mobile-nav-info strong {
    color: #e67e22;
}

.contact-links {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.contact-links .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}


/* ===== HERO BANNER (UNCHANGED) ===== */
.hero-banner {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.8)), url('/mannuji.in/images/hero-bg.jpg') center/cover;
    color: white;
    padding: 120px 0;
    position: relative;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 60px 0;
}

.banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-family: 'Playfair Display', serif;
}

.banner-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.banner-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.banner-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.feature i {
    color: #3498db;
    font-size: 1.2rem;
}

/* ===== TRUST BADGES (UNCHANGED) ===== */
.trust-badges {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #ecf0f1;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s;
}

.badge:hover {
    transform: translateY(-5px);
}

.badge i {
    font-size: 2.5rem;
    color: #3498db;
}

.badge span {
    font-weight: 600;
    color: #2c3e50;
}

/* ===== FEATURED PRODUCTS (UNCHANGED) ===== */
.featured-products {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 300;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.4s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 600;
}

.product-category {
    color: #7f8c8d;
    font-size: 0.85em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #e74c3c;
    margin: 15px 0;
    display: block;
}

.product-description {
    color: #666;
    margin: 15px 0;
    line-height: 1.6;
    font-size: 0.95em;
    min-height: 60px;
}

.min-order {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #e74c3c;
    font-weight: 600;
    margin: 15px 0;
    display: inline-block;
    border: 1px solid #ffeaa7;
}

.product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* ===== BUTTONS (UNCHANGED) ===== */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95em;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
}

.btn-outline {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
}

/* ===== FEATURES SECTION (UNCHANGED) ===== */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #f1f3f4;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.4rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== CTA SECTION (UNCHANGED) ===== */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN (UPDATED) ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 10px 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
    
    .hero-banner {
        padding: 80px 0;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-menu {
        display: none;
    }

    /* Show mobile actions */
    .mobile-actions {
        display: flex;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-text-container {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .brand-logo {
        height: 35px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .product-card {
        padding: 20px;
    }

    .mobile-nav-content {
        width: 100%; /* Take full width on very small screens */
        max-width: none;
    }
}