/**
 * تنسيقات محسنة لعرض الأسعار
 * Enhanced Price Display Styling
 */

/* حاوية الأسعار الرئيسية */
.emg-product-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 8px 0;
    position: relative;
}

/* حاوية السعر قبل الخصم والسعر الحالي */
.price-discount-container {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    width: 100%;
    gap: 8px;
}


/* حاوية سعر التاجر المحسنة */
.emg-merchant-price-container {
    background-color: #f8f4f4;
    padding: 10px 12px;
    border-radius: 6px;
    border-right: 4px solid #8b0000;
    margin: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.emg-merchant-price-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.emg-merchant-price-label {
    font-size: 14px;
    color: #8b0000;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.emg-merchant-price-label::before {
    content: '\f02b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 14px;
}

/* نمط عرض السعر العادي في صفحة التاجر */
.merchant-regular-price {
    font-size: 12px;
    color: #777;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    top: 2px;
}

.merchant-regular-price small {
    opacity: 0.85;
}

