/* ── SPECTRA AI FAB (GLOBAL) ── */
.spectra-fab-container {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Moved to bottom-left as requested */
    z-index: 99999;
    cursor: pointer;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; /* Hide initially until injected */
}

/* Base states */
.spectra-fab-container:hover {
    transform: scale(1.05);
}

.spectra-fab-inner {
    display: flex;
    align-items: center;
    padding: 10px;
    height: 56px;
    box-sizing: border-box;
}

.spectra-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    position: relative;
    z-index: 2;
}

.spectra-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    opacity: 0;
    animation: spectra-pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    z-index: 1;
}

.spectra-text {
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    opacity: 0;
    margin-left: 0;
}
