         /* تصميم بطاقات المنتجات القديم */
        .product-item { border: 1px solid #ddd; border-radius: 6px; padding: 15px; text-align: center; transition: all 0.3s; position: relative; }
        .product-item:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        .product-item img { max-height: 180px; margin-bottom: 10px; border-radius: 4px; }
        .product-item h5 { font-size: 1.1rem; margin-bottom: 5px; font-weight: 600; }
        .product-item p { font-size: 1rem; color: #007bff; font-weight: bold; margin-bottom: 10px; }
        .add-to-cart-single { width: 100%; }
        .size-radio { display: none; }
        .size-label-option { display: inline-block; padding: 6px 10px; margin: 3px; border: 1px solid #ccc; border-radius: 4px; cursor: pointer; transition: all 0.3s; font-size: 0.875rem; }
        .size-radio:checked + .size-label-option { background-color: #007bff; color: #fff; border-color: #007bff; }
        .size-radio:disabled + .size-label-option { opacity: 0.5; cursor: not-allowed; text-decoration: line-through; background-color: #f8d7da; }
        .size-label-option.low-stock { border-color: #ffc107; background-color: #fff3cd; }
        .error-message { color: #dc3545; font-size: 0.8rem; display: none; margin-top: 3px; }
        .quantity-control { display: flex; justify-content: center; align-items: center; margin-top: 8px; }
        .quantity-input { width: 50px; text-align: center; border-radius: 4px; border: 1px solid #ccc; }
        .toast-container { position: fixed; top: 1rem; right: 1rem; z-index: 1055; }
        .product-section .row {
            display: flex;
            flex-wrap: wrap;
        }
        
        .product-item { 
            border: 1px solid #ddd; 
            border-radius: 8px; 
            padding: 15px; 
            text-align: center; 
            transition: all 0.3s; 
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%; /* لجعل جميع الكروت بنفس الارتفاع */
            justify-content: space-between;
        }
        
        .product-item:hover { 
            box-shadow: 0 6px 20px rgba(0,0,0,0.12); 
            transform: translateY(-5px);
        }
        
        .product-image-container {
            height: 200px; /* ارتفاع ثابت لجميع الصور */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            overflow: hidden;
            border-radius: 4px;
        }
        
        .product-item img { 
            max-height: 100%;
            max-width: 100%;
            object-fit: contain; /* للحفاظ على نسبة العرض إلى الارتفاع */
            border-radius: 4px;
        }
        
        .product-item h5 { 
            font-size: 1.1rem; 
            margin-bottom: 8px; 
            font-weight: 600;
            min-height: 2.8rem; /* ارتفاع ثابت لعناوين المنتجات */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-item .price { 
            font-size: 1.1rem; 
            color: #007bff; 
            font-weight: bold; 
            margin-bottom: 12px;
        }
        
        .product-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .add-to-cart-single { 
            width: 50%; 
            margin-top: 10px;
        }
        .add-to-Lover-Products { 
            width: 50%; 
            margin-top: 10px;
            background-color: #f9bf29; 
        }
        .size-radio { 
            display: none; 
        }
        
        .size-label-option { 
            display: inline-block; 
            padding: 6px 10px; 
            margin: 3px; 
            border: 1px solid #ccc; 
            border-radius: 4px; 
            cursor: pointer; 
            transition: all 0.3s; 
            font-size: 0.875rem; 
        }
        
        .size-radio:checked + .size-label-option { 
            background-color: #007bff; 
            color: #fff; 
            border-color: #007bff; 
        }
        
        .size-radio:disabled + .size-label-option { 
            opacity: 0.5; 
            cursor: not-allowed; 
            text-decoration: line-through; 
            background-color: #f8d7da; 
        }
        
        .size-label-option.low-stock { 
            border-color: #ffc107; 
            background-color: #fff3cd; 
        }
        
        .error-message { 
            color: #dc3545; 
            font-size: 0.8rem; 
            display: none; 
            margin-top: 3px; 
        }
        
        .quantity-control { 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            margin-top: 8px; 
        }
        
        .quantity-input { 
            width: 50px; 
            text-align: center; 
            border-radius: 4px; 
            border: 1px solid #ccc; 
            margin: 0 5px;
        }
        
        .toast-container { 
            position: fixed; 
            top: 1rem; 
            right: 1rem; 
            z-index: 1055; 
        }
        
        /* تحسينات للتصميم المتجاوب */
        @media (max-width: 768px) {
            .product-item {
                margin-bottom: 20px;
            }
            
            .product-image-container {
                height: 180px;
            }
        }
        .add-to-cart-single, 
        .add-to-Lover-Products {
            min-width: 45%; /* علشان الاتنين يبانوا متساويين */
        }
        .product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-content .action-buttons {
    margin-top: auto; /* يخلي الأزرار في أسفل الكرت */
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.product-item {
    display: flex;
    flex-direction: column;
    height: 100%; /* جميع الكروت بنفس الارتفاع */
}

.product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.action-buttons {
    margin-top: auto; /* يثبت الأزرار في أسفل الكرت */
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.add-to-cart-single, 
.add-to-Lover-Products {
    flex: 1; /* يجعل الأزرار متساوية العرض */
}
.product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.action-buttons {
    margin-top: auto; /* يثبت الأزرار في أسفل الكرت */
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.add-to-cart-single, 
.add-to-Lover-Products {
    flex: 1; /* يجعل الأزرار بنفس العرض */
}
.section-title {
    text-align: center;
    padding-bottom: 0px;
    position: relative;
}
[dir="rtl"] .btn-close {
    margin-left: 0;
    margin-right: auto; /* يحرك الزر لليسار بدل اليمين */
}
[dir="ltr"] .btn-close {
    margin-right: 0;
    margin-left: auto; /* يحرك الزر لليسار بدل اليمين */
}
