﻿
/* تصميم المنتج */
.single-product-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s;
    text-align: center;
}

.single-product-item:hover {
    transform: scale(1.05);
}

/* صورة المنتج */
.product-image {
    width: 100%;
    height: 200px; /* ارتفاع ثابت */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* اسم المنتج */
.product-title {
    font-family:Cairo;
    font-size: 18px;
    font-weight: bold;
    margin-top: 0px;
}

/* سعر المنتج */
.product-price {

    font-size: 16px;
    color: #f39c12;
    font-weight: bold;
}

/* زر الإضافة إلى السلة */
.cart-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #f39c12;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

    .cart-btn:hover {
        background: #e67e22;
    }

/* زر السلة الكبير */
.large-cart-btn {
    font-size: 20px;
    padding: 15px 25px;
    background: #f39c12;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

    .large-cart-btn:hover {
        
        background: #e67e22;
        transform: scale(1.1);
    }

/* تصغير المنتجات عند الهاتف */
@media (max-width: 767px) {
    .product-lists {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .col-sm-6 {
        flex: 0 0 48%;
        max-width: 48%;
        padding: 5px;
    }

    .single-product-item {
        width: 100%;
        padding: 0px;
    }

    .product-image {
        height: 150px; /* تقليل الارتفاع لضمان التناسق */
    }

    .product-title {
        font-family:Cairo;
        font-size: 16px;
    }

    .cart-btn {
        font-size: 10px;
       
    }
}


