                                          
.configurator-buttons-wrapper {
    margin-top: 20px;
    text-align: center;
}

.configurator-footer-btn,
.configurator-quote-request-btn,
.configurator-send-btn,
.configurator-quote-btn {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    margin: 0 10px;
}

.configurator-quote-request-btn {
    background: #4CAF50;
}

.configurator-footer-btn:hover,
.configurator-send-btn:hover {
    background: #005177;
}

.configurator-quote-request-btn:hover,
.configurator-quote-btn:hover {
    background: #388E3C;
}

                  
.configurator-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
}

.configurator-modal-content {
    position: relative;
    background: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    border-radius: 4px;
}

.configurator-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.configurator-email-form,
.configurator-quote-form {
    margin-top: 20px;
}

.configurator-customer-name,
.configurator-customer-phone,
.configurator-email-address {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.configurator-customer-name:focus,
.configurator-customer-phone:focus,
.configurator-email-address:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 3px rgba(0, 115, 170, 0.3);
}

.configurator-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
}

.configurator-message.error {
    background: #ffebee;
    color: #c62828;
}

.configurator-message.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.email-message,
.quote-message {
    margin-bottom: 20px;
    line-height: 1.5;
}

.email-message p,
.quote-message p {
    margin-bottom: 10px;
}

                          
.color-preview-container {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

                          
.footer__section-right .color-preview-container {
    width: 100px;
    height: 60px;
    margin-bottom: 10px;
}

                           
.mkl_pc_summary .color-preview-container {
    width: 150px;
    height: 90px;
    margin: 0 auto 20px;
}

.color-preview-image {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: 1px solid #ddd;
}

                                                    
.footer__section-right .price-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__section-right .pc-total-price {
    margin-left: 10px;
}

                                                 
.mkl_pc_summary {
    position: relative;
    padding-top: 100px;
}

.mkl_pc_summary .color-preview-container {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}