/* style.css */
body {
    -webkit-tap-highlight-color: transparent;
}

.touch-target {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobil Hamburger Menü */
#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: white;
    z-index: 100;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

#mobile-menu.open {
    right: 0;
}

#menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 90;
    display: none;
}

#menu-overlay.show {
    display: block;
}

.desktop-view-btn {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    margin-top: auto;
    text-align: center;
    font-weight: bold;
    width: 100%;
}

.bottom-sheet {
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-sheet.open {
    transform: translateY(0);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}