/* ---------------------------------------------
   BUTTONS
   --------------------------------------------- */
.nectar-button.small, 
.nectar-button.medium, 
.nectar-button.large {
    background: #54ae31 !important;
    font-size: clamp(0.8rem, 2vw, 1rem) !important;
    padding: 15px 22px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    color: #fff !important;
    font-family: 'Open Sans' !important;
    font-weight: 600 !important;
    position: relative !important;
    top: unset !important;
    margin-bottom: 10px !important;
    opacity: 1 !important;
    line-height: 1 !important;
    display: inline-block !important;
    text-decoration: none !important;
    margin-top: 30px;
}


.nectar-button.small:hover,
.nectar-button.medium:hover,
.nectar-button.large:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2) !important;
    transform: scale(1.02) !important;
    opacity: .9 !important;
}

@media screen and (max-width: 768px) {
    /* Deaktiviert Box-Shadow und Transform-Effekt auf Mobile */
    .nectar-button.small:hover,
    .nectar-button.medium:hover, 
    .nectar-button.large:hover {
        box-shadow: none !important;
        transform: none !important;
        opacity: .9 !important;
    }
}