/* elementor/assets/css/elementor-widget.css */
.ecp-elementor-widget {
    width: 100%;
    max-width: 100%;
}

.ecp-elementor-widget .ecp-checkout-wrapper h3{
    display:none;
}
.ecp-elementor-notice {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    color: #666;
}
/* تنسيق العروض في إليمنتور */
.ecp-elementor-widget .ecp-product-offers-wrapper {
    margin-bottom: 20px;
    margin-top :20px;
}
.ecp-elementor-widget .ecp-product-offers {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.ecp-elementor-widget .ecp-offer-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
    flex: 1 1 300px;
    min-width: 200px;
}
.ecp-elementor-widget .ecp-offer-item:hover {
    border-color: #2271b1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.ecp-elementor-widget .ecp-offer-item.selected {
    border-color: #2271b1;
    background: #f0f7ff;
}
/* تعديلات خاصة بإليمنتور */
.elementor-widget-express_checkout_pro .ecp-form-wrapper {
    margin: 0;
}
/* تنسيق عرض الألوان والمقاسات */
.ecp-variation-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}
.ecp-variation-label {
    width: 80px;
    font-weight: bold;
    margin-right: 10px;
}
.ecp-variation-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}
.ecp-color-option,
.ecp-size-option {
    margin-right: 10px;
    margin-bottom: 5px;
}
/* تنسيق الخيارات */
.variations {
    width: 100%;
    margin-bottom: 20px;
}

.variations td {
    border: none !important;
    background: transparent !important;
}

.variations tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
}
.variations td.label {
    width: 80px;
    min-width: 80px;
    padding-right: 10px;
    font-weight: 600;
}
.variations td.value {
    flex: 1;
}
/* تحسين تنسيق القوائم المنسدلة */
.variations select {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
/* تنسيق ملخص الطلب */
.ecp-order-summary {
    margin: 20px 0;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 4px;
}
.ecp-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}
.ecp-summary-row:last-child {
    border-bottom: none;
    font-weight: bold;
}
/* تحسينات الاستجابة للموبايل */
@media (max-width: 767px) {
    .ecp-elementor-widget .ecp-offer-content {
        display: flex;
        justify-content: space-around;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
    }
    
    .ecp-offer-text{
        width:80%;
    }
    
    .ecp-offer-price{
        width:20%;
    }
    
    .ecp-elementor-widget .ecp-offer-price {
        margin-top: 10px;
    }
    
    .variations tr {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .variations td.label,
    .variations td.value {
        width: 100%;
        padding: 5px 0;
    }
}