﻿.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 -4px 15px rgba(0,0,0,.12);
    z-index: 9998;
}

@media(min-width:992px) {

    .sticky-cta {
        display: none;
    }
}
