/* ─────────────────────────────────────────────────────────────────────────
   Yelocate banners — address / email / phone
   Each banner has its own ID so they mount independently near their field.
───────────────────────────────────────────────────────────────────────── */

.loqate-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    width: 100%;
    box-sizing: border-box;

    padding: 14px 14px;
    margin: 10px 0 12px;

    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .03);

    font-size: 14px;
    line-height: 1.35;
}

.loqate-banner .loqate-banner__text {
    flex: 1 1 auto;
    min-width: 0;
}

.loqate-banner .loqate-banner__close {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.5;
    padding: 0 2px;
}

.loqate-banner .loqate-banner__close:hover {
    opacity: 1;
}

/* ── State variants ── */

.loqate-banner.is-info {
    border-color: rgba(0, 0, 0, .10);
    background:   rgba(0, 0, 0, .03);
    color: #555;
}

.loqate-banner.is-success {
    border-color: rgba(0, 128, 0, .22);
    background:   rgba(0, 128, 0, .07);
    color: #1a5c1a;
}

.loqate-banner.is-warning {
    border-color: rgba(200, 120, 0, .28);
    background:   rgba(255, 165, 0, .09);
    color: #7a4a00;
}

.loqate-banner.is-error {
    border-color: rgba(220, 0, 0, .22);
    background:   rgba(220, 0, 0, .07);
    color: #8b0000;
}

/* ── Prevent label/inline collisions in some themes ── */

.wc-block-components-text-input label + .loqate-banner,
.wc-block-components-select label + .loqate-banner {
    margin-top: 8px;
}

/* ── WooCommerce notice resets (prevent theme double-icons) ── */

.woocommerce-info::before {
    display: none !important;
}

.woocommerce-message::before {
    position: initial !important;
}