body {
    font-family: 'Tajawal', sans-serif;
    scroll-behavior: smooth;
    padding-bottom: 70px; /* Space for mobile bottom nav */
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

.product-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.modal {
    transition: opacity 0.3s ease;
}

.hidden-view {
    display: none;
}

input[type="number"]::-webkit-inner-spin-button {
    display: none;
}

/* Mobile Overlay Menu Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

#mobile-overlay-menu a {
    position: relative;
    padding: 10px 20px;
}

#mobile-overlay-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #c48e74; /* brand-500 */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#mobile-overlay-menu a:hover::after {
    width: 100%;
}

/* Thank You Page Animation */
@keyframes bounceOnce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.animate-bounce-once {
    animation: bounceOnce 0.6s ease forwards;
}
