.sticky-cta-mobile {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background-color: #121212;
    padding: 15px 15px 30px 15px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: bottom 0.4s ease-in-out;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: none;
}

.sticky-cta-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.sticky-cta-info {
    color: #d0bf95;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-cta-button {
    width: 100%;
    background: linear-gradient(119deg, #d0bf95, #a48446);
    color: #000;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(164, 132, 70, 0.3);
}

.sticky-cta-mobile.visible {
    bottom: 0;
}

@media (max-width: 991px) {
    .sticky-cta-mobile {
        display: block;
    }
}