.sticky-cta-mobile {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    z-index: 9999;
    max-width: 92%;
    box-sizing: border-box;
}

.sticky-cta-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.sticky-cta-actions {
    display: flex;
    gap: 8px;
}

.sticky-cta-button {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.sticky-cta-wa {
    width: 40px;
    height: 40px;
    background: #25d366;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.sticky-cta-wa svg {
    width: 20px;
    height: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .sticky-cta-mobile {
        bottom: 0;
        width: 100%;
        border-radius: 0;
        max-width: 100%;
        justify-content: space-between;
    }

    .sticky-cta-text {
        font-size: 14px;
    }

    .sticky-cta-button {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* DISPLAY CONTROL */
.sticky-cta-desktop { display: none; }
@media (min-width: 769px) {
    .sticky-cta-desktop { display: flex; }
    .sticky-cta-mobile-only { display: none; }
}

.sticky-cta-mobile-only {
    display: flex;
}
