/* --- تخصيص بطاقات المنتجات (السلة / المتجر) --- */

.product-card {
    background-color: #F5F1E9; /* خلفية البطاقة */
    border: 2px solid #A68A64; /* حدود البطاقة بلون متوافق */
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: #D4AF37; /* تغيير لون الحدود عند التمرير */
}

/* صورة المنتج */
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #D4AF37; /* إطار حول الصورة */
}

/* اسم المنتج */
.product-card .product-name {
    color: #1C2526; /* لون النص الرئيسي */
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.4;
}

/* السعر */
.product-card .product-price {
    color: #D4AF37; /* لون الذهب */
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

/* زر "أضف للسلة" */
.product-card .add-to-cart-btn {
    background-color: #A68A64; /* لون الخلفية */
    color: #F5F1E9; /* لون النص */
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    width: 100%;
    margin-top: auto; /* يدفع الزر لأدنى البطاقة */
}

.product-card .add-to-cart-btn:hover {
    background-color: #D4AF37; /* لون الذهب عند التمرير */
    color: #1C2526; /* لون النص عند التمرير */
    transform: scale(1.05);
}

/* أيقونة القلب (المفضلة) */
.product-card .heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #C0C0C0; /* رمادي فاتح */
    font-size: 20px;
    cursor: pointer;
    background-color: rgba(245, 241, 233, 0.8); /* خلفية شفافة */
    border-radius: 50%;
    padding: 5px;
}

.product-card .heart-icon:hover {
    color: #4169E1; /* أزرق بارز عند التمرير */
}