/* Fitset Ninja Product Page Customizations */

.fsn-class-time-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.fsn-time-option {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.fsn-time-option:hover {
    border-color: #aaa;
    background: #f9f9f9;
}

.fsn-time-option.selected {
    border-color: #d1202e;
    /* Ninja Red */
    background: #fff5f5;
    box-shadow: 0 0 0 1px #d1202e;
}

.fsn-time-option.is-full {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f0f0f0;
}

.fsn-time-option label {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    margin: 0;
}

.fsn-time-option input[type="radio"] {
    margin-right: 15px;
}

.fsn-time-text {
    font-weight: 500;
    flex-grow: 1;
}

.fsn-stock-status {
    font-size: 0.85em;
    color: #28a745;
}

.fsn-stock-status.full {
    color: #dc3545;
    font-weight: bold;
}

/* Camp Variation Buttons - High Specificity to override GS Product Configurator / GF Resets */
body .gform_wrapper .fsn-variation-buttons,
body .fsn-variation-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 5px !important;
}

body .gform_wrapper .fsn-variation-button,
body .fsn-variation-button {
    border: 2px solid #2f1845 !important;
    border-radius: 4px !important;
    padding: 10px 20px !important;
    cursor: pointer !important;
    background: #fff !important;
    color: #2f1845 !important;
    font-weight: bold !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
    user-select: none !important;
    font-size: 14px !important;
    display: inline-block !important; /* GF sometimes forces block */
    box-sizing: border-box !important;
}

body .gform_wrapper .fsn-variation-button:hover,
body .fsn-variation-button:hover {
    background: #f0ebf8 !important;
}

body .gform_wrapper .fsn-variation-button.selected,
body .fsn-variation-button.selected {
    background: #2f1845 !important;
    color: #fff !important;
}

body .gform_wrapper .fsn-variation-button.disabled,
body .fsn-variation-button.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    border-color: #ccc !important;
    color: #999 !important;
}