/* Funtime - Custom styles (Tailwind handles utilities via CDN) */
::-webkit-scrollbar {
    display: none;
}

.hero-gradient {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.products-dropdown {
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu {
    transition: transform 0.3s ease;
}

.mobile-menu-overlay {
    transition: opacity 0.2s ease;
}

.products-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#products-dropdown-bridge.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-products-content {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    z-index: 70;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: whatsapp-float-bounce 1.5s ease-in-out infinite;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    border: 2px solid rgba(37, 211, 102, 0.55);
    animation: whatsapp-ripple 1.6s ease-out infinite;
}

.whatsapp-float i {
    position: relative;
    z-index: 1;
    animation: whatsapp-icon-bob 1.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

@keyframes whatsapp-float-bounce {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
    }
}

@keyframes whatsapp-ripple {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

@keyframes whatsapp-icon-bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float,
    .whatsapp-float i {
        animation: none;
    }
}