/* Add custom CSS styles below */ 
/* تنسيق كارت المنتج */
.product-item {
    background: linear-gradient(180deg, #d9a441, #b57e2a);
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease-in-out;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* عند المرور بالماوس */
.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* صورة المنتج */
.product-item img {
    background: #fff;
    padding: 15px;
    border-radius: 14px;
    margin-bottom: 15px;
}

/* اسم المنتج */
.product-title {
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
}

/* السعر */
.product-price {
    color: #fff !important;
    font-weight: bold;
}
/* إجبار الصور تكون مربعة */
.product-item img {
    width: 100% !important;
    height: 260px !important; /* ممكن تغير الارتفاع */
    object-fit: cover;
    border-radius: 14px;
}

/* تنسيق الكارت */
.product-item {
    background: #fff; /* خلفية أبيض */
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

/* تأثير عند المرور */
.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 28px rgba(0,0,0,0.12);
}

/* اسم المنتج */
.product-title {
    font-weight: 600 !important;
    margin-top: 10px;
}

/* السعر */
.product-price {
    font-weight: 700 !important;
    color: #222;
}