/* ═══════════════════════════════════════════════════════════
   Sticky CTA Button — Frontend CSS v2.3
   All button styles live inside Shadow DOM (in PHP/JS).
   This file only styles the shadow host and popup overlays
   which must live in the light DOM to cover the full page.
═══════════════════════════════════════════════════════════ */

/* Shadow host — invisible, zero footprint */
#scta-host {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    overflow: visible;
    z-index: 99999;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none;
}
.scta-anim-pulse{
    animation: none!important;
}
.scta-btn{
    box-shadow: 0 4px 16px rgba(0, 0, 0, .0)!important;
}
.scta-btn:hover{
   box-shadow: 0 4px 16px rgba(0, 0, 0, .0)!important; 
}
.scta-anim-pulse {
    animation: none!important;
}
.scta-anim-pulse {
    animation-play-state: paused !important;
}
.scta-anim-pulse::before, 
.scta-anim-pulse::after {
    animation: none !important;
}


/* ── Popup overlay — light DOM, must cover full page ─────── */
.scta-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .52);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
    box-sizing: border-box;
}
.scta-popup-overlay.scta-popup-open {
    display: flex;
    animation: scta-popup-fade .22s ease;
}
@keyframes scta-popup-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.scta-popup-inner {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
    animation: scta-popup-slide .25s ease;
    box-sizing: border-box;
}
@keyframes scta-popup-slide {
    from { opacity: 0; transform: scale(.88) translateY(-20px); }
    to   { opacity: 1; transform: scale(1)   translateY(0); }
}
.scta-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
    line-height: 1;
    box-sizing: border-box;
}
.scta-popup-close:hover { background: #e5e7eb; color: #111827; }
.scta-popup-title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.scta-popup-content {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
}


@media (max-width: 768px) {
    .scta-popup-inner { padding: 28px 20px; }
}






