/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Donald Folayan
Author URI: github.com/donfolayan
Template: hello-elementor
Version: 2.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

a.button.make-inquiry-button{
    box-shadow: 7px 7px 0px #01241A;
    transition: ease-out;
    transition-duration: 400ms;
    background-color: #05B484;
    padding: 14px 25px;
    color: white;
    border-radius: 0 8px;
    font-family: "Nunito Sans", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 16px;
}

a.button.make-inquiry-button:hover{
    box-shadow: -7px -7px 0px #01241A;
    color: white;
    background-color: #05B484;
}


#selected-products {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 0;
}

.selected-product {
    background-color: #e0f7fa;
    border: 1px solid #05B484;
    color: #01241A;
    padding: 8px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1;
    box-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.selected-product .product-name a {
    color: #01241A;
    text-decoration: none;
    margin-right: 5px;
}

.selected-product .product-name a:hover {
    text-decoration: underline;
}

.selected-product .remove-product {
    background: none;
    border: none;
    color: #01241A;
    font-size: 18px;
    cursor: pointer;
    margin-left: 5px;
    padding: 0 4px;
    line-height: 1;
    font-weight: bold;
    outline: none;
    transition: color 0.2s ease;
}

.selected-product .remove-product:hover {
    color: #FF0000;
}