/* Tomo POS - Custom Styles */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes steam {
    0% {
        opacity: 0;
        transform: translateY(0) scaleX(1);
    }
    15% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scaleX(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scaleX(0.8);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-bounce-slow {
    animation: bounceSlow 3s ease-in-out infinite;
}

.steam-1 {
    animation: steam 2s ease-in-out infinite;
}

.steam-2 {
    animation: steam 2s ease-in-out infinite 0.3s;
}

.steam-3 {
    animation: steam 2s ease-in-out infinite 0.6s;
}

/* FAQ Accordion */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

::-webkit-scrollbar-track {
    background: #faf8f3;
}

::-webkit-scrollbar-thumb {
    background: #d4943a;
    border-radius: 4px;
}

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

/* Selection color */
::selection {
    background: #d4943a;
    color: white;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #d4943a;
    outline-offset: 2px;
}

/* Navbar shadow on scroll */
#navbar.scrolled {
    box-shadow: 0 4px 20px rgba(61, 40, 23, 0.08);
}
