/* Custom CSS for the e-commerce project */

/* RTL specific adjustments */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Custom colors */
.bg-primary-custom {
    background-color: #3498db;
}

/* Product cards */
.product-card {
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Category sidebar */
.category-sidebar {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}

/* Footer styling */
footer {
    margin-top: 50px;
}

/* Cart badge */
.cart-badge {
    position: relative;
    top: -8px;
    right: -8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 15px;
    }
}
