/* Removed import for Noto Naskh Arabic */

body {
    font-family: 'Rabar_038', serif;
    background-color: #f5f7fa;
}

/* Custom Scrollbar for Product Grid and Cart */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Category Filter Button Active State */
.category-btn.active {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* Cart Item Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.cart-item {
    animation: slideIn 0.3s ease-out forwards;
}
