.msb-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    padding: 10px 20px;
    z-index: 99999;
    display: none; /* JS ile override edilecek */
    transform: translateY(100%); /* başlangıçta gizli */
    transition: transform 0.1s ease-in-out;
}

.msb-sticky-bar.visible {
    transform: translateY(0); /* görünür hale gelir */
}

.msb-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex: 1;
    max-width: 140px;
    margin: 0;
    padding: 5px 10px;
    color: #fff;
    background: #000;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #fff;
    transition: background 0.1s, color 0.1s;
    text-align: center;
}

.msb-btn:hover{
    color:#fff !important;
}

.msb-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 1024px) {
    .msb-sticky-bar {
        display: flex;
    }
}
