.bslg-line-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin: 16px 0;
    align-items: flex-start;
}
.bslg-line-align-left { justify-content: flex-start; }
.bslg-line-align-center { justify-content: center; }
.bslg-line-align-right { justify-content: flex-end; }
.bslg-line-layout-column { flex-direction: column; align-items: stretch; }
.bslg-line-layout-column.bslg-line-align-left { align-items: flex-start; }
.bslg-line-layout-column.bslg-line-align-center { align-items: center; }
.bslg-line-layout-column.bslg-line-align-right { align-items: flex-end; }
.bslg-line-width-full { width: 100%; }

.bslg-line-logo-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    margin-right: 10px;
    border-radius: 50%;
    background: #fff;
    color: #06C755;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}
.bslg-line-logo-icon:after {
    content: '';
    position: absolute;
    left: 6px;
    bottom: -2px;
    width: 8px;
    height: 8px;
    background: #fff;
    transform: rotate(35deg);
    border-radius: 1px;
}
.bslg-line-logo-icon + .bslg-line-btn-text { display:inline-block; }

.bslg-line-width-full .bslg-line-btn { width: 100%; }
.bslg-line-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    border-radius: 999px;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    line-height: 1.25;
    box-shadow: 0 6px 14px rgba(0,0,0,.15);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    max-width: 100%;
    box-sizing: border-box;
}
.bslg-line-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 9px 18px rgba(0,0,0,.20);
    opacity: .92;
}
.bslg-line-btn-disabled {
    background: #999 !important;
    cursor: not-allowed;
    box-shadow: none;
}
.bslg-line-button-unit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 100%;
}
.bslg-line-qr-position-top,
.bslg-line-qr-position-bottom { flex-direction: column; }
.bslg-line-qr-position-left,
.bslg-line-qr-position-right { flex-direction: row; }
.bslg-line-qr-wrap {
    display: inline-block !important;
    padding: 12px !important;
    margin: 0 !important;
    background: #fff !important;
    border: 3px solid currentColor !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    line-height: 0 !important;
    flex: 0 0 auto !important;
}
.bslg-line-qr-table,
.bslg-line-qr-table tr,
.bslg-line-qr-table td {
    border: 0 !important;
    box-shadow: none !important;
}
.bslg-line-qr-missing {
    min-width: 220px;
    padding: 18px;
    color: #b00020;
    background: #fff5f5;
    border: 1px solid #f1b4b4;
    border-radius: 8px;
    line-height: 1.5;
    font-weight: 700;
}
@media (max-width: 767px) {
    .bslg-line-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .bslg-line-button-unit { width: 100%; }
    .bslg-line-qr-position-left,
    .bslg-line-qr-position-right { flex-direction: column; }
    .bslg-line-btn { width: 100% !important; }
}
