/* ===== CSS Variables & Design System ===== */
:root {
    /* Colors - Indian Grocery Palette */
    --saffron: #FF6B2C;
    --saffron-dark: #E85A1B;
    --saffron-light: #FF8C5A;
    --saffron-glow: rgba(255, 107, 44, 0.15);
    --green: #2E8B57;
    --green-dark: #1E6B3F;
    --green-light: #3DAF6E;
    --green-glow: rgba(46, 139, 87, 0.12);
    --gold: #DAA520;
    --gold-light: #F0C850;
    --cream: #FFF8F0;
    --cream-dark: #FDF0E0;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Gradients */
    --gradient-saffron: linear-gradient(135deg, #FF6B2C, #FF8C5A);
    --gradient-green: linear-gradient(135deg, #2E8B57, #3DAF6E);
    --gradient-hero: linear-gradient(135deg, #FF6B2C 0%, #E85A1B 50%, #C44A12 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF, #FFF8F0);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-saffron: 0 8px 30px rgba(255, 107, 44, 0.25);
    --shadow-green: 0 8px 30px rgba(46, 139, 87, 0.2);

    /* Typography */
    --font-telugu: 'Noto Sans Telugu', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-telugu);
    color: var(--gray-800);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

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

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 44, 0.1);
    transition: var(--transition-base);
    height: 70px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    height: 64px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--saffron);
}

.nav-logo i {
    font-size: 1.3rem;
    background: var(--gradient-saffron);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo span {
    background: var(--gradient-saffron);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--saffron);
    background: var(--saffron-glow);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    position: relative;
    transition: var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: var(--transition-base);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 140, 90, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(46, 139, 87, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-particle 8s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) scale(1.5); opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.hero-title-accent {
    color: var(--gold-light);
    text-shadow: 0 0 40px rgba(240, 200, 80, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-tagline i {
    color: var(--gold-light);
    font-size: 0.9em;
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

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

.hero-feature-divider {
    width: 2px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator i {
    display: block;
    margin-top: 4px;
    font-size: 1rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-telugu);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--white);
    color: var(--saffron);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--cream);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-call {
    background: var(--gradient-saffron);
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-saffron);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 44, 0.35);
}

.btn-whatsapp-small {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-whatsapp-small:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

.btn-directions {
    background: var(--gradient-green);
    color: white;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    box-shadow: var(--shadow-green);
}

.btn-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(46, 139, 87, 0.3);
}

.btn-wholesale {
    background: white;
    color: var(--green);
    font-weight: 700;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-wholesale:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===== Wholesale Banner ===== */
.wholesale-banner {
    background: var(--gradient-green);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.wholesale-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wholesale-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.wholesale-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.wholesale-text {
    text-align: left;
}

.wholesale-text h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.wholesale-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--saffron-glow);
    color: var(--saffron);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== Products Section ===== */
.products {
    padding: var(--section-padding);
    background: var(--cream);
}

.category {
    margin-bottom: 50px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.category-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

.category-subtitle {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 400;
    margin-left: 8px;
}

.category-note {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--green);
    background: var(--green-glow);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-base);
    position: relative;
}

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

.product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--saffron);
    transition: var(--transition-base);
}

.product-placeholder.rice {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: var(--green);
}

.product-placeholder i {
    font-size: 2.5rem;
    opacity: 0.7;
}

.product-placeholder span {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.8;
}

.product-card:hover .product-placeholder {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-saffron);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 107, 44, 0.3);
}

.product-badge.premium {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.3);
}

.product-info {
    padding: 16px 20px 20px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.product-name-en {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--saffron);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.products-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--saffron-light);
}

.products-cta p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.products-cta .btn-primary {
    background: var(--gradient-saffron);
    color: white;
    box-shadow: var(--shadow-saffron);
}

.products-cta .btn-primary:hover {
    box-shadow: 0 12px 35px rgba(255, 107, 44, 0.35);
}

/* ===== About Section ===== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--saffron);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--saffron-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 107, 44, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--saffron-light);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: var(--saffron-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    font-size: 1.2rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--saffron);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--section-padding);
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-base);
}

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

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--saffron-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    display: block;
    margin-bottom: 10px;
}

.contact-phone:hover {
    color: var(--saffron);
}

.contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-card-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-map {
    position: sticky;
    top: 90px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
}

.map-wrapper iframe {
    display: block;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.footer-brand h3 i {
    color: var(--saffron);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--saffron);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--saffron);
    padding-left: 6px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--gray-400);
    display: flex;
    gap: 8px;
    line-height: 1.6;
}

.footer-contact p i {
    color: var(--saffron);
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    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 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-base);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-800);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    pointer-events: none;
}

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

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: var(--gradient-saffron);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-saffron);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 44, 0.35);
}

/* ===== 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);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

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

    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Navigation Mobile */
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 6px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        align-items: stretch;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 12px 18px;
        font-size: 1.05rem;
        border-radius: var(--radius-md);
    }

    /* Hero Mobile */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 100px 16px 60px;
    }

    .hero-features {
        gap: 12px;
    }

    .hero-feature-divider {
        display: none;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Wholesale */
    .wholesale-content {
        flex-direction: column;
        text-align: center;
    }

    .wholesale-text {
        text-align: center;
    }

    /* Products */
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-note {
        margin-left: 0;
    }

    /* About */
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 160px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 18px 14px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 16px;
        right: 16px;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        bottom: 16px;
        left: 16px;
        font-size: 0.9rem;
    }
}

/* ===== Print Styles ===== */
@media print {
    .navbar, .whatsapp-float, .back-to-top, .hero-scroll-indicator {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
    }

    body {
        color: black;
        background: white;
    }
}
