/**
 * WC Delivery Location – Frontend Styles (Compact Dropdown + Location Card)
 *
 * @package WC_Delivery_Location
 */

/* ───────────────────────────────────────────
   Checkout: Compact Shipping Wrapper
   ─────────────────────────────────────────── */
.wcdl-shipping-wrap {
    margin: 20px 0 24px;
    padding: 0;
}

.wcdl-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.wcdl-label abbr.required {
    color: #e74c3c;
    text-decoration: none;
    border: none;
}

/* ── Zone Dropdown ── */
.wcdl-checkout-zone {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    appearance: auto;
    -webkit-appearance: auto;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wcdl-checkout-zone:focus {
    border-color: #6c3eb7;
    box-shadow: 0 0 0 2px rgba(108, 62, 183, 0.15);
}

/* ── Location Preview Card ── */
.wcdl-loc-card {
    margin-top: 12px;
    padding: 14px 16px;
    background: #f8f6fc;
    border: 1px solid #e8e0f5;
    border-radius: 8px;
    animation: wcdl-card-fade 0.25s ease;
}

@keyframes wcdl-card-fade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wcdl-loc-card-title {
    font-size: 12px;
    font-weight: 700;
    color: #6c3eb7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.wcdl-loc-card-list {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

/* ───────────────────────────────────────────
   Product page context (simpler)
   ─────────────────────────────────────────── */
.wcdl-delivery-location {
    margin: 20px 0;
}

.wcdl-context-product {
    padding: 14px 18px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.wcdl-context-product label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.wcdl-zone-select {
    width: 100%;
    max-width: 420px;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    appearance: auto;
    -webkit-appearance: auto;
    cursor: pointer;
}

.wcdl-zone-select:focus {
    border-color: #6c3eb7;
    outline: none;
    box-shadow: 0 0 0 1px #6c3eb7;
}

/* ───────────────────────────────────────────
   Fee preview badge (product page)
   ─────────────────────────────────────────── */
.wcdl-fee-preview {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #6c3eb7;
    border-radius: 4px;
    vertical-align: middle;
}

/* ───────────────────────────────────────────
   Responsive adjustments
   ─────────────────────────────────────────── */
@media (max-width: 480px) {
    .wcdl-shipping-wrap {
        margin: 14px 0 18px;
    }
    .wcdl-checkout-zone {
        padding: 10px 12px;
        font-size: 13px;
    }
    .wcdl-loc-card {
        padding: 10px 12px;
    }
    .wcdl-loc-card-title {
        font-size: 11px;
    }
    .wcdl-loc-card-list {
        font-size: 12px;
    }
}

/* ───────────────────────────────────────────
   Cart item meta
   ─────────────────────────────────────────── */
.woocommerce-cart .variation dt {
    font-weight: 600;
}
