/* ============================================ */
/* FAB Buttons - Floating Action Buttons       */
/* ============================================ */

/* AI Advisor FAB - Desktop: Pill with icon + text */
.ask-ai-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    border: none;
    border-radius: 28px;
    padding: 16px 28px;
    min-width: 140px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
}

.ask-ai-fab i {
    font-size: 18px;
    line-height: 1;
}

.ask-ai-fab:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.ask-ai-fab:active {
    transform: translateY(0) scale(0.98);
}

/* Buy Credits FAB - Desktop: Pill with icon + text */
.buy-credits-fab {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 1000;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    padding: 10px 20px;
    min-width: 140px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
    transition: var(--transition-normal);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-family);
    animation: bounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.buy-credits-fab i {
    font-size: 14px;
    line-height: 1;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.buy-credits-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.45);
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.buy-credits-fab:active {
    transform: translateY(0);
}