/* ============================================
   RADHA KUND TULSI - ULTRA MODERN THEME
   Mobile-First, Glassmorphism, Luxury Design
   ============================================ */

/* CSS Variables - Modern Color Scheme */
:root {
    /* Primary Colors */
    --tulsi-green: #1B4332;
    --tulsi-green-light: #2D6A4F;
    --tulsi-green-dark: #0D3322;
    
    /* Accent Colors */
    --sacred-gold: #D4AF37;
    --sacred-gold-light: #F4D03F;
    --sacred-gold-dark: #B8860B;
    
    /* Background Colors */
    --bg-primary: #FAFAFA;
    --bg-secondary: #F5F5F5;
    --bg-cream: #FFFBF0;
    --bg-card: #FFFFFF;
    
    /* Text Colors */
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-muted: #999999;
    --text-white: #FFFFFF;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gradient-green: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    --gradient-hero: linear-gradient(135deg, rgba(27, 67, 50, 0.95) 0%, rgba(13, 51, 34, 0.98) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Typography */
    --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Inter', 'Poppins', sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   MODERN HEADER - Sticky & Glassmorphism
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.header-scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sacred-gold);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

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

.logo-main {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tulsi-green);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Navigation */
.main-nav {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sacred-gold);
    transition: var(--transition-normal);
}

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

.nav-menu a:hover {
    color: var(--tulsi-green);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-normal);
    position: relative;
}

.icon-btn:hover {
    background: var(--bg-secondary);
    color: var(--tulsi-green);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--sacred-gold);
    color: var(--text-primary);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* ============================================
   MOBILE MENU - Modern Slide-out
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-card);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    border-bottom: 1px solid var(--bg-secondary);
}

.mobile-nav-menu {
    padding: var(--space-md);
}

.mobile-nav-menu a {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--bg-secondary);
}

.mobile-nav-menu a:hover {
    color: var(--tulsi-green);
    padding-left: var(--space-sm);
}

/* Mobile Contact Bar */
.mobile-contact {
    padding: var(--space-md);
    background: var(--bg-cream);
    margin-top: var(--space-md);
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    font-weight: 500;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

/* ============================================
   HERO SECTION - Modern & Cinematic
   ============================================ */

.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-text {
    text-align: center;
    color: var(--text-white);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.hero-title span {
    color: var(--sacred-gold);
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--tulsi-green-dark);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    min-width: 200px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    min-width: 200px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--sacred-gold);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--sacred-gold);
    display: block;
}

.hero-stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: var(--radius-full);
    animation: float 6s ease-in-out infinite;
}

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

.hero-product {
    position: relative;
    z-index: 2;
    max-width: 350px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ============================================
   TRUST BAR - Floating Badges
   ============================================ */

.trust-bar {
    background: var(--bg-card);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--bg-secondary);
}

.trust-items {
    display: flex;
    overflow-x: auto;
    gap: var(--space-lg);
    padding: 0 var(--space-md);
    scrollbar-width: none;
}

.trust-items::-webkit-scrollbar {
    display: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--tulsi-green);
    flex-shrink: 0;
}

/* ============================================
   SECTIONS - Modern Layout
   ============================================ */

.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-suptitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sacred-gold-dark);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--tulsi-green);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ============================================
   CATEGORY CARDS - Modern Grid
   ============================================ */

.categories-section {
    background: var(--bg-cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    padding: 0 var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.category-card-modern {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

.category-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    aspect-ratio: 1;
    overflow: hidden;
}

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

.category-card-modern:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: var(--space-md);
    text-align: center;
}

.category-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tulsi-green);
    margin-bottom: 0.25rem;
}

.category-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   PRODUCT CARDS - Premium Design
   ============================================ */

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    padding: 0 var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.product-card-modern {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

.product-card-modern:hover {
    box-shadow: var(--shadow-md);
}

.product-badge-modern {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-sale {
    background: #E74C3C;
    color: white;
}

.badge-new {
    background: var(--tulsi-green);
    color: white;
}

.badge-bestseller {
    background: var(--sacred-gold);
    color: var(--tulsi-green-dark);
}

.product-wishlist {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-normal);
}

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

.product-image-modern {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info-modern {
    padding: var(--space-md);
}

.product-title-modern {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta-modern {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-rating svg {
    width: 14px;
    height: 14px;
    color: var(--sacred-gold);
}

.product-reviews {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-price-modern {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.price-sale {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tulsi-green);
}

.price-regular {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    padding: 0.875rem;
    background: var(--tulsi-green);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.btn-add-cart:hover {
    background: var(--tulsi-green-light);
}

/* ============================================
   WHY CHOOSE US - Features Grid
   ============================================ */

.features-section {
    background: var(--bg-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    padding: 0 var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: var(--gradient-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sacred-gold);
    font-size: 1.5rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tulsi-green);
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   TESTIMONIALS - Modern Carousel
   ============================================ */

.testimonials-section {
    background: var(--bg-primary);
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    gap: var(--space-md);
    padding: 0 var(--space-md);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: var(--bg-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--space-md);
    color: var(--sacred-gold);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    color: var(--tulsi-green);
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION - WhatsApp & Contact
   ============================================ */

.cta-section {
    background: var(--gradient-green);
    color: white;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: var(--transition-normal);
    min-width: 240px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    min-width: 240px;
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ============================================
   FOOTER - Modern Design
   ============================================ */

.footer-modern {
    background: var(--tulsi-green-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--space-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: 0 var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand-modern {
    max-width: 300px;
}

.footer-logo-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: var(--sacred-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tulsi-green-dark);
    font-size: 1.5rem;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--sacred-gold);
    color: var(--tulsi-green-dark);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-md);
}

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

.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--sacred-gold);
    padding-left: 0.5rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--sacred-gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md);
    margin-top: var(--space-2xl);
    text-align: center;
    font-size: 0.85rem;
}

.footer-payment {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    flex-wrap: wrap;
}

.payment-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
}

.whatsapp-float a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

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

.whatsapp-float .tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 10px;
    padding: 0.5rem 1rem;
    background: var(--tulsi-green);
    color: white;
    font-size: 0.8rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   ANIMATIONS & REVEAL EFFECTS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (min-width: 768px) {
    .header-inner {
        padding: 1rem var(--space-lg);
    }
    
    .main-nav {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-subtitle {
        margin: 0 0 var(--space-lg) 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .hero-stats {
        justify-content: flex-start;
        text-align: left;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 45%;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
    .header-inner {
        padding: 1rem var(--space-xl);
    }
    
    .logo-main {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: var(--space-2xl);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
    }
    
    .products-grid-modern {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
    }
    
    .testimonial-card {
        flex: 0 0 30%;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* ============================================
   RESPONSIVE DESIGN - LARGE SCREENS
   ============================================ */

@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-product {
        max-width: 450px;
    }
    
    .hero-glow {
        width: 400px;
        height: 400px;
    }
}

/* ============================================
   LOADING STATES & UTILITIES
   ============================================ */

.skeleton {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-primary) 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Search Modal Styles */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
}

.search-form {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.search-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 1rem;
    background: var(--bg-cream);
}

.search-form input:focus {
    outline: none;
    border-color: var(--tulsi-green);
}

.search-form button {
    background: var(--tulsi-green);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .search-modal {
        padding-top: 80px;
    }
    
    .search-modal-content {
        width: 95%;
        padding: var(--space-lg);
    }
    
    /* My Account Mobile */
    .my-account-full .account-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .my-account-full .account-sidebar {
        position: static !important;
        padding: 20px !important;
    }
    
    .my-account-full .account-main {
        padding: 20px !important;
        min-height: auto !important;
    }
    
    .my-account-full .account-nav ul li a {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }
    
    .my-account-full .dashboard-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    
    .my-account-full .dashboard-stats > div {
        padding: 15px 10px !important;
    }
    
    .my-account-full .dashboard-stats .stat-number {
        font-size: 1.5rem !important;
    }
    
    .my-account-full .dashboard-stats .stat-label {
        font-size: 0.7rem !important;
    }
    
    /* Tables Mobile */
    .my-account-full .orders-table,
    .woocommerce-orders-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .my-account-full .orders-table th,
    .my-account-full .orders-table td,
    .woocommerce-orders-table th,
    .woocommerce-orders-table td {
        padding: 10px !important;
        font-size: 0.8rem !important;
    }
    
    /* Address Cards Mobile */
    .my-account-full .addresses-grid {
        grid-template-columns: 1fr !important;
    }
    
    .my-account-full .address-card {
        padding: 20px !important;
    }
    
    /* Forms Mobile */
    .my-account-full .form-row {
        margin-bottom: 15px !important;
    }
    
    .my-account-full input,
    .my-account-full select,
    .my-account-full textarea {
        padding: 12px !important;
        font-size: 16px !important; /* Prevent zoom on iOS */
    }
    
    /* Checkout Mobile */
    .checkout-divine .checkout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .checkout-divine .order-review-column {
        position: static !important;
        order: -1;
    }
    
    .checkout-divine .form-row {
        margin-bottom: 15px !important;
    }
    
    .checkout-divine input,
    .checkout-divine select {
        padding: 14px !important;
        font-size: 16px !important;
    }
    
    /* Payment Methods Mobile */
    .wc_payment_methods .payment_method {
        padding: 15px !important;
    }
    
    .wc_payment_methods .payment_method label {
        font-size: 0.9rem !important;
    }
    
    /* Thank You Page Mobile */
    .thankyou-divine .order-details-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .thankyou-divine .customer-details-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Hero Section Mobile */
    .page-hero {
        padding: 40px 20px !important;
    }
    
    .page-hero h1 {
        font-size: 1.8rem !important;
    }
    
    /* Buttons Mobile */
    .my-account-full button,
    .checkout-divine #place_order,
    .woocommerce-Button {
        width: 100% !important;
        padding: 16px !important;
        font-size: 1rem !important;
    }
    
    /* Header Actions Mobile */
    .header-actions {
        gap: 10px !important;
    }
    
    .header-actions .icon-btn {
        width: 36px !important;
        height: 36px !important;
    }
    
    /* Trust Badges Mobile */
    .trust-badges {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }
}

/* Small Mobile (phones < 480px) */
@media (max-width: 480px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Stats cards smaller */
    .my-account-full .dashboard-stats {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .my-account-full .dashboard-stats > div {
        padding: 12px 8px !important;
    }
    
    .my-account-full .dashboard-stats .stat-number {
        font-size: 1.3rem !important;
    }
    
    .my-account-full .dashboard-stats .stat-label {
        font-size: 0.65rem !important;
    }
    
    /* Make sidebar nav horizontal scroll */
    .my-account-full .account-nav ul {
        display: flex !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding-bottom: 10px !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .my-account-full .account-nav ul li {
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .my-account-full .account-nav ul li a {
        white-space: nowrap !important;
        padding: 10px 15px !important;
    }
    
    /* User info smaller */
    .my-account-full .user-info .avatar-placeholder {
        width: 50px !important;
        height: 50px !important;
    }
    
    .my-account-full .user-info h3 {
        font-size: 1rem !important;
    }
    
    .my-account-full .user-info p {
        font-size: 0.75rem !important;
    }
    
    /* Thank you page */
    .thankyou-divine .success-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .thankyou-divine .success-icon svg {
        width: 35px !important;
        height: 35px !important;
    }
    
    .thankyou-divine h1 {
        font-size: 1.6rem !important;
    }
    
    /* Order items smaller */
    .thankyou-divine .order-item {
        padding: 12px !important;
    }
    
    .thankyou-divine .order-item-image {
        width: 50px !important;
        height: 50px !important;
    }
    
    /* Action buttons stack */
    .thankyou-divine .action-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .thankyou-divine .action-buttons a {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .my-account-full .dashboard-stats .stat-number {
        font-size: 1.1rem !important;
    }
    
    .my-account-full .dashboard-stats .stat-label {
        font-size: 0.6rem !important;
    }
}

/* ============================================
   WOOCOMMERCE MY ACCOUNT - MODERN STYLING
   ============================================ */

/* Account Page Layout */
.woocommerce-account .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl);
}

/* Account Navigation Sidebar */
.woocommerce-MyAccount-navigation {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-navigation-link {
    margin-bottom: 0.5rem;
}

.woocommerce-MyAccount-navigation-link a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.woocommerce-MyAccount-navigation-link a:hover {
    background: var(--bg-cream);
    color: var(--tulsi-green);
    border-color: var(--border-color);
    transform: translateX(4px);
}

/* Add icons using CSS pseudo-elements */
.woocommerce-MyAccount-navigation-link--dashboard a::before {
    content: '☐';
    font-size: 1.2rem;
    margin-right: 0.25rem;
}

.woocommerce-MyAccount-navigation-link--orders a::before {
    content: '📦';
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

.woocommerce-MyAccount-navigation-link--downloads a::before {
    content: '⬇';
    font-size: 1.2rem;
    margin-right: 0.25rem;
}

.woocommerce-MyAccount-navigation-link--edit-address a::before {
    content: '📍';
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

.woocommerce-MyAccount-navigation-link--edit-account a::before {
    content: '👤';
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    content: '→';
    font-size: 1.2rem;
    margin-right: 0.25rem;
}

.woocommerce-MyAccount-navigation-link.is-active a {
    background: linear-gradient(135deg, var(--tulsi-green) 0%, var(--tulsi-green-dark) 100%);
    color: white !important;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    position: relative;
}

.woocommerce-MyAccount-navigation-link.is-active a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--sacred-gold);
    border-radius: 0 2px 2px 0;
}

/* Account Content Area */
.woocommerce-MyAccount-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    min-height: 500px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure all content sections are visible */
.woocommerce-MyAccount-content > div,
.woocommerce-MyAccount-content > section,
.woocommerce-MyAccount-content > form {
    display: block !important;
    visibility: visible !important;
}

/* Addresses specific styling */
.woocommerce-MyAccount-content .addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.woocommerce-MyAccount-content .addresses .col-1,
.woocommerce-MyAccount-content .addresses .col-2 {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 2px solid var(--border-color);
}

/* Form Styling */
.woocommerce-EditAccountForm,
.woocommerce-address-fields,
.woocommerce-form-login,
.woocommerce-form-register {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border-color);
}

.woocommerce-EditAccountForm .form-row,
.woocommerce-address-fields .form-row,
.woocommerce-form-login .form-row {
    margin-bottom: var(--space-md);
}

.woocommerce-EditAccountForm label,
.woocommerce-address-fields label,
.woocommerce-form-login label {
    display: block;
    font-weight: 600;
    color: var(--tulsi-green-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"],
.woocommerce-address-fields input,
.woocommerce-address-fields select,
.woocommerce-form-login input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.woocommerce-EditAccountForm input:focus,
.woocommerce-address-fields input:focus,
.woocommerce-form-login input:focus {
    outline: none;
    border-color: var(--tulsi-green);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

/* Buttons */
.woocommerce-EditAccountForm button,
.woocommerce-address-fields button,
.woocommerce-form-login button,
.woocommerce-form-register button {
    background: linear-gradient(135deg, var(--tulsi-green) 0%, var(--tulsi-green-dark) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.woocommerce-EditAccountForm button:hover,
.woocommerce-address-fields button:hover,
.woocommerce-form-login button:hover,
.woocommerce-form-register button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Orders Table */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: var(--space-md);
}

.woocommerce-orders-table thead {
    background: var(--bg-cream);
}

.woocommerce-orders-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--tulsi-green-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.woocommerce-orders-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-orders-table__cell-order-number a {
    color: var(--tulsi-green);
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-orders-table__cell-order-number a:hover {
    text-decoration: underline;
}

/* Status Badges */
.woocommerce-orders-table__cell-order-status {
    font-weight: 500;
}

.woocommerce-orders-table__cell-order-status .woocommerce-Button {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

/* Page Header */
.woocommerce-account .page-header,
.woocommerce-account .entry-header {
    background: linear-gradient(135deg, var(--tulsi-green-dark) 0%, var(--tulsi-green) 100%);
    padding: var(--space-xl) 0;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.woocommerce-account .page-title,
.woocommerce-account .entry-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: var(--space-sm);
}

/* Address Cards */
.u-columns.woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.woocommerce-Address {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 2px solid var(--border-color);
    position: relative;
}

.woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-Address-title h3 {
    font-family: var(--font-display);
    color: var(--tulsi-green-dark);
    font-size: 1.25rem;
    margin: 0;
}

.woocommerce-Address-title .edit {
    background: var(--tulsi-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce-Address-title .edit:hover {
    background: var(--tulsi-green-dark);
}

.address {
    color: var(--text-primary);
    line-height: 1.7;
}

/* Dashboard Welcome */
.woocommerce-MyAccount-content > p:first-child {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--sacred-gold);
}

/* Responsive Layout */
@media (min-width: 769px) {
    .woocommerce-account .woocommerce {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: var(--space-xl);
        align-items: start;
    }
    
    .woocommerce-MyAccount-navigation {
        position: sticky;
        top: 100px;
    }
}

@media (max-width: 768px) {
    /* Force mobile layout - override inline styles */
    .account-layout,
    div[style*="grid-template-columns: 280px"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .woocommerce-account .woocommerce {
        padding: var(--space-md);
    }
    
    .woocommerce-MyAccount-content {
        padding: var(--space-md);
    }
    
    .woocommerce-orders-table {
        display: block;
        overflow-x: auto;
    }
    
    .u-columns.woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
    
    /* My Account Mobile Overrides */
    .my-account-full .account-sidebar,
    div[class*="account-sidebar"] {
        position: static !important;
        order: -1 !important;
        padding: 20px !important;
        width: 100% !important;
    }
    
    .my-account-full .account-nav ul,
    nav[class*="account-nav"] ul {
        display: flex !important;
        overflow-x: auto !important;
        gap: 10px !important;
        padding-bottom: 10px !important;
        -webkit-overflow-scrolling: touch !important;
        flex-wrap: nowrap !important;
    }
    
    .my-account-full .account-nav ul li {
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .my-account-full .account-nav ul li a {
        white-space: nowrap !important;
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
    }
    
    .my-account-full .account-main,
    div[class*="account-main"] {
        padding: 20px !important;
        min-height: auto !important;
        width: 100% !important;
    }
    
    /* Stats Grid Mobile */
    .my-account-full .dashboard-stats,
    div[class*="dashboard-stats"] {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    
    .my-account-full .dashboard-stats > div {
        padding: 15px 8px !important;
    }
    
    /* Checkout Mobile */
    .checkout-divine .checkout,
    form.checkout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .checkout-divine .order-review-column {
        position: static !important;
        order: -1 !important;
    }
    
    /* Thank You Page Mobile */
    .thankyou-divine .order-details-grid,
    div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .thankyou-divine .customer-details-grid,
    div[style*="grid-template-columns: 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Small Mobile < 480px */
@media (max-width: 480px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .my-account-full .page-hero h1 {
        font-size: 1.6rem !important;
    }
    
    .my-account-full .dashboard-stats > div {
        padding: 12px 6px !important;
    }
    
    .my-account-full .dashboard-stats .stat-number {
        font-size: 1.3rem !important;
    }
    
    .my-account-full .dashboard-stats .stat-label {
        font-size: 0.65rem !important;
    }
    
    .my-account-full .user-info h3 {
        font-size: 1rem !important;
    }
    
    .my-account-full .user-info p {
        font-size: 0.75rem !important;
    }
}

/* Login/Register Forms */
.woocommerce-form-login,
.woocommerce-form-register {
    max-width: 450px;
    margin: 0 auto;
}

.woocommerce-form-login .woocommerce-LostPassword {
    text-align: center;
    margin-top: var(--space-md);
}

.woocommerce-form-login .woocommerce-LostPassword a {
    color: var(--tulsi-green);
    text-decoration: none;
    font-weight: 500;
}

.woocommerce-form-login .woocommerce-LostPassword a:hover {
    text-decoration: underline;
}

/* Logout Link */
.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #dc3545;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* ============================================
   MOBILE RESPONSIVE - MY ACCOUNT & CHECKOUT
   ============================================ */

@media (max-width: 768px) {
    /* My Account Grid */
    .my-account-full .account-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .my-account-full .account-sidebar {
        position: static !important;
        order: -1;
        padding: 20px !important;
    }
    
    .my-account-full .account-nav ul {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .my-account-full .account-nav ul li {
        flex-shrink: 0;
        margin-bottom: 0 !important;
    }
    
    .my-account-full .account-nav ul li a {
        white-space: nowrap;
        padding: 10px 15px !important;
        font-size: 0.85rem !important;
    }
    
    .my-account-full .account-main {
        padding: 20px !important;
        min-height: auto !important;
    }
    
    /* Stats Grid */
    .my-account-full .dashboard-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
    }
    
    .my-account-full .dashboard-stats > div {
        padding: 15px 10px !important;
    }
    
    .my-account-full .dashboard-stats .stat-number {
        font-size: 1.5rem !important;
    }
    
    .my-account-full .dashboard-stats .stat-label {
        font-size: 0.7rem !important;
    }
    
    /* Tables */
    .my-account-full .orders-table,
    .woocommerce-orders-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Address Cards */
    .my-account-full .addresses-grid,
    .u-columns.woocommerce-Addresses {
        grid-template-columns: 1fr !important;
    }
    
    /* Forms */
    .my-account-full input,
    .my-account-full select,
    .my-account-full textarea {
        padding: 12px !important;
        font-size: 16px !important;
    }
    
    /* Checkout */
    .checkout-divine .checkout {
        grid-template-columns: 1fr !important;
    }
    
    .checkout-divine .order-review-column {
        position: static !important;
        order: -1;
    }
    
    .checkout-divine .form-row {
        margin-bottom: 15px !important;
    }
    
    .checkout-divine input,
    .checkout-divine select {
        padding: 14px !important;
        font-size: 16px !important;
    }
    
    /* Payment Methods */
    .wc_payment_methods .payment_method {
        padding: 15px !important;
    }
    
    /* Thank You Page */
    .thankyou-divine .order-details-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .thankyou-divine .customer-details-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Hero */
    .page-hero {
        padding: 40px 20px !important;
    }
    
    .page-hero h1 {
        font-size: 1.8rem !important;
    }
    
    /* Buttons */
    .my-account-full button,
    .checkout-divine #place_order,
    .woocommerce-Button {
        width: 100% !important;
        padding: 16px !important;
    }
}

/* Small Mobile < 480px */
@media (max-width: 480px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .my-account-full .page-hero h1 {
        font-size: 1.5rem !important;
    }
    
    .my-account-full .dashboard-stats .stat-number {
        font-size: 1.2rem !important;
    }
    
    .my-account-full .dashboard-stats .stat-label {
        font-size: 0.6rem !important;
    }
    
    .my-account-full .user-info .avatar-placeholder {
        width: 50px !important;
        height: 50px !important;
    }
    
    .thankyou-divine .success-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .thankyou-divine h1 {
        font-size: 1.4rem !important;
    }
}
/* Product grids should behave like marketplace shelves, not stretch a single item full width. */
.rkt-product-grid,
.woocommerce ul.products,
.woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(180px, 220px)) !important;
    justify-content: center !important;
    align-items: start !important;
    gap: var(--space-lg) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    list-style: none !important;
}

.rkt-product-grid .product-card,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: 100% !important;
    max-width: 220px !important;
    margin: 0 !important;
    float: none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
    content: none !important;
}

@media (max-width: 767px) {
    .rkt-product-grid,
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        justify-content: stretch !important;
    }

    .rkt-product-grid .product-card,
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        max-width: none !important;
    }

    .rkt-product-grid .product-info,
    .woocommerce ul.products li.product .product-info {
        padding: 12px !important;
    }

    .rkt-product-grid .product-name,
    .woocommerce ul.products li.product .product-name {
        font-size: 0.9rem !important;
        line-height: 1.35 !important;
    }
}

@media (min-width: 768px) {
    .rkt-product-grid,
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(auto-fill, minmax(190px, 230px)) !important;
    }

    .rkt-product-grid .product-card,
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        max-width: 230px !important;
    }
}

/* Mobile hero spacing for the Tulsi homepage so the badge clears the fixed header. */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

@media (max-width: 767px) {
    .hero-divine {
        padding-top: 86px !important;
        min-height: auto !important;
    }

    .hero-divine .hero-content {
        padding-top: var(--space-lg) !important;
    }

    .hero-divine .hero-kicker {
        max-width: calc(100vw - 32px) !important;
        white-space: normal !important;
        line-height: 1.35 !important;
        font-size: 12px !important;
        padding: 10px 16px !important;
        margin-top: 0 !important;
    }
}

/* Category-page subcategory shelf. */
.category-subcollections {
    background: var(--bg-cream);
    padding: var(--space-xl) 0 var(--space-lg);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

.category-subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 190px));
    justify-content: center;
    gap: var(--space-md);
}

.subcategory-card-modern {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(27, 67, 50, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.subcategory-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.55);
}

.subcategory-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.12), rgba(212, 175, 55, 0.18));
    overflow: hidden;
}

.subcategory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subcategory-image span {
    font-size: 2rem;
}

.subcategory-info {
    padding: 12px;
    text-align: center;
}

.subcategory-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 4px;
    color: var(--tulsi-green-dark);
}

.subcategory-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 767px) {
    .category-subcollections {
        padding: var(--space-lg) 0;
    }

    .category-subcollections .section-header {
        margin-bottom: var(--space-md);
    }

    .category-subcategories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 0 12px;
    }

    .subcategory-info h3 {
        font-size: 0.92rem;
    }
}

/* Homepage hero image slider. */
.hero-slider {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

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

.hero-slider .hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--tulsi-green-dark);
    box-shadow: var(--shadow-sm);
    transform: translateY(-50%);
}

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

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

.hero-slider-arrow span {
    font-size: 1.8rem;
    line-height: 1;
    margin-top: -2px;
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 5;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(27, 67, 50, 0.28);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-slider-dots button.is-active {
    width: 24px;
    background: var(--sacred-gold);
}

@media (max-width: 767px) {
    .hero-slider {
        width: min(100%, 340px) !important;
        aspect-ratio: 1 / 1 !important;
        margin: 0 auto;
    }

    .hero-slider-arrow {
        width: 32px;
        height: 32px;
    }

    .hero-slider-arrow--prev {
        left: 6px;
    }

    .hero-slider-arrow--next {
        right: 6px;
    }

    .hero-slider-dots {
        bottom: 10px;
    }
}
