/**
 * Frontend Styles for WooCommerce Simple Add-ons
 */

.wc-simple-addons-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

.wc-simple-addons-title h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.wc-simple-addons-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wc-simple-addon-option {
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.wc-simple-addon-option:hover {
    border-color: #999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.wc-simple-addon-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.wc-simple-addon-checkbox {
    margin: 0 10px 0 0 !important;
    cursor: pointer;
}

.wc-simple-addon-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.wc-simple-addon-price-display {
    font-weight: 600;
    color: #2c5aa0;
    margin-left: 10px;
}

/* Checked state styling */
.wc-simple-addon-option:has(.wc-simple-addon-checkbox:checked) {
    background: #f0f7ff;
    border-color: #2c5aa0;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .wc-simple-addon-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .wc-simple-addon-price-display {
        margin-left: 0;
    }
}
