/**
 * Sticky Bottom Bar Block Styles
 *
 * @package Vision_Hall
 */

.sticky-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #F2EEE5;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1200;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.sticky-bottom-bar.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-bottom-bar__inner {
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sticky-bottom-bar__left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.sticky-bottom-bar__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #81F249;
}

.sticky-bottom-bar__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    color: #0D0D0D;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-bottom-bar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-bottom-bar--editor {
    position: static;
    transform: none;
    pointer-events: auto;
    margin-top: 12px;
}

.sticky-bottom-bar .buttons-line {
    margin: 0;
}

.sticky-bottom-bar .buttons-line .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .sticky-bottom-bar__inner {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-bottom-bar__text {
        white-space: normal;
    }

    .sticky-bottom-bar__right {
        width: 100%;
    }
}
