/* Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(22, 163, 74, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(22, 163, 74, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #16a34a, #047857);
}

.blob {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    animation: float 15s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(22, 163, 74, 0.2);
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes float3d {
    0% { transform: perspective(1000px) rotateY(0deg) translateY(0) rotateX(0deg); }
    25% { transform: perspective(1000px) rotateY(10deg) translateY(-10px) rotateX(5deg); }
    50% { transform: perspective(1000px) rotateY(0deg) translateY(-20px) rotateX(0deg); }
    75% { transform: perspective(1000px) rotateY(-10deg) translateY(-10px) rotateX(-5deg); }
    100% { transform: perspective(1000px) rotateY(0deg) translateY(0) rotateX(0deg); }
}

.bottle-3d-anim {
    animation: float3d 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
