/* ===============================
   Location Availability Message
================================ */

.wlf-location-unavailable {
    margin: 15px 0;
    padding: 14px 18px;
    border-left: 5px solid #ff9800;
    background: #fff8e6;
    color: #7a4b00;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.wlf-location-unavailable::before {
    content: "⚠️";
    font-size: 18px;
}

@media (max-width: 768px) {
    .wlf-location-unavailable {
        font-size: 14px;
        padding: 12px 14px;
    }
}
/* ===============================
   Container Card
================================*/

.wlf-location-messages {
    margin: 18px 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    font-size: 14px;
    max-width: 520px;
}

.wlf-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 12px;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wlf-title::before {
    content: "📦";
}

/* ===============================
   Message Row Layout
================================*/

.wlf-location-messages p,
.wlf-location-unavailable {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    line-height: 1.4;
}

/* Icon container */
.wlf-location-messages p::before,
.wlf-location-unavailable::before {
    font-size: 16px;
}

/* ===============================
   COD Messages
================================*/

.wlf-cod.available::before {
    content: "✔";
    color: #16a34a;
    font-weight: bold;
}

.wlf-cod.not-available::before {
    content: "✖";
    color: #dc2626;
    font-weight: bold;
}

/* ===============================
   Delivery Days
================================*/

.wlf-delivery-days::before {
    content: "🚚";
}

/* ===============================
   Delivery Time
================================*/

.wlf-delivery-time::before {
    content: "⏱";
}

/* ===============================
   Default Location Message
================================*/

.wlf-location-message::before {
    content: "ℹ";
}

/* ===============================
   Unavailable Message
================================*/

.wlf-location-unavailable {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #9f1239;
    font-weight: 600;
}

.wlf-location-unavailable::before {
    content: "⚠";
}

/* ===============================
   Mobile Optimization
================================*/

@media (max-width: 768px) {
    .wlf-location-messages {
        padding: 14px;
        font-size: 13px;
    }

    .wlf-location-messages p,
    .wlf-location-unavailable {
        padding: 8px 10px;
    }
}
