/**
 * FareFreight – Checkout shipping methods layout
 * Organises multiple shipping options in a readable way inside WooCommerce's
 * narrow order-review table column.
 */

/* Give the shipping cell more breathing room */
.woocommerce-checkout-review-order-table td[data-title="Shipment"],
.woocommerce-checkout-review-order-table td[data-title="Shipping"] {
    padding: 12px 8px;
}

/* Shipping method list — reset default WooCommerce styles */
#shipping_method {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

/* Each shipping option — card-like appearance */
#shipping_method li {
    margin-bottom: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fafafa;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

#shipping_method li:last-child {
    margin-bottom: 0;
}

/* Highlight selected option */
#shipping_method li:has(input[type="radio"]:checked) {
    border-color: #d4a017;
    background: #fffdf5;
}

/* Radio button styling */
#shipping_method li input[type="radio"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #d4a017;
}

/* Label takes remaining space */
#shipping_method label {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    flex: 1;
    min-width: 0; /* prevent overflow */
    text-align: left;
}

/* First line: Name and Price side by side */
#shipping_method label .shipping-line-1 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

/* Service name */
#shipping_method label .shipping-name {
    font-weight: 600;
    font-size: 0.95em;
    color: #222;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}

/* Price — always visible, never wraps */
#shipping_method label .shipping-price {
    font-weight: 700;
    color: #d4a017;
    font-size: 0.95em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Description line */
#shipping_method label .shipping-description {
    font-weight: normal;
    font-size: 0.82em;
    color: #777;
    margin-top: 4px;
    padding-left: 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* WooCommerce Price amount inside labels — match our price style */
#shipping_method label .woocommerce-Price-amount {
    color: #d4a017;
    font-weight: 700;
}
