.custom-product-display {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* إضافة مسافة بين المنتجات */
    justify-content: space-between;
}

.custom-product-card {
    width: 30%;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    background-color: #f9f9f9;
    box-sizing: border-box;
    text-align: center;
    transition: box-shadow .3s ease;
}

.custom-product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}

.custom-product-card .product-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.custom-product-card .product-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 5px;
}

.custom-product-card h3 {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.product-attributes {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
    border: 1px solid #ddd;
    table-layout: fixed;
}

.product-attributes td {
    padding: 5px;
    text-align: left;
    font-size: 14px;
}

.product-attributes td:first-child {
    width: 50%;
    font-weight: bold;
}

.product-attributes td:last-child {
    width: 50%;
}

.custom-product-card p {
    font-size: 16px;
    margin: 10px 0;
}

/* تعديل الزر Learn More ليأخذ نفس تصميم أزرار الموقع */
.custom-product-card .learn-more {
    display: inline-block;
    background-color: #0068c1; /* خلفية الزر - ثابتة */
    color: white; /* النص باللون الأبيض */
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.custom-product-card .learn-more:hover {
    background-color: #004b8d; /* خلفية الزر عند التمرير */
    color: white; /* النص عند التمرير */
}

/* إضافة مسافة بين الصفوف */
.row-separator {
    width: 100%;
    height: 20px;
}

@media (max-width: 768px) {
    .custom-product-card {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .custom-product-card {
        width: 100%;
    }
}
