      /* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
}

        /* Popup Container */
        #popupContainer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            overflow: auto;
            display: none;
            opacity: 1;
            transition: opacity 0.4s ease;
        }

        /* Premium Geri Dön Butonu - AŞAĞIDA */
        .premium-back-btn {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            cursor: pointer;
            z-index: 10000;
            font-weight: 600;
            color: white;
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            min-width: 180px;
            justify-content: center;
        }

        .premium-back-btn:hover {
            transform: translateX(-50%) translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.5);
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        }

        .premium-back-btn i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .premium-back-btn:hover i {
            transform: translateX(-3px);
        }

        /* Menu Container Styles */
        .menu-container {
            max-width: 900px;
            margin: 40px auto 100px;
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            position: relative;
        }

        .menu-header h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 25px;
            font-size: 2.8em;
            border-bottom: 4px solid #e74c3c;
            padding-bottom: 15px;
            font-weight: bold;
        }

        .menu-category {
            display: grid;
            gap: 30px;
            margin-top: 30px;
        }

        .menu-item {
            display: flex;
            align-items: flex-start;
            padding: 25px;
            border-bottom: 2px dashed #ecf0f1;
            position: relative;
            transition: all 0.3s ease;
            border-radius: 12px;
        }

        .menu-item:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .menu-item.sold-out {
            opacity: 0.5;
            position: relative;
        }

        .menu-item.sold-out::after {
            content: "STOKTA YOK";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-15deg);
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.4em;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .menu-item img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 12px;
            margin-right: 25px;
            border: 3px solid #e74c3c;
        }

        .menu-item-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .menu-item h3 {
            margin: 0 0 10px 0;
            color: #2c3e50;
            font-size: 1.6em;
            font-weight: bold;
        }

        .price-row {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .dots {
            flex: 1;
            border-bottom: 3px dotted #bdc3c7;
            margin: 0 15px;
            height: 8px;
        }

        .menu-item .price {
            font-weight: bold;
            color: #e74c3c;
            font-size: 1.5em;
            min-width: 80px;
            text-align: right;
        }

        .menu-item .description {
            color: #7f8c8d;
            font-size: 1em;
            line-height: 1.5;
            margin: 0;
            font-style: italic;
            padding-top: 10px;
            border-top: 1px solid #ecf0f1;
        }

        .message {
            text-align: center;
            color: #7f8c8d;
            font-size: 1.3em;
            padding: 60px 20px;
            background: #f8f9fa;
            border-radius: 12px;
            border: 2px dashed #bdc3c7;
        }

        .category-image {
            text-align: center;
            margin-bottom: 30px;
        }

        .category-image img {
            max-width: 100%;
            max-height: 300px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Garson Çağır Butonu */
        .btn-danger-custom {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 16px;
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
            transition: all 0.3s ease;
        }

        .btn-danger-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
            background: linear-gradient(135deg, #ee5a52, #ff6b6b);
            color: white;
        }

        /* Garson Modal */
        #garsonModal .modal-content {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            border-radius: 20px;
            border: 1px solid rgba(255, 107, 107, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            color: white;
        }

        #garsonModal .modal-header {
            border-bottom: 1px solid rgba(255, 107, 107, 0.3);
            background: rgba(255, 107, 107, 0.1);
            border-radius: 20px 20px 0 0;
            padding: 20px;
        }

        #garsonModal .modal-title {
            color: #ff6b6b;
            font-weight: 600;
            font-size: 1.3rem;
        }

        #garsonModal .btn-close {
            filter: invert(1);
            opacity: 0.8;
        }

        #garsonModal .btn-close:hover {
            opacity: 1;
        }

        #garsonModal .modal-body {
            padding: 30px 20px;
        }

        #garsonModal .form-label {
            color: #ff6b6b;
            font-weight: 500;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        #garsonModal .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 107, 107, 0.3);
            border-radius: 12px;
            color: white;
            padding: 12px 15px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        #garsonModal .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: #ff6b6b;
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
            color: white;
        }

        #garsonModal .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        #garsonModal .modal-footer {
            border-top: 1px solid rgba(255, 107, 107, 0.3);
            padding: 20px;
            background: rgba(255, 107, 107, 0.05);
            border-radius: 0 0 20px 20px;
        }

        #garsonModal .btn-secondary {
            background: rgba(108, 117, 125, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: white;
            padding: 10px 25px;
            transition: all 0.3s ease;
        }

        #garsonModal .btn-secondary:hover {
            background: rgba(108, 117, 125, 0.5);
            transform: translateY(-1px);
        }

        #garsonModal .btn-primary {
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            padding: 10px 25px;
            transition: all 0.3s ease;
        }

        #garsonModal .btn-primary:hover {
            background: linear-gradient(135deg, #ee5a52, #ff6b6b);
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        /* Durum Mesajı */
        #waiterCallStatus {
            font-weight: 500;
            text-align: center;
            min-height: 24px;
            padding: 5px;
            border-radius: 8px;
            background: rgba(40, 167, 69, 0.1);
            border: 1px solid rgba(40, 167, 69, 0.3);
        }

        /* Responsive Tasarım */
        @media (max-width: 768px) {
            .menu-container {
                margin: 20px 15px 80px;
                padding: 20px;
            }
            
            .menu-item {
                flex-direction: column;
                text-align: center;
            }
            
            .menu-item img {
                margin-right: 0;
                margin-bottom: 15px;
                width: 100%;
                max-width: 200px;
                height: 150px;
            }
            
            .price-row {
                justify-content: center;
            }
            
            .premium-back-btn {
                bottom: 20px;
                padding: 12px 20px;
                font-size: 14px;
                min-width: 160px;
            }
            
            .premium-back-btn span {
                display: inline-block;
            }
            
            .premium-back-btn i {
                font-size: 12px;
            }

            .btn-danger-custom {
                padding: 10px 25px;
                font-size: 14px;
            }
            
            #garsonModal .modal-dialog {
                margin: 20px;
            }
            
            #garsonModal .modal-content {
                border-radius: 15px;
            }
            
            #garsonModal .modal-header,
            #garsonModal .modal-footer {
                padding: 15px;
            }
            
            #garsonModal .modal-body {
                padding: 20px 15px;
            }
        }

        /* Input Number için özel stil */
        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        input[type="number"] {
            -moz-appearance: textfield;
        }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* Loading Ekranı */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-logo {
    max-width: 200px;
    max-height: 200px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

/* Dil Seçici */
.lang-dropdown {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-dropdown .btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50px;
    padding: 8px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.lang-dropdown .btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin: 20px auto;
    padding: 20px;
    max-width: 95%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-logo {
    max-width: 120px;
    max-height: 120px;
    margin-bottom: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header h1 {
    color: #1a2a6c;
    font-weight: 700;
    font-size: 2.2rem;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.griditem {
    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.griditem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
    transition: all 0.4s ease;
}

.griditem:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.griditem:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.griditem p {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 20px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 100%;
}

/* Butonlar */
.btn-danger-custom {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    border: none;
    border-radius: 50px;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(255, 75, 43, 0.4);
    transition: all 0.3s ease;
    margin: 20px 0;
}

.btn-danger-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 75, 43, 0.6);
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
}

/* Modal */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(45deg, #1a2a6c, #b21f1f);
    color: white;
    border-bottom: none;
    padding: 20px;
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    border-top: none;
    padding: 20px;
}

.btn-close {
    filter: invert(1);
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(26, 42, 108, 0.25);
    border-color: #1a2a6c;
}

/* Wi-Fi Bilgileri */
.wifi-password-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    margin: 25px auto;
    max-width: 95%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wifi-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #1a2a6c;
    font-weight: 600;
    font-size: 1.3rem;
}

.wifi-header i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.wifi-info-line {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.wifi-password-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 10px;
}

.wifi-password-display {
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.copy-btn {
    background: #1a2a6c;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: #0d1a4d;
    transform: scale(1.05);
}

.copy-status {
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

/* İletişim Bölümü */
.iletisim {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 25px auto;
    max-width: 95%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.iletisim h2 {
    color: #1a2a6c;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 1.8rem;
    border-bottom: 2px solid #1a2a6c;
    padding-bottom: 10px;
}

.iletisim p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.iletisim strong {
    min-width: 120px;
    display: flex;
    align-items: center;
    color: #1a2a6c;
}

.iletisim i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.iletisim a {
    color: #1a2a6c;
    text-decoration: none;
    transition: color 0.3s;
}

.iletisim a:hover {
    color: #b21f1f;
    text-decoration: underline;
}

/* Sosyal Medya Linkleri */
.sosyallink {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.sosyallink a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #1a2a6c;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sosyallink a:hover {
    background: #1a2a6c;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Popup Container */
#popupContainer {
    background: rgba(0, 0, 0, 0.95);
    z-index: 9998;
}

.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    color: #1a2a6c;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.back-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#popupContent {
    padding-top: 70px;
    color: white;
}



/* Responsive Tasarım */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 15px;
    }
    
    .griditem {
        height: 180px;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
    
    .site-logo {
        max-width: 100px;
        max-height: 100px;
    }
    
    .iletisim p {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .iletisim strong {
        min-width: auto;
        margin-bottom: 5px;
    }
    
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    header {
        margin: 10px auto;
        padding: 15px;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    .btn-danger-custom {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .wifi-password-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .sosyallink a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
  /* Popup Container */
        #popupContainer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            overflow: auto;
            display: none;
        }

        .back-btn {
            position: fixed;
            top: 20px;
            left: 20px;
            background: #fff;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            z-index: 10000;
            font-weight: bold;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: #f0f0f0;
            transform: translateX(-3px);
        }

        /* Menu Container Styles */
        .menu-container {
            max-width: 900px;
            margin: 80px auto 40px;
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .menu-header h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 25px;
            font-size: 2.8em;
            border-bottom: 4px solid #e74c3c;
            padding-bottom: 15px;
            font-weight: bold;
        }

        .menu-category {
            display: grid;
            gap: 30px;
            margin-top: 30px;
        }

        .menu-item {
            display: flex;
            align-items: flex-start;
            padding: 25px;
            border-bottom: 2px dashed #ecf0f1;
            position: relative;
            transition: all 0.3s ease;
            border-radius: 12px;
        }

        .menu-item:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .menu-item.sold-out {
            opacity: 0.5;
            position: relative;
        }

        .menu-item.sold-out::after {
            content: "STOKTA YOK";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-15deg);
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.4em;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .menu-item img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 12px;
            margin-right: 25px;
            border: 3px solid #e74c3c;
        }

        .menu-item-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .menu-item h3 {
            margin: 0 0 10px 0;
            color: #2c3e50;
            font-size: 1.6em;
            font-weight: bold;
        }

        .price-row {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .dots {
            flex: 1;
            border-bottom: 3px dotted #bdc3c7;
            margin: 0 15px;
            height: 8px;
        }

        .menu-item .price {
            font-weight: bold;
            color: #e74c3c;
            font-size: 1.5em;
            min-width: 80px;
            text-align: right;
        }

        .menu-item .description {
            color: #7f8c8d;
            font-size: 1em;
            line-height: 1.5;
            margin: 0;
            font-style: italic;
            padding-top: 10px;
            border-top: 1px solid #ecf0f1;
        }

        .message {
            text-align: center;
            color: #7f8c8d;
            font-size: 1.3em;
            padding: 60px 20px;
            background: #f8f9fa;
            border-radius: 12px;
            border: 2px dashed #bdc3c7;
        }

        .category-image {
            text-align: center;
            margin-bottom: 30px;
        }

        .category-image img {
            max-width: 100%;
            max-height: 300px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .menu-container {
                margin: 60px 15px 20px;
                padding: 20px;
            }
            
            .menu-item {
                flex-direction: column;
                text-align: center;
            }
            
            .menu-item img {
                margin-right: 0;
                margin-bottom: 15px;
                width: 100%;
                max-width: 200px;
                height: 150px;
            }
            
            .price-row {
                justify-content: center;
            }
            
            .back-btn {
                top: 10px;
                left: 10px;
                padding: 10px 15px;
                font-size: 0.9em;
            }
        }
        /* Garson Çağırma Butonu - Sol Alta Sabitlenmiş */
.garson-cagir-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.garson-cagir-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

.garson-cagir-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
    background: linear-gradient(135deg, #c82333, #bd2130);
}

.garson-cagir-btn:active {
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(220, 53, 69, 0.8);
    }
    100% {
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    }
}

/* Çağrı Tipi Butonları */
.cagri-tipi-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.cagri-tipi-btn {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 10px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}

.cagri-tipi-btn:hover {
    border-color: #007bff;
    background: #e7f3ff;
}

.cagri-tipi-btn.active {
    border-color: #007bff;
    background: #007bff;
    color: white;
}

.cagri-tipi-btn i {
    font-size: 16px;
    margin-bottom: 2px;
}

.cagri-tipi-btn span {
    font-weight: 500;
}

/* Modal Stilleri */
#garsonModal .modal-header {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border-bottom: none;
}

#garsonModal .modal-title {
    font-weight: 600;
}

#garsonModal .btn-close {
    filter: invert(1);
}

#garsonModal .btn-primary {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
}

#garsonModal .btn-primary:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
}

/* Responsive Tasarım */
@media (max-width: 576px) {
    .garson-cagir-fixed {
        bottom: 15px;
        left: 15px;
    }
    
    .garson-cagir-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .cagri-tipi-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cagri-tipi-btn {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .cagri-tipi-btn i {
        font-size: 14px;
    }
}