/* =============================================
   AyurSakti - Premium Ayurvedic E-Commerce Design System
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-green: #2D6A4F;
    --light-green: #52B788;
    --mint-green: #95D5B2;
    --pale-green: #D8F3DC;
    --deep-green: #1B4332;
    --gold: #D4AF37;
    --light-gold: #F5E6A3;
    --earth-brown: #8B6914;
    --purple: #7B2D8E;
    --light-purple: #E8DCFF;
    --cream: #FFF8E7;
    --warm-cream: #FEFAE0;
    --dark-bg: #1A2E1A;
    --text-dark: #1A1A2E;
    --text-medium: #4A4A4A;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --off-white: #F8FAF8;
    --border-light: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(45, 106, 79, 0.08);
    --shadow-md: 0 8px 25px rgba(45, 106, 79, 0.12);
    --shadow-lg: 0 15px 50px rgba(45, 106, 79, 0.18);
    --shadow-xl: 0 25px 60px rgba(45, 106, 79, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 25px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pale-green); }
::-webkit-scrollbar-thumb { background: var(--primary-green); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--deep-green); }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(45, 106, 79, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 5%;
    box-shadow: 0 4px 30px rgba(45, 106, 79, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover { transform: scale(1.03); }

.nav-logo img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.nav-logo-text span {
    font-size: 0.65rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover { color: var(--primary-green); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary-green); }
.nav-links a.active::after { width: 100%; }

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

.nav-cart {
    position: relative;
    font-size: 1.3rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
}

.nav-cart:hover { color: var(--primary-green); transform: scale(1.1); }

.cart-badge {
    position: absolute;
    top: 0;
    right: -2px;
    background: linear-gradient(135deg, var(--gold), #e6c44d);
    color: var(--text-dark);
    font-size: 0.65rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.nav-whatsapp {
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.nav-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-green);
    background: none;
    border: none;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 1005;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

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

.mobile-nav a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--primary-green); }

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    background: none;
    border: none;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    margin-top: 75px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 8%;
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--warm-cream) 50%, rgba(232, 220, 255, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.15), transparent);
    border-radius: 50%;
    top: -250px;
    right: -200px;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    flex: 1;
    z-index: 2;
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(212, 175, 55, 0.15));
    color: var(--deep-green);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(45, 106, 79, 0.15);
}

.hero-badge i { color: var(--gold); }

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--deep-green), var(--primary-green), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-rishi-container {
    position: relative;
    width: 420px;
    height: 420px;
}

.hero-rishi-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(45, 106, 79, 0.3));
    animation: floatHero 4s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-rishi-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), rgba(82, 183, 136, 0.1), transparent);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Floating leaf particles */
.leaf-particle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: floatLeaf 12s linear infinite;
    z-index: 1;
}

@keyframes floatLeaf {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--deep-green));
    color: white;
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 106, 79, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #e6c44d);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-cart {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: white;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(82, 183, 136, 0.3);
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(82, 183, 136, 0.5);
}

.btn-buy {
    background: linear-gradient(135deg, var(--gold), var(--earth-brown));
    color: white;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section {
    padding: 5rem 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-green), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* =============================================
   FEATURE CARDS
   ============================================= */
.features-section { background: var(--white); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(216, 243, 220, 0.3), rgba(254, 250, 224, 0.3));
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(45, 106, 79, 0.15);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon { transform: rotateY(360deg); }

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--deep-green);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-section {
    background: linear-gradient(135deg, rgba(216, 243, 220, 0.15), rgba(254, 250, 224, 0.2));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pale-green), var(--warm-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
}

.product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    color: var(--text-light);
    z-index: 5;
}

.product-wishlist:hover { color: #ef4444; background: white; }

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(45, 106, 79, 0.9));
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.product-card:hover .product-overlay { transform: translateY(0); }

.product-info {
    padding: 1.5rem;
}

.product-category-tag {
    font-size: 0.75rem;
    color: var(--light-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-short-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.product-sale-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section { background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(27, 67, 50, 0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay p {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
    background: linear-gradient(135deg, var(--deep-green), var(--primary-green));
    color: white;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.why-section .section-title h2 {
    -webkit-text-fill-color: white;
    background: none;
}

.why-section .section-title p { color: rgba(255,255,255,0.7); }
.why-section .section-divider { background: linear-gradient(90deg, var(--gold), var(--light-green)); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.why-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--off-white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    color: var(--pale-green);
    font-family: serif;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author-info h4 {
    font-size: 1rem;
    color: var(--deep-green);
}

.testimonial-author-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* =============================================
   NEWSLETTER / CTA
   ============================================= */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-green), var(--deep-green));
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 280px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--text-dark);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 8% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 0.7rem; }

.footer-links a {
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover { color: var(--gold); transform: translateX(5px); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* =============================================
   PAGE HEADERS (Products, Cart, etc.)
   ============================================= */
.page-header {
    margin-top: 75px;
    padding: 3rem 8%;
    background: linear-gradient(135deg, var(--pale-green), var(--warm-cream));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.1), transparent);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumb a { color: var(--primary-green); }
.breadcrumb a:hover { text-decoration: underline; }

/* =============================================
   PRODUCTS PAGE - FILTERS
   ============================================= */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.filter-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-light);
    background: white;
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.sort-select {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--text-medium);
    background: white;
    cursor: pointer;
    outline: none;
}

.sort-select:focus { border-color: var(--primary-green); }

.search-box {
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    outline: none;
    min-width: 200px;
}

.search-box input:focus { border-color: var(--primary-green); }

/* =============================================
   PRODUCT DETAILS PAGE
   ============================================= */
.product-detail-section {
    padding: 2rem 8%;
    margin-top: 75px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--pale-green), var(--warm-cream));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-main-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-main-image:hover img { transform: scale(1.05); }

.product-thumbnails {
    display: flex;
    gap: 0.8rem;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: var(--pale-green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-thumb.active, .product-thumb:hover {
    border-color: var(--primary-green);
}

.product-thumb img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-detail-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-detail-category {
    color: var(--light-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-detail-price .sale {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.product-detail-price .original {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-detail-price .discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.product-detail-desc {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    white-space: pre-line;
}

.product-benefits {
    margin-bottom: 2rem;
}

.product-benefits h3 {
    font-size: 1.1rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.6rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.benefit-item i {
    color: var(--light-green);
    font-size: 0.9rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    font-weight: 600;
    margin-right: 1rem;
    color: var(--text-dark);
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-light);
    background: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-dark);
}

.qty-btn:first-of-type { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.qty-btn:last-of-type { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.qty-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--border-light);
    border-left: none;
    border-right: none;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    outline: none;
}

.detail-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-actions .btn { flex: 1; justify-content: center; }

/* =============================================
   CART PAGE
   ============================================= */
.cart-section {
    padding: 2rem 8%;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
}

.cart-items { min-width: 0; }

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    align-items: center;
}

.cart-item:hover { box-shadow: var(--shadow-md); }

.cart-item-img {
    width: 100px;
    height: 100px;
    background: var(--pale-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    flex-shrink: 0;
}

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

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-info h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.cart-item-info .price {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 0.5rem;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-light);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.cart-qty-btn:hover { background: var(--primary-green); color: white; }

.cart-qty-val {
    width: 40px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-left: none;
    border-right: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-subtotal {
    text-align: right;
    min-width: 80px;
}

.cart-item-subtotal .subtotal {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.cart-item-remove:hover { transform: scale(1.2); }

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cart-summary h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--pale-green);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.cart-summary-row.total {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
    border-top: 2px solid var(--pale-green);
    padding-top: 1rem;
    margin-top: 1rem;
}

.cart-summary-row.discount { color: var(--light-green); }

.promo-input-group {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.promo-input-group input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    outline: none;
    text-transform: uppercase;
}

.promo-input-group input:focus { border-color: var(--primary-green); }

.promo-input-group button {
    padding: 0.7rem 1.2rem;
    border: none;
    background: var(--primary-green);
    color: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    transition: var(--transition);
}

.promo-input-group button:hover { background: var(--deep-green); }

.promo-message {
    font-size: 0.8rem;
    margin-top: -0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

.promo-message.success { background: rgba(82, 183, 136, 0.1); color: var(--primary-green); }
.promo-message.error { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.cart-summary .btn { width: 100%; justify-content: center; margin-top: 1rem; }

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.cart-empty i {
    font-size: 4rem;
    color: var(--mint-green);
    margin-bottom: 1.5rem;
}

.cart-empty h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.checkout-section {
    padding: 2rem 8%;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.checkout-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.checkout-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* =============================================
   ORDER SUCCESS
   ============================================= */
.success-section {
    padding: 3rem 8%;
    text-align: center;
    margin-top: 75px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.tracking-display {
    background: var(--pale-green);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem auto;
    display: inline-block;
}

.tracking-display span {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-green);
    letter-spacing: 2px;
}

/* =============================================
   ORDER TRACKING
   ============================================= */
.track-section {
    padding: 3rem 8%;
}

.track-form {
    max-width: 500px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 0.8rem;
}

.track-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    outline: none;
}

.track-form input:focus { border-color: var(--primary-green); }

.order-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.order-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--pale-green);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--border-light);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--border-light);
}

.timeline-item.active .timeline-dot {
    background: var(--primary-green);
    box-shadow: 0 0 0 2px var(--primary-green);
}

.timeline-item.completed .timeline-dot {
    background: var(--light-green);
    box-shadow: 0 0 0 2px var(--light-green);
}

.timeline-item h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.timeline-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 280px;
    animation: slideInRight 0.4s ease;
    border-left: 4px solid var(--primary-green);
}

.toast.success { border-left-color: var(--primary-green); }
.toast.error { border-left-color: #ef4444; }
.toast.info { border-left-color: #3b82f6; }

.toast i {
    font-size: 1.2rem;
}

.toast.success i { color: var(--primary-green); }
.toast.error i { color: #ef4444; }
.toast.info i { color: #3b82f6; }

.toast p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1); }
}

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

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE DESIGN - COMPLETE OVERHAUL
   ============================================= */

/* === TABLET LANDSCAPE (1024px) === */
@media (max-width: 1024px) {
    .hero h2 { font-size: 2.8rem; }
    .hero-rishi-container { width: 350px; height: 350px; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-gallery { position: relative; top: auto; }
    .checkout-grid { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: relative; top: auto; }
    .section { padding: 4rem 6%; }
    .navbar { padding: 0.7rem 4%; }
    .footer { padding: 3rem 5% 2rem; }
}

/* === TABLET PORTRAIT (768px) === */
@media (max-width: 768px) {
    /* --- NAV MOBILE --- */
    .nav-links { display: none; }
    .nav-whatsapp { display: none; }
    .mobile-menu-btn { display: block; }
    .navbar { padding: 0.6rem 4%; }
    .nav-logo img { height: 42px; }
    .nav-logo-text h1 { font-size: 1.25rem; }
    .nav-logo-text span { font-size: 0.6rem; letter-spacing: 1.5px; }
    .nav-cart { font-size: 1.2rem; padding: 6px; }
    .cart-badge { width: 18px; height: 18px; font-size: 0.6rem; }
    
    /* --- HERO MOBILE --- */
    .hero {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 2rem 5% 3rem;
        gap: 1.5rem;
        margin-top: 65px;
    }
    .hero::before { width: 300px; height: 300px; top: -150px; right: -100px; }
    .hero::after { width: 200px; height: 200px; }
    .hero h2 { font-size: 2rem; line-height: 1.2; }
    .hero-tagline { font-size: 1rem; }
    .hero p { max-width: 100%; margin: 0 auto 1.5rem; font-size: 0.95rem; }
    .hero-badge { font-size: 0.78rem; padding: 0.5rem 1.2rem; }
    .hero-stats { justify-content: center; gap: 1.5rem; }
    .hero-stat-value { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.7rem; }
    .cta-buttons { justify-content: center; }
    .cta-buttons .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
    .hero-rishi-container { width: 260px; height: 260px; order: -1; }
    .hero-rishi-glow { width: 230px; height: 230px; }
    .leaf-particle { display: none; }
    
    /* --- SECTIONS MOBILE --- */
    .section { padding: 3rem 5%; }
    .section-title h2 { font-size: 1.8rem; }
    .section-title p { font-size: 0.9rem; }
    .section-divider { width: 60px; }
    
    /* --- FEATURES MOBILE --- */
    .features-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .feature-card { padding: 1.8rem 1.5rem; }
    .feature-icon { width: 60px; height: 60px; font-size: 1.4rem; }
    .feature-card h3 { font-size: 1.1rem; }
    .feature-card p { font-size: 0.88rem; }
    
    /* --- PRODUCTS GRID MOBILE --- */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .product-card { border-radius: 16px; }
    .product-img-wrapper { height: 180px; padding: 1rem; }
    .product-info { padding: 1rem; }
    .product-category-tag { font-size: 0.65rem; letter-spacing: 1px; margin-bottom: 0.2rem; }
    .product-name { font-size: 0.9rem; margin-bottom: 0.3rem; -webkit-line-clamp: 2; }
    .product-short-desc { display: none; }
    .product-sale-price { font-size: 1.1rem; }
    .product-original-price { font-size: 0.8rem; }
    .product-price-row { margin-bottom: 0.6rem; gap: 0.5rem; }
    .product-actions { flex-direction: column; gap: 0.4rem; }
    .product-actions .btn { padding: 0.55rem 0.8rem; font-size: 0.75rem; }
    .product-overlay { display: none; }
    .product-discount-badge { top: 8px; left: 8px; font-size: 0.68rem; padding: 0.2rem 0.6rem; }
    
    /* --- GALLERY MOBILE --- */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
    .gallery-item { border-radius: 12px; }
    .gallery-item-overlay { padding: 1rem; }
    .gallery-item-overlay p { font-size: 0.8rem; }
    
    /* --- WHY SECTION MOBILE --- */
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .why-item { padding: 1.5rem 1rem; }
    .why-icon { font-size: 2rem; }
    .why-item h3 { font-size: 1rem; }
    .why-item p { font-size: 0.82rem; }
    
    /* --- TESTIMONIALS MOBILE --- */
    .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-text { font-size: 0.88rem; margin-bottom: 1rem; }
    .testimonial-quote { font-size: 2rem; }
    
    /* --- NEWSLETTER MOBILE --- */
    .newsletter-section h2 { font-size: 1.8rem; }
    .newsletter-section p { font-size: 0.9rem; }
    .newsletter-form input { min-width: 220px; padding: 0.8rem 1.2rem; font-size: 0.9rem; }
    .newsletter-form button { padding: 0.8rem 1.5rem; font-size: 0.85rem; }
    
    /* --- FOOTER MOBILE --- */
    .footer { padding: 3rem 5% 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; text-align: left; }
    .footer-col h3 { font-size: 1.05rem; margin-bottom: 1rem; }
    .footer-col p { font-size: 0.82rem; }
    .footer-links a { font-size: 0.82rem; }
    .footer-social { justify-content: flex-start; gap: 0.8rem; margin-top: 1rem; }
    .footer-social a { width: 38px; height: 38px; font-size: 1rem; }
    .footer-contact-item { font-size: 0.82rem; justify-content: flex-start; }
    .footer-bottom { font-size: 0.78rem; }
    
    /* --- PAGE HEADER MOBILE --- */
    .page-header { margin-top: 65px; padding: 2rem 5%; }
    .page-header h1 { font-size: 1.7rem; }
    .page-header p { font-size: 0.88rem; }
    .breadcrumb { font-size: 0.78rem; flex-wrap: wrap; justify-content: center; }
    
    /* --- FILTERS MOBILE --- */
    .filter-bar { flex-direction: column; align-items: stretch; padding: 1rem; gap: 0.8rem; }
    .filter-categories { 
        justify-content: flex-start; 
        overflow-x: auto; 
        flex-wrap: nowrap; 
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    .filter-btn { white-space: nowrap; flex-shrink: 0; padding: 0.4rem 1rem; font-size: 0.78rem; }
    .sort-select { width: 100%; padding: 0.6rem 0.8rem; font-size: 0.82rem; }
    .search-box { width: 100%; }
    .search-box input { min-width: 0; width: 100%; font-size: 0.82rem; }
    .search-box form { width: 100%; }
    
    /* --- PRODUCT DETAIL MOBILE --- */
    .product-detail-section { padding: 1.5rem 5%; margin-top: 65px; }
    .product-detail-grid { gap: 1.5rem; }
    .product-main-image { height: 320px; padding: 1.5rem; border-radius: 16px; }
    .product-detail-info h1 { font-size: 1.5rem; }
    .product-detail-category { font-size: 0.72rem; letter-spacing: 1.5px; }
    .product-detail-price { gap: 0.8rem; flex-wrap: wrap; }
    .product-detail-price .sale { font-size: 1.8rem; }
    .product-detail-price .original { font-size: 1.1rem; }
    .product-detail-price .discount { font-size: 0.72rem; }
    .product-detail-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
    .product-benefits h3 { font-size: 1rem; }
    .benefit-item { font-size: 0.85rem; }
    .quantity-selector { margin-bottom: 1.2rem; }
    .qty-btn { width: 38px; height: 38px; }
    .qty-input { height: 38px; width: 55px; }
    .detail-actions { flex-direction: column; gap: 0.8rem; }
    .detail-actions .btn { padding: 0.9rem 1.5rem; font-size: 0.95rem; }
    
    /* --- CART MOBILE --- */
    .cart-section { padding: 1.5rem 5%; }
    .cart-item { flex-direction: row; text-align: left; padding: 1rem; gap: 1rem; }
    .cart-item-img { width: 80px; height: 80px; }
    .cart-item-info h3 { font-size: 0.88rem; }
    .cart-item-info .price { font-size: 0.95rem; }
    .cart-item-qty { margin-top: 0.4rem; }
    .cart-qty-btn { width: 28px; height: 28px; font-size: 0.9rem; }
    .cart-qty-val { width: 35px; height: 28px; font-size: 0.82rem; }
    .cart-item-subtotal { min-width: auto; text-align: right; }
    .cart-item-subtotal .subtotal { font-size: 0.95rem; }
    .cart-item-remove { font-size: 1rem; }
    .cart-summary { border-radius: 16px; padding: 1.5rem; }
    .cart-summary h2 { font-size: 1.3rem; }
    .promo-input-group input { font-size: 0.82rem; padding: 0.6rem 0.8rem; }
    .promo-input-group button { font-size: 0.82rem; padding: 0.6rem 1rem; }
    .cart-empty { padding: 3rem 1.5rem; }
    .cart-empty i { font-size: 3rem; }
    .cart-empty h2 { font-size: 1.3rem; }
    
    /* --- CHECKOUT MOBILE --- */
    .checkout-section { padding: 1.5rem 5%; }
    .checkout-form { padding: 1.5rem; border-radius: 16px; }
    .checkout-form h2 { font-size: 1.2rem; }
    .form-group label { font-size: 0.82rem; }
    .form-group input, .form-group textarea, .form-group select { padding: 0.7rem 0.9rem; font-size: 0.85rem; }
    .form-row { grid-template-columns: 1fr; }
    
    /* --- ORDER SUCCESS MOBILE --- */
    .success-section { padding: 2rem 5%; margin-top: 65px; }
    .success-section h1 { font-size: 1.7rem; }
    .success-icon { width: 80px; height: 80px; font-size: 2.5rem; }
    .tracking-display { padding: 0.8rem 1.5rem; }
    .tracking-display span { font-size: 1.1rem; }
    
    /* --- TRACK ORDER MOBILE --- */
    .track-section { padding: 1.5rem 5%; }
    .track-form { flex-direction: column; }
    .track-form input { padding: 0.8rem 1rem; font-size: 0.9rem; }
    .order-timeline { padding-left: 25px; }
    .timeline-item { padding-left: 25px; }
    .timeline-dot { width: 18px; height: 18px; left: -22px; }
    .timeline-item h3 { font-size: 0.92rem; }
    .timeline-item p { font-size: 0.8rem; }
    
    /* --- TOAST MOBILE --- */
    .toast-container { bottom: 70px; right: 10px; left: 10px; }
    .toast { min-width: auto; font-size: 0.85rem; padding: 0.8rem 1rem; }
    .toast i { font-size: 1rem; }
    
    /* --- WHATSAPP FLOAT MOBILE --- */
    .whatsapp-float { bottom: 15px; left: 15px; width: 48px; height: 48px; font-size: 1.4rem; }
    
    /* --- BUTTONS GLOBAL MOBILE --- */
    .btn { padding: 0.7rem 1.5rem; font-size: 0.88rem; }
    .btn-lg { padding: 0.85rem 2rem; font-size: 0.92rem; }
    .btn-sm { padding: 0.45rem 1rem; font-size: 0.78rem; }
}

/* === SMALL PHONES (480px) === */
@media (max-width: 480px) {
    .navbar { padding: 0.5rem 3%; }
    .nav-logo img { height: 36px; }
    .nav-logo-text h1 { font-size: 1.1rem; }
    .nav-logo-text span { font-size: 0.55rem; }
    .nav-logo { gap: 8px; }
    
    .hero { padding: 1.5rem 4% 2.5rem; margin-top: 58px; }
    .hero h2 { font-size: 1.6rem; }
    .hero-tagline { font-size: 0.88rem; }
    .hero p { font-size: 0.88rem; margin-bottom: 1.2rem; }
    .hero-badge { font-size: 0.7rem; padding: 0.4rem 1rem; margin-bottom: 1rem; }
    .hero-stats { flex-direction: row; gap: 1rem; }
    .hero-stat-value { font-size: 1.3rem; }
    .hero-stat-label { font-size: 0.65rem; }
    .hero-rishi-container { width: 200px; height: 200px; }
    .hero-rishi-glow { width: 180px; height: 180px; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
    
    .section { padding: 2.5rem 4%; }
    .section-title h2 { font-size: 1.5rem; }
    .section-title p { font-size: 0.82rem; }
    .section-title { margin-bottom: 2rem; }
    
    .feature-card { padding: 1.5rem 1.2rem; }
    .feature-icon { width: 55px; height: 55px; font-size: 1.3rem; margin-bottom: 1rem; }
    .feature-card h3 { font-size: 1rem; }
    .feature-card p { font-size: 0.82rem; }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .product-card { border-radius: 12px; }
    .product-img-wrapper { height: 150px; padding: 0.8rem; }
    .product-info { padding: 0.8rem; }
    .product-category-tag { font-size: 0.6rem; }
    .product-name { font-size: 0.82rem; margin-bottom: 0.2rem; }
    .product-sale-price { font-size: 1rem; }
    .product-original-price { font-size: 0.72rem; }
    .product-price-row { margin-bottom: 0.5rem; gap: 0.4rem; }
    .product-actions .btn { padding: 0.5rem 0.6rem; font-size: 0.68rem; border-radius: 8px; }
    .product-discount-badge { font-size: 0.6rem; padding: 0.15rem 0.5rem; top: 6px; left: 6px; }
    
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .gallery-item { border-radius: 10px; }
    
    .why-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
    .why-item { padding: 1.2rem 0.8rem; }
    .why-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
    .why-item h3 { font-size: 0.88rem; }
    .why-item p { font-size: 0.75rem; }
    
    .testimonial-card { padding: 1.2rem; }
    .testimonial-avatar { width: 40px; height: 40px; font-size: 1rem; }
    .testimonial-author-info h4 { font-size: 0.9rem; }
    
    .newsletter-section h2 { font-size: 1.5rem; }
    .newsletter-section p { font-size: 0.82rem; margin-bottom: 1.5rem; }
    .newsletter-form input { min-width: 100%; padding: 0.75rem 1rem; font-size: 0.85rem; }
    .newsletter-form button { width: 100%; padding: 0.75rem; }
    
    .footer { padding: 2.5rem 4% 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .footer-links a { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-contact-item { justify-content: center; }
    
    .page-header { margin-top: 58px; padding: 1.5rem 4%; }
    .page-header h1 { font-size: 1.4rem; }
    .page-header p { font-size: 0.82rem; }
    .breadcrumb { font-size: 0.72rem; }
    
    .filter-bar { padding: 0.8rem; }
    .filter-btn { padding: 0.35rem 0.8rem; font-size: 0.72rem; }
    .sort-select { font-size: 0.78rem; }
    
    .product-detail-section { padding: 1rem 4%; margin-top: 58px; }
    .product-main-image { height: 260px; padding: 1rem; border-radius: 14px; }
    .product-detail-info h1 { font-size: 1.3rem; }
    .product-detail-price .sale { font-size: 1.6rem; }
    .product-detail-price .original { font-size: 1rem; }
    .product-detail-desc { font-size: 0.82rem; }
    .benefit-item { font-size: 0.8rem; gap: 8px; }
    .detail-actions .btn { padding: 0.85rem 1.2rem; font-size: 0.88rem; }
    
    .cart-section { padding: 1rem 4%; }
    .cart-item { padding: 0.8rem; gap: 0.8rem; }
    .cart-item-img { width: 65px; height: 65px; }
    .cart-item-info h3 { font-size: 0.82rem; }
    .cart-item-info .price { font-size: 0.88rem; }
    .cart-summary { padding: 1.2rem; border-radius: 14px; }
    .cart-summary h2 { font-size: 1.15rem; }
    .cart-empty { padding: 2.5rem 1rem; }
    .cart-empty i { font-size: 2.5rem; margin-bottom: 1rem; }
    .cart-empty h2 { font-size: 1.2rem; }
    .cart-empty p { font-size: 0.85rem; }
    
    .checkout-section { padding: 1rem 4%; }
    .checkout-form { padding: 1.2rem; border-radius: 14px; }
    .checkout-form h2 { font-size: 1.1rem; }
    
    .success-section { padding: 1.5rem 4%; margin-top: 58px; min-height: auto; }
    .success-section h1 { font-size: 1.4rem; }
    .success-icon { width: 70px; height: 70px; font-size: 2rem; }
    .tracking-display { padding: 0.7rem 1.2rem; }
    .tracking-display span { font-size: 1rem; letter-spacing: 1px; }
    
    .track-section { padding: 1rem 4%; }
    .track-form input { font-size: 0.82rem; padding: 0.7rem 0.8rem; }
    .timeline-item h3 { font-size: 0.85rem; }
    .timeline-item p { font-size: 0.75rem; }
    
    .btn { padding: 0.6rem 1.2rem; font-size: 0.82rem; }
    .btn-lg { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
    
    .mobile-nav a { font-size: 1.15rem; }
    .mobile-nav-close { font-size: 1.8rem; }
    
    .lightbox img { max-width: 95%; border-radius: 8px; }
    .lightbox-close { top: 10px; right: 15px; font-size: 2rem; }
}

/* === EXTRA SMALL (360px) === */
@media (max-width: 360px) {
    .navbar { padding: 0.4rem 2.5%; }
    .nav-logo img { height: 32px; }
    .nav-logo-text h1 { font-size: 0.95rem; }
    .nav-logo-text span { display: none; }
    .nav-logo { gap: 6px; }
    
    .hero { padding: 1.2rem 3% 2rem; margin-top: 52px; }
    .hero h2 { font-size: 1.4rem; }
    .hero-tagline { font-size: 0.8rem; }
    .hero p { font-size: 0.82rem; }
    .hero-rishi-container { width: 170px; height: 170px; }
    .hero-badge { font-size: 0.65rem; }
    
    .section { padding: 2rem 3%; }
    .section-title h2 { font-size: 1.3rem; }
    
    .products-grid { gap: 0.5rem; }
    .product-img-wrapper { height: 130px; }
    .product-info { padding: 0.6rem; }
    .product-name { font-size: 0.75rem; }
    .product-sale-price { font-size: 0.9rem; }
    .product-actions .btn { padding: 0.4rem 0.5rem; font-size: 0.62rem; }
    
    .page-header { margin-top: 52px; padding: 1.2rem 3%; }
    .page-header h1 { font-size: 1.2rem; }
    
    .cart-item-img { width: 55px; height: 55px; }
    .cart-item-info h3 { font-size: 0.75rem; }
    
    .footer { padding: 2rem 3% 1rem; }
}

/* === TOUCH DEVICE ENHANCEMENTS === */
@media (hover: none) and (pointer: coarse) {
    .product-overlay { display: none; }
    .product-card:hover { transform: none; }
    .product-card:active { transform: scale(0.98); }
    .feature-card:hover { transform: none; }
    .feature-card:active { transform: scale(0.98); }
    .why-item:hover { transform: none; }
    .testimonial-card:hover { transform: none; }
    .btn:hover { transform: none; }
    .btn:active { transform: scale(0.96); }
    .gallery-item-overlay { opacity: 1; background: linear-gradient(transparent 60%, rgba(27, 67, 50, 0.5)); }
}
