/**
* 2025 6UVES.COM
*
* NOTICE OF LICENSE
*
* This file is licenced under the Software License Agreement.
* With the purchase or the installation of the software in your application
* you accept the licence agreement
*
* @author    6UVES.COM <info@6uves.com>
* @copyright 2025 6UVES.COM
* @license   Commercial license (You can not resell or redistribute this software.)
*
*/

.combination-selector-container {
    margin: 5px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    transition: opacity 0.3s ease;
    min-height: 140px;
}
.combination-selector.dropup .dropdown-menu {
    top: auto !important;
    border-radius: 3px;
    transition: none;
    -webkit-transition: none;
    z-index: 10;
}
.btn.combination-dropdown {
    text-wrap: auto;
}

.combination-selector {
    & .text-danger,
    & .price-saving {
        font-weight: 600;
        font-size: .75rem;
        line-height: 1rem;
        padding: 0 0.25rem;
    }

    & .price-saving {
        color: #eaa42c;
    }
}
.combination-select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
}
.add-to-cart-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.add-to-cart-button {
    padding: 8px 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.add-to-cart-button:hover {
    background-color: #218838;
}
.add-to-cart-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    color: #ffffff;
}
