﻿
/* تحسين شكل الكروت على الموبايل */
@media (max-width: 576px) {
    .product-card-img {
        height: 150px; /* تقليل حجم الصورة للموبايل */
        object-fit: contain;
    }

    .card-title {
        font-size: 0.9rem; /* تصغير الخط قليلاً */
    }

    .price-section {
        font-size: 0.85rem;
    }
}

/* جعل الفلتر يظهر بشكل منبثق فوق المنتجات في الموبايل عند الفتح */
@media (max-width: 991px) {
    .filter-sidebar {
        margin-bottom: 20px;
    }
}


.product-card {
    padding: 0px;
    box-shadow: var(--shadow-sm);
    align-content: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    max-height: 400px;
    max-width: 300px;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    border: var(--border-transparent); /* إطار مخفي افتراضياً */
    transition: var(--transition);
}

    .product-card-img:hover {
        transform: translateY(-3px);
        box-shadow: 3px 5px 5px rgba(0,0,0,0.2);
    }

.product-card-data {
}


