/* Custom Variables */
:root {
    --primary-blue: #0077BE;
    --secondary-blue: #E0F2FE;
}

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.hindi-font {
    font-family: 'Tiro Devanagari Hindi', serif;
}

/* Navbar Styles */
.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Components */
.product-card:hover .bottle-img-v1 {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

.btn-outline {
    width: 100%;
    padding: 0.5rem 0;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: outline 0.2s;
}

.form-input:focus {
    outline: 2px solid var(--primary-blue);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 10px; }