.scb-wrapper {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 9999;
}

/* Badge bleibt IM Viewport */
.scb-badge {
    display: flex;
    flex-direction: column;
    gap: 12px;

    padding: 12px;

    border-radius: 30px;

    align-items: center;

    /* wichtig: kein Offscreen mehr */
    margin-right: 10px;
}

/* Icons */
.scb-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: inherit;
}

.scb-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Tooltip */
.scb-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);

    background: #fff;
    color: #000;

    padding: 12px;
    border-radius: 10px;

    width: 220px;

    font-size: 13px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.scb-wrapper:hover .scb-tooltip {
    opacity: 1;
    visibility: visible;
}

/* =========================
   MOBILE FALLBACK (BOTTOM BAR)
========================= */

@media (max-width: 768px) {

    .scb-wrapper {
        top: auto;
        bottom: 10px;
        transform: none;

        width: 100%;
        display: flex;
        justify-content: center;
    }

    .scb-badge {
        flex-direction: row;
        border-radius: 50px;
    }

    .scb-tooltip {
        display: none;
        /* mobile bewusst aus */
    }
}