/*
 Theme Name:   enfold child
 Theme URI:    http://www.kriesi.at
 Description:  enfold child theme
 Author:       Kresi
 Author URI:   http://www.kresi.at
 Template:     enfold
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 Tags:         enfold
 Text Domain:  enfold-child
*/

/* Hide default radio buttons */
.woocommerce-shipping-methods input[type="radio"] {
    display: none;
}

/* Style the shipping method labels like buttons */
.woocommerce-shipping-methods li {
    list-style: none;
    margin: 5px 0;
}

.woocommerce-shipping-methods label {
    display: block;
    padding: 10px;
    border: 2px solid #ccc;
    background-color: #f8f8f8;
    color: #333;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Add hover effect */
.woocommerce-shipping-methods label:hover {
    background-color: #ddd;
}

/* Highlight the selected shipping method */
.woocommerce-shipping-methods input[type="radio"]:checked + label {
    background-color: #ffcc00;
    border-color: #ff9900;
    color: #000;
}
