/* General Styles */
body {
    font-family: 'Vazir', Tahoma, sans-serif;
    padding-top: 70px;
}

/* Product Card */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

/* Category Card */
.category-card {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .category-card img {
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .category-card:hover img {
        transform: scale(1.05);
    }

/* Rating */
.rating {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Badges */
.badge {
    font-weight: 500;
}

/* RTL Fixes */
.dropdown-menu {
    text-align: right;
}

/* Admin Dashboard */
.card {
    border: none;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-nav {
        padding-top: 1rem;
    }

    .product-card {
        margin-bottom: 1.5rem;
    }
}
