/* Task #202 — Storefront checkout shipping selector styles.
 * Enqueued alongside checkout-shipping.js by class-nexus-shipping-rest.php.
 */

/* "Recommended" AI badge on the top-ranked shipping option. */
.nx-ship-recommended {
    display: inline-block;
    margin-left: 8px;
    padding: 1px 7px;
    border-radius: 10px;
    background-color: #1a6eb5;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    vertical-align: middle;
    line-height: 1.6;
    white-space: nowrap;
}

/* Task #200 — Delivery estimate range shown inline after the rate cost. */
.nx-shipping-est {
    color: #666;
    font-size: 0.9em;
    margin-left: 4px;
}

/* Task #200 — International / cross-border notice block below rate list. */
.nx-zone-notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 12px;
    background-color: #fffbe6;
    border: 1px solid #f5c518;
    border-left: 4px solid #f5c518;
    border-radius: 4px;
    font-size: 0.88em;
    line-height: 1.5;
    color: #5a4a00;
}

.nx-zone-notice__text {
    flex: 1;
}

.nx-zone-notice__dismiss {
    flex-shrink: 0;
    appearance: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: #8a7a30;
    padding: 0 2px;
    opacity: 0.7;
}

.nx-zone-notice__dismiss:hover {
    opacity: 1;
}
