.has-coach {
    display: none;
}

.has-coach-fee {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.has-coach-fee label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
}

.has-coach-fee .coach-fee {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color, #007bff);
}

@media (max-width: 768px) {
    .has-coach-fee {
        padding: 1.25rem;
    }

    .has-coach-fee .coach-fee {
        font-size: 1.5rem;
    }
}

.payment-option {
    background: #fff;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    transform: scale(1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.payment-option:hover {
    transform: scale(1.02);
    border-color: #c5c5c5;
}

/* Fully hide the input – no focusing, no scrolling */
.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Highlight when checked */
.payment-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-color, #007bff);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
    transform: scale(1.03);
    z-index: 2;
}

.payment-option img {
    width: 140px;
    height: 50px;
    object-fit: contain;
    pointer-events: none;
}
