/* nutroindia/css/style.css - MASTER STYLESHEET (Header + Home Page) */

/* =========================================
   1. GLOBAL VARIABLES & TYPOGRAPHY
========================================= */
:root {
    --nutro-bg-light: #fdfdf8; 
    --nutro-dark-green: #1e381b; 
    --nutro-leaf-green: #5f8228; 
    --nutro-red: #b81216; 
    --nutro-gold: #c99b3b; 
    --nutro-strip-bg: #eef4e0; 
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--nutro-bg-light);
    color: var(--nutro-dark-green);
    overflow-x: hidden;
}

.serif-font { font-family: 'Playfair Display', serif; }


/* =========================================
   2. HEADER & NAVIGATION STYLES
========================================= */
.nutro-header-light { background-color: #fcfcf6; border-bottom: 1px solid rgba(0,0,0,0.05); }
.nutro-header-light .nav-link { 
    color: #1e381b !important; font-family: 'Outfit', sans-serif; font-weight: 700; 
    text-transform: uppercase; transition: 0.3s; position: relative;
}
.nutro-header-light .nav-link:hover, .nutro-header-light .nav-link.active { color: #5f8228 !important; }
.nutro-header-light .navbar-brand img { height: 60px; object-fit: contain; }
.header-icons .bi { color: #1e381b; font-size: 1.2rem; transition: 0.3s; cursor: pointer; }
.header-icons .bi:hover { color: #5f8228; }

.btn-shop-light { 
    background-color: #5f8228; color: #ffffff !important; font-family: 'Outfit', sans-serif; 
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; 
    padding: 10px 24px; border: none; border-radius: 4px; transition: 0.3s; white-space: nowrap; 
}
.btn-shop-light:hover { background-color: #1e381b; }

/* 💻 DESKTOP ONLY HEADER STYLES */
@media (min-width: 992px) {
    .nutro-header-light .navbar-brand img { height: 55px; object-fit: contain; } 
    .nutro-header-light .nav-link { font-size: 0.7rem; letter-spacing: 0.5px; padding: 10px 10px !important; }
    .header-icons { gap: 1rem !important; } 
    
    .nutro-header-light .dropdown-menu { background-color: #fcfcf6; border: 1px solid #e5e5e5; border-radius: 4px; margin-top: 0; }
    .nutro-header-light .dropdown-item { color: #1e381b; font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 600; transition: 0.3s; }
    .nutro-header-light .dropdown-item:hover { background-color: #5f8228; color: #ffffff; }
    
    .nutro-header-light .nav-link.active::before, .nutro-header-light .nav-link:hover::before {
        content: ''; position: absolute; bottom: 0; left: 10px; right: 10px; height: 2px; background-color: #5f8228;
    }
    .nutro-header-light .dropdown:hover .dropdown-menu { display: block; }
}

/* 📱 MOBILE ONLY CUSTOM SLIDE MENU STYLES */
@media (max-width: 991px) {
    .mobile-logo-row { text-align: center; width: 100%; margin-bottom: 5px; }
    .mobile-controls-row { display: flex; justify-content: space-between; align-items: center; width: 100%; padding-top: 5px; }
    .nutro-header-light .navbar-brand img { height: 50px; object-fit: contain; }
    
    .custom-slide-menu {
        position: absolute; top: 100%; left: 0; width: 300px; height: auto; max-height: 85vh; 
        background-color: #fcfcf6; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.08); border-right: 1px solid rgba(0,0,0,0.08); border-bottom-right-radius: 15px; 
        box-shadow: 5px 10px 20px rgba(0,0,0,0.08); z-index: 1000; padding-top: 10px; padding-bottom: 20px; overflow-y: auto;
        transform: translateX(-120%); transition: transform 0.35s ease-in-out;
    }
    .custom-slide-menu.menu-open { transform: translateX(0); }
    .custom-slide-menu .navbar-nav { flex-direction: column !important; width: 100%; }
    .custom-slide-menu .nav-link { font-size: 0.8rem; text-align: left; padding: 15px 20px !important; }
    .custom-slide-menu .nav-link.active::after, .custom-slide-menu .nav-link:hover::after { display: none; }
    .custom-slide-menu .dropdown-menu { position: static; float: none; background-color: transparent; border: none; box-shadow: none; padding-left: 15px; display: none; }
    .custom-slide-menu .dropdown-menu.show { display: block; }
}


/* =========================================
   3. HOME PAGE SECTIONS STYLES
========================================= */

/* Hero Section */
.hero-section { position: relative; min-height: 85vh; display: flex; align-items: center; }
.hero-content { position: relative; z-index: 2; padding: 5rem 0; }
.hero-tagline { color: var(--nutro-leaf-green); font-weight: 700; letter-spacing: 1px; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 1rem; }
.text-nutro { color: var(--nutro-dark-green); }
.text-india { color: var(--nutro-red); }
.hero-subtitle { color: var(--nutro-dark-green); font-size: 1.1rem; max-width: 450px; margin-bottom: 2.5rem; font-weight: 400; }

/* Buttons */
.btn-nutro-solid { background-color: var(--nutro-leaf-green); color: #ffffff; padding: 12px 35px; letter-spacing: 1px; font-size: 0.9rem; font-weight: 600; transition: 0.3s; border-radius: 4px; text-transform: uppercase; border: none; }
.btn-nutro-solid:hover { background-color: var(--nutro-dark-green); color: #fff; }
.btn-nutro-outline { background-color: transparent; color: var(--nutro-leaf-green); border: 1px solid var(--nutro-leaf-green); padding: 10px 30px; font-weight: 600; border-radius: 4px; transition: 0.3s; }
.btn-nutro-outline:hover { background-color: var(--nutro-leaf-green); color: #fff; }

/* Features Strip 1 */
.features-strip { padding: 4rem 0 2rem 0; background-color: var(--nutro-bg-light); border-top: 1px dashed rgba(0,0,0,0.1); }
.feature-box { position: relative; padding-bottom: 60px; } 
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--nutro-dark-green); }
.feature-box h6 { font-weight: 700; letter-spacing: 0.5px; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--nutro-dark-green); }
.feature-box p { color: #4a5c46; font-size: 0.85rem; font-weight: 400; }
.feature-border { border-right: 1px solid rgba(0,0,0,0.08); }
.deco-img { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); height: 50px; object-fit: contain; } 
@media (max-width: 768px) { .feature-border { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); margin-bottom: 30px; } }

/* Promise Section */
.promise-section { padding: 5rem 0; background-color: var(--nutro-bg-light); }
.promise-title { font-size: 3.5rem; color: var(--nutro-dark-green); line-height: 1.2; margin-bottom: 1.5rem; }

/* Light Features Bottom Strip */
.bottom-strip-wrapper { padding: 2rem 0; }
.bottom-strip-card { background-color: var(--nutro-strip-bg); border-radius: 20px; padding: 2rem; position: relative; }
.light-feature-icon { font-size: 1.8rem; color: var(--nutro-dark-green); }
.bottom-deco-left { position: absolute; bottom: -20px; left: -20px; height: 80px; }
.bottom-deco-right { position: absolute; bottom: -20px; right: -20px; height: 80px; }

/* Bottom Quote */
.quote-section { background-color: #e6eed3; padding: 3rem 0; text-align: center; border-top: 1px solid #d4dfb9; }
.quote-text { color: var(--nutro-dark-green); font-size: 1.8rem; font-style: italic; }

/* 📱 MOBILE RESPONSIVE FIXES FOR HOME PAGE */
@media (max-width: 768px) {
    .hero-section { min-height: auto !important; height: 480px !important; background-position: center top -30px !important; background-size: 160% !important; display: block !important; padding-top: 20px !important; padding-bottom: 0 !important; }
    .hero-content { background: transparent !important; backdrop-filter: none !important; box-shadow: none !important; border-radius: 0 !important; width: 100%; margin: 0 !important; padding: 0 1.2rem !important; text-align: left !important; }
    .hero-title { font-size: 3rem !important; line-height: 1.1 !important; margin-top: 0 !important; }
    .hero-tagline { font-size: 0.75rem; margin-top: 0 !important; margin-bottom: 10px !important; } 
    .hero-subtitle { font-size: 0.95rem; margin: 0 0 1.5rem 0 !important; }
    .hero-content .d-flex { justify-content: flex-start !important; margin-top: 5px !important; }
    .hero-content .d-flex span { font-size: 0.75rem !important; letter-spacing: 2px !important; }
    .promise-title { font-size: 2.5rem !important; }
    .promise-section .col-lg-5 { text-align: center !important; }
    .promise-section p { margin: 0 auto 1.5rem auto !important; }
    .bottom-strip-card { padding: 1.5rem 1rem; }
    .light-feature-icon { font-size: 1.5rem; }
    .bottom-strip-card strong { font-size: 0.8rem !important; }
}

.nutro-footer {
        background-color: #0d1e15 !important;
        padding-top: 4rem;
        padding-bottom: 2rem;
        color: #ffffff !important;
        margin-top: 3rem;
    }
    .nutro-footer .footer-heading {
        color: #ffffff !important;
        font-weight: 700;
        font-size: 1.1rem;
        position: relative;
        padding-bottom: 12px;
        margin-bottom: 1.5rem;
        text-transform: capitalize;
    }
    /* 🔥 Exact yahi line chahiye thi: Heading ke neeche short green underline */
    .nutro-footer .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 35px;
        height: 3px;
        background-color: #5f8228;
        border-radius: 2px;
    }
    .nutro-footer .footer-link {
        color: #95a5a6 !important;
        text-decoration: none;
        font-size: 0.9rem;
        transition: 0.3s ease;
        display: block;
        margin-bottom: 0.8rem;
    }
    .nutro-footer .footer-link:hover {
        color: #5f8228 !important;
        padding-left: 5px; /* Hover karne par thoda aage khiskega (Smooth effect) */
    }
    .nutro-footer .social-box {
        background: rgba(255,255,255,0.05);
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%; /* Rounded social icons */
        color: #ffffff !important;
        text-decoration: none;
        transition: 0.3s;
        font-size: 1.1rem;
    }
    .nutro-footer .social-box:hover {
        background: #5f8228;
    }
    .follow-btn {
        border: 1px solid #5f8228;
        color: #ffffff;
        background: transparent;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 600;
        transition: 0.3s;
        text-decoration: none;
        display: inline-block;
    }
    .follow-btn:hover {
        background: #5f8228;
        color: #ffffff;
    }
    
    /* 📱 MOBILE RESPONSIVE FIXES */
    @media (max-width: 768px) {
        .nutro-footer {
            padding-top: 3rem;
        }
        .nutro-footer .footer-col {
            margin-bottom: 2.5rem; /* Stack hone par columns ke beech gap */
        }
    }

/* --- CART PAGE PREMIUM THEME DESIGN --- */
.cart-wrapper {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 15px;
}
.cart-table th {
    background-color: #eef4e0 !important;
    color: #1e381b !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: none !important;
}
.cart-table td {
    vertical-align: middle;
    color: #4a5c46;
}
.cart-img-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 5px;
    display: inline-block;
}
.qty-input {
    width: 60px;
    text-align: center;
    border: 1px solid #5f8228;
    border-radius: 4px;
    color: #1e381b;
    font-weight: 600;
}
.summary-card {
    background-color: #eef4e0;
    border: 1px dashed #5f8228;
    border-radius: 15px;
}
.summary-title {
    color: #1e381b;
    font-weight: 700;
}
.remove-cart-btn {
    color: #b81216;
    transition: 0.3s;
    cursor: pointer;
}
.remove-cart-btn:hover {
    color: #1e381b;
    transform: scale(1.1);
}










