/**
 * تنسيقات متجاوبة لصور المنتجات
 * هذا الملف يحتوي على تنسيقات لضمان عرض صور المنتجات بشكل مناسب على جميع أحجام الشاشات
 */

/* تنسيقات لبطاقات المنتجات */
.product-card {
    overflow: hidden;
    margin-bottom: 20px;
}

/* تنسيقات أساسية للصور */
.product-card-image {
    width: 100%;
    height: 200px;
    background-color: #ffffff;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 8px;
    position: relative;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

/* تنسيقات الصور داخل الحاوية */
.product-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
}

/* تنسيقات الكاروسيل */
.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* تنسيقات الصور البديلة */
.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #6c757d;
}

/* تنسيقات للأجهزة المختلفة */

/* الأجهزة الكبيرة (الكمبيوتر) */
@media (min-width: 992px) {
    .product-card-image {
        height: 250px;
    }
}

/* الأجهزة المتوسطة (التابلت) */
@media (min-width: 576px) and (max-width: 991px) {
    .product-card-image {
        height: 220px;
    }
}

/* الأجهزة الصغيرة (الجوالات) */
@media (max-width: 575px) {
    .product-card-image {
        height: 150px;
        margin-bottom: 5px;
        padding: 5px;
        background-color: #ffffff;
    }
    
    .product-card-image img,
    .carousel-item img {
        max-width: 100%;
        max-height: 140px;
        width: auto;
        height: auto;
    }
    
    /* تحسين عرض الكاروسيل على الجوال */
    .carousel-inner,
    .carousel-item {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* تحسين أزرار الكاروسيل على الجوال */
    .carousel-control-prev,
    .carousel-control-next {
        width: 25px;
        height: 25px;
        opacity: 0.8;
    }
    
    .product-card {
        margin-bottom: 10px;
    }
    
    .card-body {
        padding: 0.5rem;
    }
    
    .card-title {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .card-text {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    /* Asegurar que la imagen de la tarjeta se muestre correctamente */
    .card-img-top {
        max-height: 140px;
        width: auto;
        height: auto;
        margin: auto;
    }
}

/* تأثيرات إضافية */
.product-card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* تنسيقات لعرض القائمة */
.product-list-item .img-fluid {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: auto;
    display: block;
}

/* تحسين حاوية الصورة في عرض القائمة */
.product-list-item .col-md-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #ffffff;
}

/* تحسينات إضافية لعرض القائمة على الجوال */
@media (max-width: 575px) {
    .product-list-item .img-fluid {
        max-height: 120px;
        width: auto;
        height: auto;
    }
    
    .product-list-item .col-md-3 {
        padding: 5px;
        min-height: 130px;
        background-color: #ffffff;
    }
}

/* تنسيقات لصفحة تفاصيل المنتج */
.product-gallery-main img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.product-gallery-thumbs img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}
