/* =============================================
   Float Button – Webfuel | Frontend v2
   ============================================= */

#fbw-float-strip,
.fbw-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: var(--fbw-bg, #1a73e8);
    color: var(--fbw-color, #ffffff);
    box-shadow: 0 -3px 16px rgba(0,0,0,.22);
}

.fbw-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    text-decoration: none !important;
    color: var(--fbw-color, #ffffff) !important;
    width: 100%;
    transition: opacity .18s;
}
.fbw-link:hover { opacity: .88; }

.fbw-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.fbw-icon-wrap svg { fill: currentColor; display: block; }

/* Phone number text */
.fbw-number {
    font-size: var(--fbw-size, 22px);
    font-weight: 700;
    letter-spacing: .3px;
    line-height: 1;
}

/* ===== STYLE 1 – Classic ===== */
/* icon left, number centred  */
.fbw-style1 .fbw-link {
    justify-content: center;
}
.fbw-style1 .fbw-icon-wrap {
    background: rgba(255,255,255,.18);
    border-radius: 50%;
    width: 44px;
    height: 44px;
}

/* ===== STYLE 2 – Pulse ===== */
.fbw-style2 {
    background: var(--fbw-bg, #e53935);
}
.fbw-style2 .fbw-icon-wrap {
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
}
.fbw-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    animation: fbwPulse 1.8s ease-out infinite;
    pointer-events: none;
}
@keyframes fbwPulse {
    0%   { transform: scale(1);    opacity: .8; }
    100% { transform: scale(2.0);  opacity: 0; }
}

/* ===== STYLE 3 – Gradient ===== */
.fbw-style3 {
    background: linear-gradient(90deg, var(--fbw-bg, #667eea) 0%, #764ba2 100%);
    box-shadow: 0 -3px 20px rgba(102,126,234,.4);
}
.fbw-style3 .fbw-icon-wrap {
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,.35);
}
.fbw-arrow-icon {
    fill: currentColor;
    opacity: .75;
    animation: fbwBounce 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes fbwBounce {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(5px); }
}

/* ===== Device visibility ===== */
@media (max-width: 767px) {
    .fbw-hide-mobile { display: none !important; }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .fbw-hide-tablet { display: none !important; }
}
@media (min-width: 1025px) {
    .fbw-hide-desktop { display: none !important; }
}

/* ===== Shortcode inline variant ===== */
.fbw-shortcode-strip {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    border-radius: 8px !important;
    margin: 10px 0 !important;
    box-shadow: 0 3px 12px rgba(0,0,0,.14) !important;
}
