/* Multiple Quantities Selector Styles */
#multiple-quantity-selector {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#multiple-quantity-selector h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2em;
}

.attribute-quantity-group {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
}

.attribute-quantity-group h5 {
    margin: 0 0 10px 0;
    color: #555;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantity-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

.quantity-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.quantity-option label {
    flex: 1;
    margin: 0;
    font-weight: normal;
    color: #666;
    cursor: default;
}

.qty-input {
    width: 80px !important;
    max-width: 80px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px;
    font-size: 14px;
}

.qty-input:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 1px #007cba;
}

#add-multiple-to-cart {
    width: 100%;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 3px;
    background-color: #a46497;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#add-multiple-to-cart:hover {
    background-color: #935086;
}

#add-multiple-to-cart:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .quantity-option {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quantity-option label {
        margin-bottom: 5px;
    }
    
    .qty-input {
        width: 100% !important;
        max-width: none;
    }
}

.single_add_to_cart_button.wc-variation-is-unavailable {
    display: none !important;
}

.wc-multiple-qty-loading {
    opacity: 0.6;
    pointer-events: none;
}

.wc-multiple-qty-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 3px;
    font-weight: bold;
}

.wc-multiple-qty-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wc-multiple-qty-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.quantity-total {
    margin-top: 15px;
    padding: 10px;
    background-color: #e9ecef;
    border-radius: 3px;
    text-align: center;
    font-weight: bold;
    color: #495057;
}