/* Float panel naar de onderkant */
#float-panel-woo-area.rh-float-panel{
  top: auto !important;
  bottom: 0px !important;
}




.last-cta-bar {
    background-color: #000;
    border-radius: 40px;
    padding: 24px 32px;
    margin: 40px 0 0;
}

.last-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.last-cta-text {
    margin: 0;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
}

.last-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 999px;
    background: #35b200;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

/* Mobile layout: knop onder de tekst */
@media (max-width: 768px) {
    .last-cta-inner {
        flex-direction: column;
        align-items: flex-start;   /* of center, als je alles wilt centreren */
        gap: 16px;
    }

    .last-cta-button {
        width: 100%;              /* optioneel: knop over volle breedte */
        justify-content: center;  /* tekst centreren in de knop */
    }

    .last-cta-text {
        font-size: 1.2rem;        /* eventueel iets kleiner op mobiel */
    }
}
