/* ============================================
   PREMIUM ENHANCEMENTS - Herb On Naturals
   Glassmorphism, Animations, Modern Design
   ============================================ */

/* Enhanced CSS Variables */
:root {
    /* light Mode Colors (Default) */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F8F8;
    --text-primary: #1D1D1D;
    --text-secondary: #5C5C5C;
    --border-color: #ECECEC;
    --card-bg: #FFFFFF;
    --footer-bg: #FFFFFF;

    /* Premium Color Palette */
    --premium-green: #2D5016;
    --premium-green-light: #4a7c23;
    --gold-accent: #D4A853;
    --gold-light: #F5E6C8;
    --nature-bg: linear-gradient(135deg, #1a3a0a 0%, #2D5016 50%, #4a7c23 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   TOAST NOTIFICATIONS (Consolidated)
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10008;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.herb-toast {
    background: #1B4332;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 250px;
    pointer-events: auto;
    border-left: 5px solid #7CA03C;
}

.herb-toast.show {
    transform: translateX(0);
}

.herb-toast.success {
    border-left-color: #a8e063;
}

.herb-toast.error {
    border-left-color: #ef4444;
}

@media (max-width: 768px) {
    .toast-container {
        bottom: 80px;
        /* Above mobile nav */
        right: 20px;
        left: 20px;
        align-items: center;
    }

    .herb-toast {
        min-width: calc(100% - 40px);
        width: 100%;
    }
}

/* Dark Mode Overrides */
.dark-mode {
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    --card-bg: #1e1e1e;
    --footer-bg: #121212;

    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-header,
.main-footer,
.cart-page,
.shop-page,
.product-card,
.promo-bar,
.pincode-modal-content,
.search-autocomplete {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.dark-mode .main-header,
.dark-mode .main-footer,
.dark-mode .light-footer {
    background: var(--bg-primary) !important;
    border-color: var(--border-color) !important;
}

.dark-mode .product-card,
.dark-mode .pincode-modal-content,
.dark-mode .search-autocomplete,
.dark-mode .cart-items,
.dark-mode .order-summary {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border-color) !important;
}

.dark-mode .product-title,
.dark-mode .product-price,
.dark-mode .section-title,
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4 {
    color: var(--text-primary) !important;
}

.dark-mode .product-usp,
.dark-mode .rating-count,
.dark-mode .footer-tagline,
.dark-mode .footer-col ul a {
    color: var(--text-secondary) !important;
}

.dark-mode .search-input {
    background: #2a2a2a !important;
    color: white !important;
    border-color: #444 !important;
}

.dark-mode .cart-link {
    background: #2a2a2a !important;
    border-color: #444 !important;
}

.dark-mode .cart-link svg {
    stroke: white !important;
}

.dark-mode .promo-bar {
    background: #000 !important;
}

/* ============================================
   HERO SECTION - Premium Gradient Banner
   ============================================ */
/* ============================================
   HERO SLIDER - Professional Image Banners
   ============================================ */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.hero-slider-container {
    position: relative;
    height: 600px;
}

@media (max-width: 768px) {
    .hero-slider-container {
        height: 180px !important;
        max-height: 180px !important;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: white;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .slide-content {
        max-width: 85%;
        padding: 0 10px;
    }

    .slide-content p {
        font-size: 0.85rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .slide-badge {
        padding: 5px 10px;
        font-size: 11px;
        margin-bottom: 10px;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .product-usp-badge,
    .floating-circle {
        display: none !important;
    }
}

.slide-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--premium-green);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--premium-green);
    box-shadow: 0 10px 20px rgba(45, 80, 22, 0.3);
}

.slide-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 80, 22, 0.4);
}

.product-usp-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.hero-slide.active .slide-decoration {
    animation: zoomIn 10s linear infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}


/* Floating Leaf Decorations */
.floating-leaf {
    position: absolute;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.floating-leaf:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-leaf:nth-child(2) {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.floating-leaf:nth-child(3) {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.floating-leaf:nth-child(4) {
    top: 70%;
    right: 8%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* ============================================
   CATEGORY CIRCLES - Premium Glass Effect
   ============================================ */
.category-section {
    background: linear-gradient(180deg, #f8faf6 0%, #ffffff 100%);
    padding: 50px 0;
}

.category-item {
    transition: var(--transition-smooth);
}

.category-item:hover {
    transform: translateY(-8px);
}

.category-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
    overflow: visible;
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--premium-green), #40916C);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.category-item:hover .category-circle::before {
    opacity: 1;
}

.category-item:hover .category-circle {
    box-shadow: 0 10px 30px rgba(113, 191, 68, 0.3);
}

.category-circle .category-icon {
    font-size: 2.5rem;
}

.category-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-gray);
    transition: var(--transition-smooth);
}

.category-item:hover .category-name {
    color: var(--primary-green);
}

/* ============================================
   PRODUCT CARDS - Glassmorphism Design
   ============================================ */
.product-section {
    position: relative;
    padding: 50px 0;
}

.lightning-sale {
    background: linear-gradient(135deg, #fff8e7 0%, #fff3d6 100%);
    position: relative;
}

.lightning-sale::before {
    content: '⚡';
    position: absolute;
    font-size: 150px;
    opacity: 0.05;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--premium-green), #40916C);
    border-radius: 2px;
}

.timer-badge {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.view-all {
    padding: 10px 20px;
    border: 2px solid var(--primary-cyan);
    border-radius: 25px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.view-all:hover {
    background: var(--primary-cyan);
    color: white;
}

/* Product Card Premium */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--premium-green), #40916C, var(--gold-accent));
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    padding: 20px;
    overflow: hidden;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.5) 100%);
    pointer-events: none;
}

.product-image {
    transition: var(--transition-smooth);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

/* Quick Actions */
.product-quick-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-smooth);
    z-index: 5;
}

.product-card:hover .product-quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.quick-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.quick-action-btn:hover {
    background: var(--primary-cyan);
    color: white;
    transform: scale(1.1);
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FF6B6B, #EE5A5A);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    height: auto;
    min-height: 42px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-star {
    color: #FFB800;
}

.rating-star.empty {
    color: #E0E0E0;
}

.rating-value {
    font-weight: 700;
    color: var(--dark-gray);
}

.rating-count {
    color: var(--gray);
    font-size: 12px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--premium-green);
}

.product-price-old {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    font-size: 12px;
    font-weight: 700;
    color: #FF6B6B;
    background: #FFEBEB;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Premium Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--premium-green), #40916C);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

/* ============================================
   TRUST SECTION - Glass Cards
   ============================================ */
.trust-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8faf6 100%);
    padding: 70px 0;
}

.trust-section .section-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.trust-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 50px;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    width: 140px;
    padding: 25px 15px;
    background: white;
    border-radius: 16px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trust-item img {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    transition: var(--transition-smooth);
}

.trust-item:hover img {
    transform: scale(1.1);
}

.trust-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.4;
}

/* ============================================
   PROMO BAR - Animated Gradient
   ============================================ */
.promo-bar {
    background: linear-gradient(90deg, var(--primary-cyan), #00C853, var(--primary-cyan));
    background-size: 200% 100%;
    animation: promoGradient 4s ease infinite;
    padding: 12px 0;
    font-size: 13px;
}

@keyframes promoGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   HEADER - Glass Effect
   ============================================ */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 28px;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.search-bar {
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid #eee;
    transition: var(--transition-smooth);
}

.search-bar:focus-within {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 175, 239, 0.1);
}

.search-btn {
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
}

.icon-link {
    transition: var(--transition-smooth);
    padding: 8px 12px;
    border-radius: 8px;
}

.icon-link:hover {
    background: rgba(0, 175, 239, 0.1);
    color: var(--primary-cyan);
}

.cart-count {
    animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}

/* ============================================
   NAVIGATION - Modern Square Hover Effect
   ============================================ */
.nav-bar {
    background: linear-gradient(180deg, #ffffff 0%, #f9fffe 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 0;
    position: relative;
    border-bottom: none;
}

.nav-bar .container {
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
}

.nav-link {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #555;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

/* HOVER Effect - Square Background */
.nav-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary-green) 0%, #00d4aa 100%) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 175, 239, 0.4);
}

/* ACTIVE State */
.nav-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary-green) 0%, #00d4aa 100%) !important;
    box-shadow: 0 5px 20px rgba(0, 175, 239, 0.35);
}

/* Active bottom indicator */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
}

/* Remove all ::before pseudo-elements that were conflicting */
.nav-link::before {
    display: none !important;
}

/* First item - Home gets green on default page */
.nav-menu li:first-child .nav-link.active {
    background: linear-gradient(135deg, var(--primary-green) 0%, #00d4aa 100%) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-link {
        padding: 12px 20px;
        font-size: 12px;
    }

    .nav-menu {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        padding: 10px 0;
    }

    .nav-link {
        padding: 10px 16px;
        font-size: 11px;
        border-radius: 8px;
    }
}

/* ============================================
   GOODNESS PROMISE SECTION - PREMIUM REDESIGN
   ============================================ */
.goodness-promise-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 50%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.goodness-promise-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 67, 50, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.goodness-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Video Wrapper */
.goodness-video-wrapper {
    position: relative;
}

.video-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(27, 67, 50, 0.2);
    background: #000;
    z-index: 2;
    /* Ensure video is above background elements */
}

.video-frame::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #1B4332, #40916C, #52B788);
    border-radius: 27px;
    z-index: -1;
    pointer-events: none;
    /* Prevent blocking clicks */
}

.video-frame iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    position: relative;
    z-index: 3;
    /* Ensure iframe is clickable */
}

.video-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    font-size: 14px;
    color: #333;
    z-index: 10;
    /* Ensure badge floats above video */
}

.video-badge .play-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1B4332, #40916C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Content Side */
.goodness-content {
    padding: 20px 0;
}

.content-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1B4332, #2D6A4F);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.goodness-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.goodness-content h2 .highlight {
    background: linear-gradient(135deg, #1B4332, #40916C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.goodness-content .main-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Promise Cards Grid */
.promise-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.promise-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon.green {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
}

.card-icon.green svg {
    stroke: #1B4332;
}

.card-icon.red {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
}

.card-icon.red svg {
    stroke: #c0392b;
}

.card-icon.pink {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}

.card-icon.pink svg {
    stroke: #c2185b;
}

.card-icon.blue {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.card-icon.blue svg {
    stroke: #1565C0;
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.card-text span {
    font-size: 12px;
    color: #888;
}

/* Buttons */
.goodness-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1B4332, #2D6A4F);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(27, 67, 50, 0.3);
}

.btn-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(27, 67, 50, 0.4);
}

.btn-shop svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-shop:hover svg {
    transform: translateX(4px);
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #1B4332;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #1B4332;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: #1B4332;
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .goodness-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .goodness-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .goodness-promise-section {
        padding: 60px 0;
    }

    .goodness-content h2 {
        font-size: 28px;
    }

    .promise-cards {
        grid-template-columns: 1fr;
    }

    .goodness-buttons {
        flex-direction: column;
    }

    .btn-shop,
    .btn-learn {
        width: 100%;
        justify-content: center;
    }

    .video-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ============================================
   CUSTOMER REVIEWS SLIDER
   ============================================ */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section .section-title {
    color: #333;
    margin-bottom: 50px;
}

.reviews-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews-slider {
    display: flex;
    gap: 25px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.review-card {
    min-width: calc(33.333% - 20px);
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform: scale(0.95);
    opacity: 0.7;
}

.review-card.active {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4caf50;
}

.reviewer-info strong {
    display: block;
    color: #333;
    font-size: 15px;
}

.reviewer-info .rating {
    background: #4caf50;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.review-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.review-nav:hover {
    background: #4caf50;
    color: white;
    transform: scale(1.1);
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: #4caf50;
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .review-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .review-card {
        min-width: 100%;
    }

    .review-nav {
        display: none;
    }
}

/* ============================================
   FOOTER - Premium Light Design Enhanced
   ============================================ */
.main-footer {
    background: linear-gradient(180deg, #ffffff 0%, #f9faf8 100%) !important;
    color: #333;
    padding: 70px 0 30px;
    border-top: 3px solid #2D5016;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232D5016' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
}

/* Brand Column Enhanced */
.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #2D5016;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Social Icons Enhanced */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.social-link:nth-child(1):hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-link:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.social-link:nth-child(3):hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.social-link:nth-child(4):hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Columns Enhanced */
.footer-col h4 {
    color: #2D5016;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #2D5016, #4a7c23);
    border-radius: 2px;
}

.footer-col ul a {
    color: #555;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a:hover {
    color: #2D5016;
    transform: translateX(6px);
}

/* Newsletter Enhanced */
.footer-newsletter p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 18px;
    border: 2px solid #e8e8e8;
    border-right: none;
    border-radius: 10px 0 0 10px;
    font-size: 14px;
    font-family: var(--font-family);
    outline: none;
    background: #fff;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #2D5016;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: linear-gradient(135deg, #2D5016 0%, #4a7c23 100%);
    color: white;
    border: none;
    padding: 15px 28px;
    border-radius: 0 10px 10px 0;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #1a3a0a 0%, #2D5016 100%);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.3);
}

/* Contact Info Enhanced */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background: #f8f9f7;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
}

.footer-contact-info p {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 500;
}

.footer-contact-info span {
    font-size: 18px;
}

/* Footer Bottom Enhanced */
.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #888;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* ============================================
   WHATSAPP BUTTON - Enhanced
   ============================================ */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .category-circle {
        width: 80px;
        height: 80px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   LOADING SKELETON
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   HERO SLIDER - Multi-Banner Carousel
   ============================================ */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

@media (max-width: 768px) {
    .hero-slider-container {
        height: 400px;
    }
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
    transform: scale(1.02);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 10 !important;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: none !important;
    /* Completely transparent - no overlays */
    pointer-events: none;
}

/* Override for Offer Layout - Clear background by default */
.hero-slide.offer-layout .slide-overlay {
    background: none !important;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease;
}

.slide-content.dark-text {
    color: #1a3a0a;
}

.slide-content.dark-text h1,
.slide-content.dark-text p {
    color: #1a3a0a;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2rem;
    }
}

.slide-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .slide-content p {
        font-size: 1rem;
    }
}

.slide-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold-accent), #c4943d);
    color: #1a3a0a;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.slide-btn.dark {
    background: #1a3a0a;
    color: #fff;
}

.slide-btn.light {
    background: #fff;
    color: #FF6B6B;
}

/* Floating Decoration Circles */
.slide-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.floating-circle.c1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: floatCircle 8s ease-in-out infinite;
}

.floating-circle.c2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: 10%;
    animation: floatCircle 6s ease-in-out infinite reverse;
}

.floating-circle.c3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: -50px;
    animation: floatCircle 10s ease-in-out infinite 2s;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -30px) scale(1.1);
    }
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }
}

/* Slider Dot Indicators */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ============================================
   KAPIVA-STYLE HEADER COMPONENTS
   ============================================ */

/* Pincode Selector */
.pincode-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    min-width: 140px;
    transition: all 0.3s ease;
}

.pincode-selector:hover {
    border-color: #2D5016;
    background: #f0f5eb;
}

.pincode-selector svg {
    color: #2D5016;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.pincode-text {
    font-size: 12px;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}

.dropdown-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.pincode-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Pincode Modal */
.pincode-modal {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.pincode-selector.active .pincode-modal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pincode-modal h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.pincode-modal input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease;
}

.pincode-modal input:focus {
    outline: none;
    border-color: #2D5016;
}

.pincode-check-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2D5016 0%, #4a7c23 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pincode-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.3);
}

.pincode-result {
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

.pincode-result.success {
    color: #2D5016;
    font-weight: 500;
}

.pincode-result.error {
    color: #e53e3e;
}

/* Search Autocomplete */
.search-bar {
    position: relative;
}

/* Professional Search Autocomplete UI */
.search-autocomplete {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    z-index: 999999;
    /* Higher than everything else */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 480px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.search-bar.active .search-autocomplete {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.autocomplete-header {
    padding: 15px 20px;
    font-size: 13px;
    color: #2D5016;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    background: #f8fcf5;
    border-bottom: 1px solid #f0f4eb;
    position: sticky;
    top: 0;
    z-index: 2;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f9f9f9;
}

.autocomplete-item:hover {
    background: #f0f7ea;
    padding-left: 25px;
}

.item-img-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autocomplete-item .item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.autocomplete-item .item-name {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.autocomplete-item .item-category {
    font-size: 12px;
    color: #666;
    background: #f1f1f1;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.item-badge {
    font-size: 10px;
    color: #ff5252;
    font-weight: 700;
    text-transform: uppercase;
}

.item-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.autocomplete-item .item-price {
    font-size: 16px;
    font-weight: 700;
    color: #2D5016;
}

.item-quick-btn {
    font-size: 11px;
    background: #2D5016;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.2s ease;
}

.autocomplete-item:hover .item-quick-btn {
    opacity: 1;
    transform: translateX(0);
}

/* Keyword Suggestions Styles */
.keyword-suggestions {
    padding: 10px 0;
    background: #fdfdfd;
    border-bottom: 2px solid #f0f4eb;
}

.keyword-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #444;
    font-size: 14px;
    font-weight: 500;
}

.keyword-item:hover {
    background: #f0f7ea;
    color: #2D5016;
}

.keyword-item svg {
    color: #888;
    transition: color 0.2s ease;
}

.keyword-item:hover svg {
    color: #2D5016;
}

/* Empty State */
.search-empty-state {
    padding: 40px 20px;
    text-align: center;
}

.search-empty-state p {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.search-empty-state span {
    font-size: 13px;
    color: #888;
}

/* Scrollbar Style */
.search-autocomplete::-webkit-scrollbar {
    width: 6px;
}

.search-autocomplete::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-autocomplete::-webkit-scrollbar-thumb {
    background: #2D5016;
    border-radius: 10px;
}

/* Header Buttons (LOGIN, GET APP) */
.header-btn {
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.login-btn {
    background: transparent;
    border: 2px solid #333;
    color: #333;
}

.login-btn:hover {
    background: #333;
    color: white;
}

.app-btn {
    background: transparent;
    border: 2px solid #333;
    color: #333;
}

.app-btn:hover {
    background: #2D5016;
    border-color: #2D5016;
    color: white;
}

/* Header Icons Update - Properly Aligned */
.header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}

.header-icons .cart-link {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    background: white;
    transition: all 0.3s ease;
    color: #333;
}

.header-icons .cart-link:hover {
    border-color: #00b4d8;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 180, 200, 0.2);
}

.header-icons .cart-link svg {
    width: 24px;
    height: 24px;
    stroke: #333 !important;
    fill: none !important;
    stroke-width: 2;
}

.header-icons .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .pincode-selector {
        display: flex;
        min-width: auto;
        padding: 6px 10px;
    }

    .pincode-text {
        max-width: 70px;
        font-size: 11px;
    }

    .header-btn.app-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-btn {
        padding: 6px 12px;
        font-size: 11px;
        height: 36px;
    }

    .header-icons .cart-link {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   MOBILE APP-LIKE EXPERIENCE
   ============================================ */

/* Bottom Navigation Bar - App Style */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0 8px;
    z-index: 99999;
    border-top: 1px solid #eee;
}

.mobile-bottom-nav .nav-items {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding: 0 5px;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #888;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 5px 8px;
    border-radius: 10px;
    min-width: 55px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: #00b4d8;
}

.mobile-bottom-nav .nav-item.active {
    background: linear-gradient(135deg, #e8f7f5 0%, #ffffff 100%);
}

.mobile-bottom-nav .nav-icon {
    font-size: 20px;
    margin-bottom: 3px;
    line-height: 1;
}

.mobile-bottom-nav .nav-item span:last-child {
    font-size: 9px;
    white-space: nowrap;
}

/* Mobile-specific styles */
@media (max-width: 768px) {

    /* Show bottom nav on mobile - MUST be fixed position */
    .mobile-bottom-nav {
        display: block !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: white !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
        padding: 10px 0 8px !important;
        z-index: 99999 !important;
        border-top: 1px solid #eee !important;
    }

    /* Add padding for bottom nav */
    body {
        padding-bottom: 80px !important;
    }

    /* Hide desktop header icons on mobile */
    .header-icons .login-btn,
    .header-icons .app-btn,
    .header-icons .logout-btn,
    .header-icons .getapp-btn {
        display: none !important;
    }

    /* Compact mobile header */
    .main-header {
        padding: 8px 0 !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
        background: white !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    }

    /* Mobile header row layout */
    .header-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 0 10px !important;
    }

    /* Hide pincode on mobile */
    .pincode-selector {
        display: none !important;
    }

    /* Smaller logo on mobile */
    .logo-img {
        max-height: 32px !important;
        width: auto !important;
    }

    /* Full-width search bar */
    .search-bar {
        flex: 1 !important;
        max-width: none !important;
        width: auto !important;
        height: 36px !important;
        margin: 0 !important;
        align-self: center !important;
    }

    .search-input {
        font-size: 13px !important;
        padding: 8px 12px !important;
        height: 36px !important;
        line-height: 36px !important;
        margin: 0 !important;
    }

    .search-btn {
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Compact cart icon on mobile */
    .header-icons {
        flex-shrink: 0 !important;
    }

    .header-icons .cart-link {
        width: 36px !important;
        height: 36px !important;
    }

    .header-icons .cart-link svg {
        width: 18px !important;
        height: 18px !important;
    }

    .header-icons .cart-count {
        width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
        top: -4px !important;
        right: -4px !important;
    }

    /* Hide promo bar on mobile to save space */
    .promo-bar {
        font-size: 10px !important;
        padding: 5px 0 !important;
    }

    /* Card grid adjustments - PROPER 2-COLUMN GRID */
    .products-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }

    .product-card {
        margin: 0 !important;
        border-radius: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    /* Section padding adjustments - COMPACT ON MOBILE */
    .product-section,
    .trust-section,
    .youtube-section,
    .reviews-section {
        padding: 15px 0 !important;
        margin: 0 !important;
    }

    /* Concern section - minimal padding */
    .concern-section {
        padding: 10px 0 !important;
        margin: 0 !important;
    }

    /* Section headers - compact */
    .section-header {
        margin-bottom: 10px !important;
        padding: 0 10px !important;
    }

    .section-title {
        font-size: 20px !important;
    }

    /* Category grid mobile */
    .categories-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }

    .category-circle {
        width: 55px !important;
        height: 55px !important;
    }

    .category-icon {
        font-size: 22px !important;
    }

    .category-name {
        font-size: 10px !important;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    /* Touch-friendly buttons */
    .add-to-cart-btn,
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        font-size: 13px !important;
    }

    /* Hero banner mobile */
    .hero-banner {
        border-radius: 0 !important;
        margin: 0 !important;
    }

    /* Smooth scrolling for app feel */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Pull to refresh - standard behavior */
    body {
        overscroll-behavior-y: auto;
    }

    /* Account sidebar mobile */
    .account-layout {
        grid-template-columns: 1fr !important;
    }

    .account-sidebar {
        margin-bottom: 20px;
    }

    .account-nav {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 8px !important;
    }

    .account-nav a {
        flex: 1;
        min-width: calc(50% - 8px);
        text-align: center;
        justify-content: center !important;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .products-row {
        grid-template-columns: 1fr !important;
    }

    .mobile-bottom-nav .nav-item {
        padding: 5px 10px;
    }
}

/* Safe area for notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-bottom-nav {
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }

    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
}

/* ============================================
   CART SIDE-DRAWER & OVERLAY
   ============================================ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    z-index: 100001;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

.cart-drawer.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--premium-green);
}

.close-drawer {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    transition: var(--transition-smooth);
}

.close-drawer:hover {
    color: var(--primary-cyan);
    transform: rotate(90deg);
}

.drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.drawer-footer {
    padding: 24px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.drawer-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.drawer-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.view-cart-btn {
    width: 100%;
    padding: 14px;
    background: white;
    border: 2px solid var(--premium-green);
    color: var(--premium-green);
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

.checkout-btn-fast {
    width: 100%;
    padding: 14px;
    background: var(--premium-green);
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

.checkout-btn-fast:hover {
    background: var(--primary-cyan);
    transform: translateY(-2px);
}

/* ============================================
   PRODUCT PAGE ENHANCEMENTS (Tabs & Related)
   ============================================ */
.tabs-container {
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.tab-header {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    scrollbar-width: none;
}

.tab-header::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 20px 0;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.tab-btn.active {
    color: var(--premium-green);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-cyan);
    border-radius: 2px 2px 0 0;
}

.tab-content {
    padding: 40px 0;
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--premium-green);
}

.tab-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/*Related Products*/
.related-products {
    padding: 80px 0;
    background: #fcfdfb;
}

/* ============================================
   SOCIAL PROOF - Purchase Popups
   ============================================ */
.purchase-popup {
    position: fixed;
    bottom: 90px;
    left: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100002;
    transform: translateX(-150%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 320px;
    border-left: 4px solid var(--primary-cyan);
}

.purchase-popup.show {
    transform: translateX(0);
}

.popup-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.popup-info {
    flex: 1;
}

.popup-text {
    font-size: 12px;
    line-height: 1.4;
    color: #555;
}

.popup-text strong {
    color: var(--premium-green);
}

.popup-time {
    font-size: 10px;
    color: #aaa;
    margin-top: 4px;
    display: block;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges-inline {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #444;
    background: #f5fdf9;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 175, 239, 0.1);
    transition: var(--transition-smooth);
}

.badge-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.badge-icon {
    font-size: 16px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: 900px;
    margin: 40px auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: var(--transition-smooth);
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 24px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--premium-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: var(--transition-smooth);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 300px;
}

/* ============================================
   NEW UTILITIES - Wishlist, Scroll Reveal, Sticky
   ============================================ */

/* Wishlist Button in Product Card */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    color: #888;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    background: white;
}

.wishlist-btn.active {
    color: #ff4757;
    background: white;
}

.wishlist-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile - disable reveal animation to ensure products are always visible */
@media (max-width: 768px) {
    .reveal {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Sticky Add to Cart (Mobile) */
.sticky-add-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-add-bar.active {
    transform: translateY(0);
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-info img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

.sticky-title {
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.sticky-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--premium-green);
}

.sticky-btn {
    background: var(--primary-cyan);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
}

@media (max-width: 768px) {
    .product-card .wishlist-btn {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   MOBILE BOTTOM NAVIGATION - ULTRA PREMIUM
   ============================================ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 20px;
    /* Floating look */
    left: 15px;
    right: 15px;
    height: 70px;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    display: none;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
    z-index: 99999;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 24px !important;
    padding: 0 10px !important;
    padding-bottom: env(safe-area-inset-bottom) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #4b5563 !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 14px;
    border-radius: 16px;
    width: 60px;
}

.mobile-bottom-nav .nav-item svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.mobile-bottom-nav .nav-item span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-bottom-nav .nav-item.active {
    color: #1B4332 !important;
    background: rgba(27, 67, 50, 0.08);
    /* Soft brand tint */
    transform: translateY(-5px);
}

.mobile-bottom-nav .nav-item.active svg {
    transform: scale(1.1);
    stroke: #1B4332;
}

.mobile-bottom-nav .nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    width: 5px;
    height: 5px;
    background: #1B4332;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(27, 67, 50, 0.5);
}

/* Badge for Cart in Bottom Nav */
.mobile-bottom-nav .nav-item .cart-badge {
    position: absolute;
    top: 5px;
    right: 8px;
    background: #FF4D4D;
    color: white;
    font-size: 9px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(255, 77, 77, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
    }
}

/* ============================================
   RESPONSIVE HEADER OPTIMIZATIONS
   ============================================ */
@media (max-width: 768px) {
    .main-header {
        height: 65px !important;
        padding: 0;
    }

    .header-row {
        padding: 0 15px !important;
    }

    .logo-img {
        max-height: 40px !important;
    }

    .search-bar {
        position: static !important;
        flex: 1 !important;
        margin: 0 10px !important;
        max-width: none !important;
        border: 1px solid #eee !important;
        height: 38px !important;
    }

    .search-input {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }

    .search-bar .search-btn {
        width: 40px !important;
        padding: 0 !important;
    }

    .pincode-selector {
        display: none !important;
        /* Move to mobile menu later if needed */
    }

    .mobile-bottom-nav {
        display: flex;
    }

    .header-icons .login-btn {
        display: none !important;
    }

    .header-icons .app-btn {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    /* Fixed spacing for bottom nav */
    body {
        padding-bottom: 75px !important;
    }
}

/* Mobile Menu Toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Horizontal Scroll Fixes */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}


/* Micro-animations */
.product-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn {
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.add-to-cart-btn:active {
    transform: scale(0.95);
}

.add-to-cart-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.add-to-cart-btn:active::after {
    animation: ripple 0.4s ease-out;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Theme Toggle Button Style */
#themeToggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
}

#themeToggle:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-cyan);
}

.dark-mode #themeToggle {
    color: #ff9f43;
    /* Sun icon color in dark mode */
}

.dark-mode #themeToggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Category Grid Premium Enhancements */
.category-section {
    padding: 40px 0;
    background: #fff;
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100px;
}

.category-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: #f8fcf5;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-item:hover .category-circle {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.category-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-align: center;
    transition: color 0.3s ease;
}

.category-item:hover .category-name {
    color: var(--primary-cyan);
}

@media (max-width: 768px) {
    .category-section {
        padding: 20px 0;
    }

    .category-grid {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 15px;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        flex-shrink: 0;
        width: 75px;
    }

    .category-circle {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .category-name {
        font-size: 11px;
    }
}

/* Products Row Fix for Mobile - PROPER 2-COLUMN GRID */
@media (max-width: 768px) {
    .products-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        overflow: visible !important;
        padding: 10px !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .products-row .product-card {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        flex-shrink: 1 !important;
        overflow: hidden !important;
    }

    /* Product title must not overflow */
    .products-row .product-title {
        width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
}

/* Product Gallery Enhancements */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: transparent !important;
    /* Overriding base background to use container style */
    padding: 0 !important;
}

.main-image-container {
    background: var(--off-white);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    aspect-ratio: 1/1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.thumbnail-list {
    display: flex;
    gap: 12px;
    padding: 5px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
}

.thumbnail-list::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 12px;
    background: var(--off-white);
    padding: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.thumbnail-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(0, 175, 239, 0.3);
}

.thumbnail-item.active {
    border-color: var(--primary-cyan);
    background: white;
    box-shadow: var(--shadow-md);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .thumbnail-item {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }
}

/* Modern Footer - Kapiva/Mamaearth Inspired */
.modern-footer {
    background: #ffffff;
    padding: 70px 0 40px;
    font-family: 'Josefin Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-top: 4px solid #7CA03C;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

/* Brand Column */
.footer-brand-col .footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-address {
    color: #2c2c2c;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: #7CA03C;
    stroke-width: 2.5px;
}

/* Links Column */
.footer-links-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.link-group h4 {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 25px;
    color: #000;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.2s;
}

.link-group ul li a:hover {
    color: #2D5016;
}

/* Newsletter Column */
.footer-newsletter-col h4 {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 25px;
    color: #000;
}

.newsletter-input-group {
    display: flex;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
}

.newsletter-input-group button {
    background: #2D5016;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.newsletter-input-group button:hover {
    background: #3d6b1f;
}

.newsletter-input-group button svg {
    width: 16px;
    height: 16px;
    color: white;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icon:hover {
    background: #2D5016;
    border-color: #2D5016;
}

.social-icon svg {
    width: 16px;
    height: 16px;
    color: #666;
}

.social-icon:hover svg {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
}

.partners-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.partner-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-label {
    font-size: 14px;
    color: #444;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-logos {
    display: flex;
    gap: 12px;
}

.payment-badge {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-badge img {
    max-height: 18px;
    max-width: 50px;
    object-fit: contain;
}

.badge-meesho img {
    max-width: 70px;
}

/* Policies Row */
.policies-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-left a,
.policy-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.policy-left a:hover,
.policy-links a:hover {
    color: #2D5016;
}

.policy-links {
    display: flex;
    gap: 20px;
}

@media (max-width: 992px) {}

@media (max-width: 576px) {}