body.iphone {
    font-size: 38px;
}

.radio-group {
    display: flex;
    gap: 1rem;
}

input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 60px;
    height: 40px;
    background-color: red;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="radio"]:checked + .custom-radio {
    background-color: green;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
