/**
 * Shipping Checkout Styles
 * Minimal styles for WooCommerce shipping display
 */

/* Shipping method styling */
.woocommerce-shipping-methods {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-shipping-methods li {
    margin-bottom: 8px;
}

.woocommerce-shipping-methods label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.woocommerce-shipping-methods label:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

.woocommerce-shipping-methods input[type="radio"]:checked + label,
.woocommerce-shipping-methods li:has(input:checked) label {
    border-color: #2271b1;
    background: #f0f6fc;
}

/* Pickup option highlight */
.woocommerce-shipping-methods label[for*="pickup"] {
    border-color: #10b981;
}

.woocommerce-shipping-methods label[for*="pickup"]:hover {
    background: #ecfdf5;
}

/* Shipping amount styling */
.woocommerce-shipping-methods .woocommerce-Price-amount {
    font-weight: 600;
}

/* Free shipping highlight */
.woocommerce-shipping-methods .woocommerce-Price-amount.amount:contains("0,00"),
.woocommerce-shipping-methods label[for*="pickup"] .woocommerce-Price-amount {
    color: #047857;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .woocommerce-shipping-methods label {
        padding: 8px 10px;
        font-size: 14px;
    }
}
