.floating-cta-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark-grey);
    text-align: right;
    padding: 15px 30px;
    margin-bottom: 0;
    z-index: 999;
}

.floating-cta-container {
    position: relative;
    max-width: 1100px;
    min-height: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.see-all-link.back-search::before {
    content: "";
    width: 30px;
    height: 15px;
    transform: rotate(180deg);
    background: url('/wp-content/uploads/2025/06/right-arrow.svg') 0% 0% / contain no-repeat;
}

.see-all-link.back-search:hover {
    color: inherit;
    opacity: 0.5;
}

.floating-cta-container .button-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

@media (max-width: 768px) {
    .floating-cta-container {
        justify-content: center;
        gap: 10px;
    }

    .see-all-link.back-search {
        width: 100%;
        justify-content: center;
    }

    .floating-cta-container .button-wrapper {
        margin: auto;
    }

    .floating-cta-container .button-wrapper .button {
        width: auto;
        font-size: var(--font-sm);
        padding: 10px 15px;
        margin: 0;
    }
}

@media (min-width: 545px) {
    .floating-cta-wrapper {
        display: none;
    }
}

@media (max-width: 545px) {
    .floating-cta-container {
        min-height: 30px;
    }

    .see-all-link.back-search {
        margin-top: 0;
    }
}