.wbg-floating-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

/* Schwebender Modus (fixed) */
.wbg-floating-btns--fixed {
    position: fixed;
    z-index: 9999;
}

.wbg-floating-btns--fixed.wbg-floating-btns--bottom-right {
    bottom: var(--wbg-offset-v, 20px);
    right:  var(--wbg-offset-h, 20px);
}

.wbg-floating-btns--fixed.wbg-floating-btns--bottom-left {
    bottom: var(--wbg-offset-v, 20px);
    left:   var(--wbg-offset-h, 20px);
}

.wbg-floating-btns--fixed.wbg-floating-btns--top-right {
    top:   var(--wbg-offset-v, 20px);
    right: var(--wbg-offset-h, 20px);
}

.wbg-floating-btns--fixed.wbg-floating-btns--top-left {
    top:  var(--wbg-offset-v, 20px);
    left: var(--wbg-offset-h, 20px);
}

/* Button */
.wbg-floating-btn {
    display:         flex;
    align-items:     center;
    justify-content: center;
    gap:             8px;
    width:           52px;
    height:          52px;
    background-color: #8B1A2D;
    border-radius:   50%;
    color:           #fff;
    text-decoration: none;
    box-shadow:      0 4px 12px rgba(0, 0, 0, 0.25);
    transition:      transform 0.2s ease, box-shadow 0.2s ease;
    overflow:        hidden;
    white-space:     nowrap;
}

.wbg-floating-btn:hover {
    transform:       scale(1.08);
    text-decoration: none;
    color:           #fff;
}

/* Wenn Beschriftung sichtbar → Pille-Form */
.wbg-floating-btn:has(.wbg-floating-btn__label) {
    width:         auto;
    padding:       0 16px 0 12px;
    border-radius: 26px;
}

.wbg-floating-btn__icon {
    display:         flex;
    align-items:     center;
    justify-content: center;
    flex-shrink:     0;
}

.wbg-floating-btn__icon i {
    font-size:   22px;
    line-height: 1;
}

.wbg-floating-btn__icon svg {
    width:  22px;
    height: 22px;
    fill:   currentColor;
}

.wbg-floating-btn__label {
    font-size: 14px;
    font-weight: 500;
}
