/**
 * ExpertPackPro - Out-of-stock backorder alert (front-office)
 */

.epp-oos-alert {
    display: none;
    margin: 15px 0;
    padding: 18px 22px;
    border-radius: 6px;
    background-color: #fff3e0;
    border: 2px solid #ff9800;
    color: #e65100;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
}

.epp-oos-alert.epp-oos-alert--visible {
    display: block !important;
}

.epp-oos-alert__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #e65100;
}

.epp-oos-alert__title svg {
    flex-shrink: 0;
}

.epp-oos-alert__message {
    font-size: 14px;
    color: #bf360c;
    margin: 0;
}
