.elementor-menu-cart__footer-buttons .elementor-button--greenleaze-custom {
    background-color: #1d5438;
    color: white !important;
    margin-bottom: 10px;
    width: 100%;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.elementor-menu-cart__footer-buttons .elementor-button--greenleaze-custom:hover {
    background-color: #083e28;
    color: white !important;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

.button--loading:hover {
    color: transparent !important;
    position: relative;
    cursor: not-allowed;
    background-color: #083e28 !important;
}

.button--loading {
    color: transparent !important;
    position: relative;
    cursor: not-allowed;
    background-color: #083e28 !important;
}
.button--loading::after {
    content: '';
    position: absolute;
    width: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}
