/**
 * LSM Product Toggle Styles
 *
 * Follows the existing add-on checkbox UI pattern from the Lab Series theme.
 * Brand colours: Burnt Orange #C16632, Rich Black #000, Off-White #EDE8D8
 */

.lsm-purchase-toggle {
    margin: 20px 0;
    padding: 18px 20px;
    border: 1px solid #e0ddd6;
    border-radius: 4px;
    background: #f9f7f4;
}

.lsm-toggle-label {
    font-weight: 600;
    margin-bottom: 14px;
    color: #000;
    font-size: 14px;
}

.lsm-toggle-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    border: 1px solid #e0ddd6;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.lsm-toggle-option:last-child {
    margin-bottom: 0;
}

.lsm-toggle-option:hover {
    border-color: #C16632;
    background: #fdf8f4;
}

.lsm-toggle-option input[type="radio"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #C16632;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.lsm-toggle-option:has(input:checked) {
    border-color: #C16632;
    background: #fef5ef;
}

.lsm-option-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.4;
}

.lsm-option-price {
    font-weight: 700;
    color: #000;
    font-size: 15px;
}

.lsm-option-sub {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 480px) {
    .lsm-purchase-toggle {
        padding: 14px;
    }
    .lsm-toggle-option {
        padding: 10px 12px;
    }
}
