/* Custom Styles for ONLY RED SHOP */

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cc0000;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

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

/* Hero Text Glow */
.text-glow {
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Transition for FAQ */
.faq-item i {
    transition: transform 0.3s ease;
}

.faq-item.active i {
    transform: rotate(180deg);
}

.faq-item div:last-child {
    transition: all 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.faq-item.active div:last-child {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}
