.ab-floating-bar {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: ab-slide-up 0.8s ease-out forwards;
    z-index: 9999;
}

.ab-btn {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    padding: 12px 20px;
    border-right: 1px solid #eee;
    transition: background 0.3s, color 0.3s;
    font-family: "Inter", sans-serif;
}

.ab-btn:last-child {
    border-right: none;
}

.ab-btn:hover {
    background: #f0f0f0;
    color: #000;
}

@keyframes ab-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsief gedrag */
@media (max-width: 600px) {
    .ab-floating-bar {
        flex-direction: column;
        right: 15px;
        bottom: 15px;
    }

    .ab-btn {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .ab-btn:last-child {
        border-bottom: none;
    }
}
