/* Müşteri Menü Stilleri */

:root {
    --tema: #FF6B35;
}

* { -webkit-tap-highlight-color: transparent; }

body {
    font-family: 'Inter', sans-serif;
    background: #F8F9FA;
}

.menu-hero {
    position: relative;
    height: 260px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.menu-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.75));
}

.kategori-cubugu {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #eee;
}
.kategori-cubugu::-webkit-scrollbar { display: none; }

.kategori-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f3f4f6;
    color: #374151;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s;
}
.kategori-btn.aktif {
    background: var(--tema);
    color: white;
    box-shadow: 0 8px 20px -5px rgba(255,107,53,.5);
}

.urun-kart {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px -8px rgba(0,0,0,.1);
    transition: all 0.3s;
    cursor: pointer;
}
.urun-kart:active { transform: scale(0.98); }

.float-btn {
    position: fixed;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--tema);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,.3);
    z-index: 45;
    transition: transform .25s;
    cursor: pointer;
    border: none;
}
.float-btn:active { transform: scale(0.9); }
.float-btn-garson { bottom: 85px; background: #06D6A0; }
.float-btn-wifi { bottom: 150px; background: #2D1B69; }
.float-btn-sepet {
    bottom: 20px;
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
    gap: 10px;
}

.sepet-rozet {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: var(--tema);
    font-size: .7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-sheet {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.modal-sheet.acik { opacity: 1; pointer-events: auto; }
.modal-sheet-icerik {
    background: white;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 24px 24px 0 0;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.modal-sheet.acik .modal-sheet-icerik { transform: translateY(0); }

.etiket-rozet-menu {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 11px;
    border-radius: 10px;
    font-size: .7rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .modal-sheet { align-items: center; }
    .modal-sheet-icerik {
        max-height: 85vh;
        border-radius: 24px;
        transform: scale(.9);
    }
    .modal-sheet.acik .modal-sheet-icerik { transform: scale(1); }
}
