@media (max-width: 768px) {
    #buzz-cta-container {
        position: fixed;
        bottom: 20px;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        pointer-events: none;
    }

    #buzz-cta-container.buzz-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .buzz-cta-btn {
        display: inline-block;
        padding: 14px 28px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .buzz-cta-btn:hover,
    .buzz-cta-btn:focus {
        opacity: 0.85;
    }
}

@media (min-width: 769px) {
    #buzz-cta-container {
        display: none;
    }
}
