.freight-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.freight-card {
    cursor: pointer;
}

.freight-card input {
    display: none;
}

.card-ui {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    width: 100px;
    transition: 0.3s;
    background: #fff;
    display: grid;
    justify-content: center;
    align-items: center;
}

.card-ui img {
    width: 30px;
    margin-bottom: 5px;
}

.freight-card input:checked + .card-ui {
    border-color: #e63946;
    background: #ffeaea;
    box-shadow: 0 0 0 2px #e63946;
}

.card-ui:hover {
    border-color: #999;
}