/* Add custom CSS styles below */ 
/* ===== تنسيق شبكة المنتجات ===== */
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* ===== كرت المنتج ===== */
.product-item {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ===== صورة المنتج ===== */
.product-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #fff;
}

/* ===== اسم المنتج ===== */
.product-title {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    height: 40px;
    overflow: hidden;
}

/* ===== زر السلة ===== */
.btn-add-to-cart {
    width: 100%;
    border-radius: 30px;
    font-size: 13px;
    padding: 8px;
}

/* ===== الجوال ===== */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}