/* Plugin Styling for Quote Form */
#gcb-quote-wrapper {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

#gcb-quote-wrapper .quote-box {
    background-color: #ffffff; /* fallback */
    background-color: rgba(255, 255, 255, 0.88);
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 25px 30px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#gcb-quote-wrapper ul.list-unstyled {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

#gcb-quote-wrapper li {
    margin-bottom: 16px;
    list-style: none;
}

#gcb-quote-wrapper label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

#gcb-quote-wrapper select.form-control {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 16px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

#gcb-quote-wrapper select.form-control:hover,
#gcb-quote-wrapper select.form-control:focus {
    border-color: #466d5c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(70, 109, 92, 0.2);
}

#gcb-quote-wrapper #Model {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

/* Header styling */
#gcb-quote-wrapper .gcb-panel-header {
    background-color: #466d5c; /* fallback */
    border-radius: 10px;
    padding: 20px 30px;
    border: 1px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#gcb-quote-wrapper .gcb-panel-header .panel-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
    
}

/* Quote Section */
#gcb-quote-wrapper #quote_section {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

#gcb-quote-wrapper #quote_section.show {
    opacity: 1;
    transform: translateY(0);
}
#quote_section h2 {
      margin-bottom: 0px;
    color: #466d5c;
    font-weight: bold;
}
#gcb-quote-wrapper #addToCartForm {
    margin-top: 0;
    padding-top: 0;
}

/* Button */

#gcb-quote-wrapper #addToCartForm button {
    background-color: transparent;
    border: 2px solid #466d5c;
    color: #466d5c;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 16px;
    margin-top: 2px;
}

#gcb-quote-wrapper #addToCartForm button:hover {
    background-color: #466d5c;
    color: #ffffff;
    cursor: pointer;
}

/* Spinner */
.gcb-loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #466d5c;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 0.7s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    #gcb-quote-wrapper .quote-box {
        margin: 20px 0 0 0;
        padding: 15px;
        padding-bottom: 40px;
        background-color: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    #gcb-quote-wrapper .gcb-panel-header {
        padding: 15px;
        background-color: #466d5c !important;
    }

    #gcb-quote-wrapper .gcb-panel-header .panel-title {
        font-size: 18px;
        color: #ffffff !important;
    }

    #quote_section h2 span#quote {
        color: #466d5c;
        font-weight: bold;
        font-size: 18px;
    }

    #gcb-quote-wrapper select.form-control {
        padding: 12px 16px;
    }

    #gcb-quote-wrapper #addToCartForm button {
        padding: 12px 24px;
        font-size: 17px;
    }
}