/**
 * Fixed Button King — Estilos
 * Plugin URI: https://exomarketer.com/plugins/fixed-button-king
 * Version:    1.0.0
 * Author:     Exomarketer
 *
 * ✏️ Para personalizar colores, edita las variables de abajo:
 *    --fbk-border-color : color del borde e ícono (dorado por defecto)
 *    --fbk-text-color   : color del texto
 *    --fbk-bg-color     : color de fondo del botón
 */

/* ─── CONTENEDOR PRINCIPAL (CENTRADO) ─────────────────────────── */
#fbk-widget-container {
    --fbk-border-color: #D4AF37;
    --fbk-text-color: #2c2c2c;
    --fbk-bg-color: #ffffff;

    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 30px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Estado Visible */
#fbk-widget-container.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* ─── BOTÓN PRINCIPAL ─────────────────────────────────────────── */
.fbk-btn-main {
    background-color: var(--fbk-bg-color);
    color: var(--fbk-text-color);
    border: 2px solid var(--fbk-border-color);

    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 50px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

    display: flex;
    align-items: center;
    gap: 12px;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    cursor: pointer;

    animation: fbk-gold-pulse 3s infinite;
}

.fbk-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--fbk-text-color);
}

/* ─── ÍCONO ───────────────────────────────────────────────────── */
.fbk-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--fbk-border-color);
    display: block;
}

/* ─── BOTÓN DE CERRAR (NEGRO PREMIUM) ─────────────────────────── */
.fbk-close-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;

    width: 26px;
    height: 26px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: -12px;
    right: -8px;

    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10002;
    font-weight: bold;
    padding: 0;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.fbk-close-btn:hover {
    transform: scale(1.1);
    background: #333;
}

.fbk-close-btn svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
}

/* ─── ANIMACIÓN "GOLD PULSE" ──────────────────────────────────── */
@keyframes fbk-gold-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    #fbk-widget-container {
        bottom: 20px;
    }

    .fbk-btn-main {
        padding: 12px 24px;
        font-size: 14px;
    }
}