/**
 * Waiter Tema - CSS Stilleri
 * Garson sipariş giriş sayfası tasarımına benzer kart tabanlı tema
 */

/* Reset ve Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: radial-gradient(circle at 20% 20%, #eef2ff 0, #f8fafc 35%, #f3f4f6 70%);
    min-height: 100vh;
    color: #1a202c;
    line-height: 1.6;
    padding-bottom: 80px;
}

/* Wrapper */
.waiter-menu-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Header */
.waiter-header {
    background: white;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.waiter-header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.waiter-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.waiter-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.waiter-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
}

.waiter-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.waiter-table-info {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: #eef2ff;
    border-radius: 8px;
    font-size: 0.875rem;
}

.waiter-table-label {
    color: #6366f1;
    font-weight: 500;
}

.waiter-table-number {
    color: #4338ca;
    font-weight: 700;
}

/* Dil Seçici */
.waiter-language-selector {
    position: relative;
}

.waiter-language-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: #f3f4f6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.waiter-language-btn:hover {
    background: #e5e7eb;
}

.waiter-flag {
    font-size: 1rem;
}

.waiter-lang-name {
    font-weight: 500;
    color: #374151;
}

.waiter-language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.25rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 120px;
    z-index: 200;
    list-style: none;
    padding: 0.25rem;
}

.waiter-language-dropdown.show {
    display: block;
}

.waiter-language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: #374151;
    border-radius: 6px;
    transition: background 0.2s;
}

.waiter-language-option:hover,
.waiter-language-option.active {
    background: #f3f4f6;
}

/* Search */
.waiter-search-container {
    padding: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.waiter-search-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.waiter-search-input-wrapper {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.waiter-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    outline: none;
    transition: all 0.2s;
}

.waiter-search-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.waiter-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

/* Kategoriler */
.waiter-categories {
    padding: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.waiter-categories-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.waiter-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.waiter-category-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.waiter-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.waiter-category-card.active {
    border-color: #6366f1;
    background: #eef2ff;
}

.waiter-category-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waiter-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.waiter-category-placeholder {
    font-size: 2rem;
}

.waiter-category-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.waiter-category-count {
    font-size: 0.75rem;
    color: #6b7280;
}

.waiter-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

/* Products Modal (Slide-up) */
.waiter-products-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    max-height: calc(100vh - 100px);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    padding-bottom: 90px;
}

.waiter-products-modal.active {
    display: flex;
    transform: translateY(0);
}

.waiter-products-modal-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    background: white;
    border-radius: 20px 20px 0 0;
}

.waiter-products-modal-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
}

.waiter-products-modal-close {
    background: #e5e7eb;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.waiter-products-modal-cart-btn:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

.waiter-products-modal-close:hover {
    background: #d1d5db;
}

.waiter-products-modal-body {
    padding: 1rem 1.25rem 1.25rem;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

.waiter-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.waiter-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s;
}

.waiter-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.waiter-product-image {
    width: 100%;
    height: 120px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.waiter-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.waiter-product-info {
    padding: 0.75rem;
}

.waiter-product-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.waiter-product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #6366f1;
}

.waiter-product-add-btn {
    width: 100%;
    padding: 0.6rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

.waiter-product-add-btn:hover {
    background: #4f46e5;
}

/* Sticky Cart */
.waiter-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid #e5e7eb;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 12000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.waiter-sticky-cart.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%) !important;
}

.waiter-sticky-cart.visible {
    transform: translateY(0) !important;
    opacity: 1;
    pointer-events: auto;
}

.waiter-sticky-cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 1100px;
    margin: 0 auto;
    gap: 1rem;
}

.waiter-sticky-cart-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.waiter-sticky-cart-count {
    font-size: 0.875rem;
    color: #6b7280;
}

.waiter-sticky-cart-total {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.waiter-sticky-cart-btn {
    padding: 0.875rem 1.5rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.waiter-sticky-cart-btn:hover {
    background: #4f46e5;
}

.waiter-sticky-cart-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Cart Modal */
.waiter-cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15000;
    animation: fadeIn 0.2s;
}

.waiter-cart-modal.active {
    display: flex;
    flex-direction: column;
}

.waiter-cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.waiter-cart-modal-content {
    background: white;
    border-radius: 16px 16px 0 0;
    max-height: 80vh;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.waiter-cart-modal-header {
    padding: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.waiter-cart-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.waiter-cart-table-info {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.25rem 0 0 0;
}

.waiter-cart-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.waiter-cart-modal-close:hover {
    background: #f3f4f6;
}

.waiter-cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.waiter-cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.waiter-cart-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.waiter-cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
}

.waiter-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.waiter-cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.waiter-cart-item-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
}

.waiter-cart-item-price {
    font-size: 0.875rem;
    color: #6b7280;
}

.waiter-cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.waiter-cart-item-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.25rem;
    border-radius: 8px;
}

.waiter-cart-item-decrease,
.waiter-cart-item-increase {
    width: 28px;
    height: 28px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    flex-shrink: 0;
}

.waiter-cart-item-decrease {
    background-color: #ef4444;
    color: white;
}

.waiter-cart-item-increase {
    background-color: #22c55e;
    color: white;
}

.waiter-cart-item-quantity {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.waiter-cart-item-remove {
    width: 28px;
    height: 28px;
    border: none;
    background-color: #6366f1;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px;
    flex-shrink: 0;
}

.waiter-cart-modal-footer {
    padding: 1.25rem;
    border-top: 1px solid #e5e7eb;
    background: white;
}

.waiter-cart-modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.waiter-cart-modal-submit {
    width: 100%;
    padding: 1rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.waiter-cart-modal-submit:hover {
    background: #4f46e5;
}

.waiter-cart-modal-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Product Detail Modal */
.waiter-product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 16000;
    animation: fadeIn 0.2s;
}

.waiter-product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.waiter-product-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.waiter-product-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s;
    position: relative;
    z-index: 1;
}

.waiter-product-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e5e7eb;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.waiter-product-modal-close:hover {
    background: #d1d5db;
}

.waiter-product-modal-body {
    padding: 1.25rem;
}

.waiter-product-detail-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
    margin-bottom: 1rem;
}

.waiter-product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.waiter-product-detail-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.waiter-product-detail-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.waiter-product-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 1rem;
}

.waiter-product-detail-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.waiter-product-detail-quantity-label {
    font-weight: 600;
    color: #374151;
}

.waiter-product-detail-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Varyasyonlar */
.waiter-product-variations {
    margin: 1rem 0;
    display: block;
}

.waiter-variation-group {
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.waiter-variation-group-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.waiter-variation-values {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.waiter-variation-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.waiter-variation-option:hover {
    border-color: #6366f1;
    background: #f0f4ff;
}

.waiter-variation-option input[type="radio"]:checked + span,
.waiter-variation-option input[type="checkbox"]:checked + span {
    font-weight: 600;
    color: #6366f1;
}

.waiter-variation-option input[type="radio"]:checked ~ .waiter-variation-price,
.waiter-variation-option input[type="checkbox"]:checked ~ .waiter-variation-price {
    color: #4f46e5;
    font-weight: 600;
}

.waiter-variation-option input[type="radio"]:checked,
.waiter-variation-option input[type="checkbox"]:checked {
    accent-color: #6366f1;
}

.waiter-variation-price {
    margin-left: auto;
    color: #4f46e5;
    font-weight: 600;
    font-size: 0.875rem;
}

.waiter-variation-select {
    width: 100%;
    padding: 0.75rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s;
}

.waiter-variation-select:hover {
    border-color: #6366f1;
}

.waiter-variation-select:focus {
    outline: none;
    border-color: #6366f1;
}

.waiter-product-detail-qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waiter-product-detail-qty-btn.decrease {
    background: #ef4444;
    color: white;
}

.waiter-product-detail-qty-btn.increase {
    background: #22c55e;
    color: white;
}

.waiter-product-detail-qty-value {
    min-width: 40px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.waiter-product-detail-add-btn {
    width: 100%;
    padding: 1rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.waiter-product-detail-add-btn:hover {
    background: #4f46e5;
}

/* Footer */
.waiter-footer {
    padding: 2rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.waiter-footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.waiter-footer-icon {
    font-size: 1.25rem;
}

.waiter-footer-text,
.waiter-footer-link {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
}

.waiter-footer-link:hover {
    color: #6366f1;
}

.waiter-footer-copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.waiter-footer-copyright p {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Responsive */
@media (min-width: 768px) {
    .waiter-categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .waiter-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 767px) {
    .waiter-header-content {
        flex-wrap: wrap;
    }
    
    .waiter-table-info {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
}

/* ============================================
   GARSON ÇAĞIR SİSTEMİ (Zorunlu - Tema Bağımsız)
   ============================================ */

/* Garson Çağır Butonu */
.garson-cagir-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.garson-cagir-btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
}

.garson-cagir-btn svg {
    flex-shrink: 0;
}

/* Garson Çağır Modal */
.garson-cagir-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.garson-cagir-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.garson-cagir-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow-y: auto;
    z-index: 1;
}

.garson-cagir-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #374151;
}

.garson-cagir-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.garson-cagir-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    text-align: center;
}

.garson-cagir-subtitle {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    text-align: center;
}

.garson-cagir-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.garson-cagir-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.garson-cagir-option:hover {
    background: #f3f4f6;
    border-color: #6366f1;
    transform: translateX(4px);
}

.garson-cagir-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.garson-cagir-option-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a202c;
    flex: 1;
}

/* Diğer Seçeneği */
.garson-cagir-diger {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.garson-cagir-textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 1rem;
}

.garson-cagir-textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.garson-cagir-diger-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.garson-cagir-cancel,
.garson-cagir-send {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.garson-cagir-cancel {
    background: #f3f4f6;
    color: #374151;
}

.garson-cagir-cancel:hover {
    background: #e5e7eb;
}

.garson-cagir-send {
    background: #6366f1;
    color: white;
}

.garson-cagir-send:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

/* Bildirim */
.garson-cagir-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    font-size: 0.9375rem;
    font-weight: 500;
    z-index: 10001;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90%;
    text-align: center;
}

.garson-cagir-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.garson-cagir-notification.success {
    border-left: 4px solid #10b981;
}

.garson-cagir-notification.error {
    border-left: 4px solid #ef4444;
}

/* Responsive */
@media (max-width: 640px) {
    .garson-cagir-content {
        padding: 1.5rem;
        max-height: 95vh;
    }
    
    .garson-cagir-title {
        font-size: 1.25rem;
    }
    
    .garson-cagir-option {
        padding: 0.875rem;
    }
    
    .garson-cagir-icon {
        font-size: 1.25rem;
    }
}
