/* Simple Product Options - Frontend Styles */

.spo-options-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.spo-option {
    margin-bottom: 20px;
}

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

.spo-option-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.spo-option-label .required {
    color: #dc3232;
}

.spo-option-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd !important;
    border-radius: 4px;
    font-size: 14px;
}

.spo-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spo-radio-label {
    display: flex !important;
    align-items: center;
    padding: 12px 0 !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent !important;
}

.spo-radio-label:hover {
    background: transparent !important;
}

.spo-radio-label input[type="radio"] {
    margin: 0 10px 0 0 !important;
    width: 18px !important;
    height: 18px !important;
}

.spo-radio-label input[type="radio"]:checked+.spo-radio-text {
    font-weight: 600;
}

.spo-radio-label:has(input:checked) {
    border-color: #000 !important;
    background: #f0f0f0 !important;
}

.spo-radio-text {
    flex: 1;
}

/* Price display in WooCommerce */
.woocommerce-variation-price {
    margin-top: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .spo-options-wrapper {
        padding: 15px;
    }

    .spo-radio-label {
        padding: 10px 0 !important;
    }
}