.category-section { margin-bottom: 25px; animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.category-title { margin: 0 0 15px 0; font-size: 1.3rem; font-weight: 800; color: #2C3E50; position: relative; padding-left: 12px; }
.category-title::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 5px; background: #1B4D3E; border-radius: 4px; }

/* Grid Sistemi - Mobilde 2'li, Tablette 3'lü, Masaüstünde 4'lü */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 600px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }

/* Ürün Kartı */
.menu-item { background-color: white; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); display: flex; flex-direction: column; height: 100%; border: 1px solid rgba(0,0,0,0.02); position: relative; transition: transform 0.2s; }
.menu-item:active { transform: scale(0.98); }
.menu-img { width: 100%; height: 140px; object-fit: cover; background-color: #f5f5f5; }
.menu-info { padding: 12px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
.menu-title { font-size: 0.95rem; font-weight: 700; color: #2C3E50; margin-bottom: 4px; line-height: 1.2; }
.menu-desc { font-size: 0.75rem; color: #7f8c8d; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.menu-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; min-height: 36px; }
.price { font-weight: 800; color: #1B4D3E; font-size: 1.1rem; }

/* Butonlar */
.add-btn { display: none; background-color: #1B4D3E; color: white; width: 34px; height: 34px; border-radius: 10px; align-items: center; justify-content: center; border: none; cursor: pointer; font-size: 1.2rem; }
body.can-order .add-btn { display: flex; } 

.qty-control-box { display: flex; align-items: center; background-color: #1B4D3E; color: white; border-radius: 10px; height: 34px; padding: 0 4px; gap: 4px; box-shadow: 0 3px 8px rgba(27, 77, 62, 0.3); }
.qty-control-btn { background: none; border: none; color: white; font-size: 1rem; cursor: pointer; width: 24px; height: 100%; display: flex; align-items: center; justify-content: center; }
.qty-val { font-weight: bold; font-size: 0.9rem; min-width: 16px; text-align: center; }
.sold-out-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.85); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #c0392b; z-index: 10; pointer-events: none; border: 2px solid #c0392b; font-size: 1.2rem; transform: rotate(-5deg); }

/* GARSON HEADER */
.waiter-header { background: #1B4D3E; padding: 10px 15px; position: sticky; top: 0; z-index: 900; display: none; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.waiter-header-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.waiter-info { display: flex; align-items: center; gap: 8px; color: white; }
.waiter-avatar { width: 32px; height: 32px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.pos-input-wrapper { display: flex; align-items: center; background: rgba(0,0,0,0.25); border-radius: 8px; padding: 4px 8px; border: 1px solid rgba(255,255,255,0.15); }
.input-label { color: rgba(255,255,255,0.8); font-size: 0.7rem; font-weight: bold; margin-right: 6px; }
.pos-table-input { background: transparent; border: none; color: #fff; width: 50px; font-size: 1.3rem; font-weight: 800; text-align: center; outline: none; }
.pos-table-input::placeholder { color: rgba(255,255,255,0.3); }
.logout-btn-header { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(192, 57, 43, 0.2); color: #e74c3c; border-radius: 8px; }

.search-wrapper { position: relative; margin: 15px 0 20px 0; }
.search-input { width: 100%; padding: 12px 15px 12px 40px; border: 2px solid #e0e0e0; border-radius: 12px; outline: none; font-size: 1rem; background: white; }
.search-input:focus { border-color: #1B4D3E; }
.search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #999; }