/* ===========================================
   SHIPPING METHODS STYLING
   Card-style shipping options with selection state
   =========================================== */

/* Each shipping option (no jump) */
ul#shipping_method.woocommerce-shipping-methods li {
    margin-bottom: 12px;
    padding: 16px;
    /* reserve 2px border space to prevent layout shift */
    border: 2px solid transparent;
    /* fake 1px border in normal state */
    box-shadow: inset 0 0 0 1px #bfbfbf;
    border-radius: 4px;
    background: #ffffff;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.15s ease-out,
                background-color 0.15s ease-out,
                box-shadow 0.15s ease-out;
}

/* Selected state (same size, just different visuals) */
ul#shipping_method.woocommerce-shipping-methods li:has(input:checked) {
    box-shadow: none;
    border-color: #4a4a4a;
    background: #fafafa;
}

/* Radio button (match selected tone) */
ul#shipping_method.woocommerce-shipping-methods input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    vertical-align: middle;
    accent-color: #4a4a4a;
}

/* Delivery note layout */
ul#shipping_method.woocommerce-shipping-methods .shipping-note {
    margin-top: 6px !important;
    margin-left: 28px !important;
}

/* =========================
   Shipping Notice (EU warehouse)
   ========================= */

.shipping-notice-row td {
    border: none;
    padding: 0;
}

.shipping-notice-row .shipping-notice {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
}

.shipping-notice-row .shipping-notice img {
    margin-right: 6px;
}
