/* Mobile Bottom Bar Styles */

.mbb-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none; /* Varsayılan olarak gizli */
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 0 !important;
    gap: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Sadece mobil cihazlarda göster */
@media screen and (max-width: 768px) {
    .mbb-bottom-bar {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        padding: 0 !important;
        gap: 0 !important;
        margin: 0 !important;
    }
    
    .mbb-button {
        border-radius: 0 !important;
        margin: 0 !important;
        border: none !important;
        box-sizing: border-box !important;
        width: auto !important;
    }
}

.mbb-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0 !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box;
    width: 100%;
}

.mbb-button:hover,
.mbb-button:active {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.mbb-button:active {
    transform: translateY(0);
}

/* Body padding ekle ki içerik butonların altında kalmasın */
@media screen and (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
}

/* Tablet ve üzeri cihazlarda gizle */
@media screen and (min-width: 769px) {
    .mbb-bottom-bar {
        display: none !important;
    }
}

