@font-face {
    font-family: 'FQB Local Font';
    src: url('../../fonts/RedHatDisplay-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

.fqb-fixed-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    background-color: var(--fqb-bg-color, #0073aa);
    color: var(--fqb-text-color, #ffffff);
    text-decoration: none;
    font-family: 'FQB Local Font', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    line-height: 1;
}

.fqb-fixed-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28), 0 4px 10px rgba(0, 0, 0, 0.15);
    color: var(--fqb-text-color, #ffffff);
    text-decoration: none;
    filter: brightness(1.08);
}

.fqb-fixed-btn:active {
    transform: translateY(-1px) scale(0.99);
}

.fqb-fixed-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.fqb-fixed-btn:hover svg {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .fqb-fixed-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 18px;
        font-size: 12px;
        gap: 8px;
    }
    
    .fqb-fixed-btn svg {
        width: 18px;
        height: 18px;
    }
}
