/* WooCommerce Plus Minus Variations - Styles */

.wc-pmv-wrapper {
    margin: 20px 0;
}

/* Form Selezione Variazioni */
.wc-pmv-variations-form {
    margin-bottom: 20px;
}

.wc-pmv-attribute {
    margin-bottom: 15px;
}

.wc-pmv-attribute label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.wc-pmv-select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease;
    text-transform: uppercase;
}

.wc-pmv-select option {
    text-transform: uppercase;
}

.wc-pmv-select:hover {
    border-color: #333;
}

.wc-pmv-select:focus {
    outline: none;
    border-color: #333;
}

/* Controlli Aggiungi */
.wc-pmv-add-controls {
    margin-top: 15px;
}

.wc-pmv-add-wrapper {
    width: 100%;
}

.wc-pmv-add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-pmv-attribute label {
        font-size: 13px;
    }
    
    .wc-pmv-select {
        font-size: 13px;
        padding: 8px 12px;
    }
}