        :root {
            --primary-color: #e79a1e;
            --primary-dark: #d08000;
            --primary-light: rgba(231, 154, 30, 0.1);
            --secondary-color: #fff8eb;
            --text-dark: #333333;
            --text-light: #777777;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --border-radius: 16px;
            --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-gray);
            color: var(--text-dark);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        
        a {
            text-decoration: none !important;
        }
        
        .logo-container {
            background-color: var(--primary-color);
            background-image: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
            padding: 60px 0 40px;
            text-align: center;
        }
        
        .restaurant-name {
            color: var(--white);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .restaurant-name h1 {
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 0;
        }
        
        .restaurant-name h2 {
            font-weight: 500;
            font-size: 1.5rem;
        }
        
        .search-container {
            position: absolute;
            top: 15px;
            right: 15px;
        }
        
        .search-icon {
            font-size: 1.3rem;
            color: var(--white);
            background-color: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .search-icon:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            flex-direction: column;
        }
        
        .search-box {
            width: 100%;
            max-width: 500px;
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .search-header {
            display: flex;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .search-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 1.1rem;
            padding: 0 15px;
            font-family: 'Poppins', sans-serif;
        }
        
        .search-close {
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0 10px;
        }
        
        .search-results {
            max-height: 60vh;
            overflow-y: auto;
            padding: 15px;
        }
        
        .search-result-item {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .search-result-item:hover {
            background-color: var(--light-gray);
        }
        
        .search-result-image {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .search-result-info h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .search-result-info p {
            font-size: 0.9rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0;
        }
        
        .search-no-results {
            text-align: center;
            padding: 30px;
            color: var(--text-light);
        }
        
        .main-container {
            background-color: var(--white);
            border-radius: 30px 30px 0 0;
            margin-top: -20px;
            padding: 25px 15px;
            position: relative;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .category-cards {
            margin-bottom: 25px;
        }
        
        .category-card {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            height: 100%;
            cursor: pointer;
        }
        
        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .category-image {
            height: 130px;
            object-fit: cover;
        }
        
        .category-title {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            color: var(--white);
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 30px 15px 15px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .tab-container {
            position: sticky;
            top: 0;
            background-color: var(--white);
            z-index: 900;
            padding: 10px 0;
            margin: 0 -15px 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        
        .tab-buttons {
            display: flex;
            overflow-x: auto;
            white-space: nowrap;
            padding: 0 15px;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }
        
        .tab-buttons::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        
        .tab-buttons .btn {
            border-radius: 30px;
            margin-right: 10px;
            background-color: var(--light-gray);
            color: var(--text-dark);
            border: none;
            padding: 10px 20px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .tab-buttons .btn.active {
            background-color: var(--primary-color);
            color: var(--white);
            box-shadow: 0 4px 10px rgba(231, 154, 30, 0.3);
        }
        
        .menu-category {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 25px 0 20px;
            font-weight: 600;
            position: relative;
        }
        
        .menu-item {
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-bottom: 15px;
            box-shadow: var(--box-shadow);
            transition: transform 0.3s ease;
            border: none;
        }
        
        .menu-item:hover {
            transform: translateY(-3px);
        }
        
        .menu-item-image {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }
        
        .menu-item:hover .menu-item-image {
            transform: scale(1.05);
        }
        
        .menu-item-price {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 5px;
        }
        
        .menu-item-name {
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--text-dark);
        }
        
        .footer {
            background-color: var(--light-gray);
            padding: 20px 15px;
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-light);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            margin-top: 30px;
        }
        
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--white);
            display: flex;
            justify-content: space-around;
            padding: 12px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--text-light);
            font-size: 0.7rem;
            transition: color 0.3s ease;
            width: 50%;
        }
        
        .nav-item.active {
            color: var(--primary-color);
        }
        
        .nav-icon {
            font-size: 1.3rem;
            margin-bottom: 4px;
        }
        
        .menu-content {
            display: none;
        }
        
        .menu-content.active {
            display: block;
        }
        
        @media (max-width: 576px) {
            .menu-item-name {
                font-size: 1.1rem;
            }
            
            .menu-item-price {
                font-size: 1.1rem;
            }
            
            .menu-category {
                font-size: 1.6rem;
            }
            
            .restaurant-name h1 {
                font-size: 1.8rem;
            }
            
            .restaurant-name h2 {
                font-size: 1.2rem;
            }
        }
/* ADMİN PANEL CSS BAŞLANGIÇ */
        :root {
            --primary-color: #e79a1e;
            --primary-dark: #d08000;
            --primary-light: rgba(231, 154, 30, 0.1);
            --secondary-color: #fff8eb;
            --text-dark: #333333;
            --text-light: #777777;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --border-radius: 16px;
            --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --sidebar-width: 280px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-gray);
            color: var(--text-dark);
            line-height: 1.6;
            min-height: 100vh;
        }
        
        a {
            text-decoration: none !important;
        }
        
        .login-container {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            padding: 20px;
        }
        
        .login-card {
            width: 100%;
            max-width: 450px;
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 40px;
        }
        
        .login-logo {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .login-logo h1 {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
        
        .login-logo p {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .login-form .form-control {
            height: 50px;
            border-radius: 10px;
            padding-left: 20px;
            font-size: 0.95rem;
            border: 1px solid #e1e1e1;
            margin-bottom: 20px;
        }
        
        .login-form .form-control:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        .login-form .btn-primary {
            height: 50px;
            border-radius: 10px;
            background-color: var(--primary-color);
            border: none;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .login-form .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .login-footer {
            text-align: center;
            margin-top: 30px;
            color: var(--text-light);
            font-size: 0.85rem;
        }
        
        .dashboard-container {
            display: flex;
            min-height: 100vh;
        }
        
        .sidebar {
            width: var(--sidebar-width);
            background-color: var(--white);
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            z-index: 1000;
            transition: all 0.3s ease;
            overflow-y: auto;
        }
        
        .sidebar-header {
            padding: 25px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .sidebar-header h3 {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 0;
        }
        
        .sidebar-header p {
            color: var(--text-light);
            font-size: 0.8rem;
            margin-bottom: 0;
        }
        
        .sidebar-menu {
            padding: 20px 0;
        }
        
        .menu-item {
            padding: 12px 25px;
            display: flex;
            align-items: center;
            color: var(--text-dark);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .menu-item:hover {
            background-color: var(--primary-light);
            color: var(--primary-color);
            border-left-color: var(--primary-color);
        }
        
        .menu-item.active {
            background-color: var(--primary-light);
            color: var(--primary-color);
            border-left-color: var(--primary-color);
            font-weight: 600;
        }
        
        .menu-icon {
            margin-right: 15px;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }
        
        .menu-text {
            font-size: 0.95rem;
        }
        
        .sidebar-footer {
            padding: 20px 25px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            position: absolute;
            bottom: 0;
            width: 100%;
            background-color: var(--white);
        }
        
        .user-info {
            display: flex;
            align-items: center;
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-weight: 600;
            margin-right: 12px;
        }
        
        .user-details h5 {
            font-size: 0.9rem;
            margin-bottom: 2px;
            font-weight: 600;
        }
        
        .user-details p {
            font-size: 0.75rem;
            color: var(--text-light);
            margin-bottom: 0;
        }
        
        .logout-btn {
            margin-top: 15px;
            width: 100%;
            padding: 8px;
            border-radius: 8px;
            background-color: #f8f9fa;
            border: 1px solid #e1e1e1;
            color: var(--text-dark);
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        
        .logout-btn:hover {
            background-color: #f1f1f1;
        }
        
        .main-content {
            flex: 1;
            margin-left: var(--sidebar-width);
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .page-title h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 5px;
        }
        
        .page-title p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0;
        }
        
        .header-actions .btn {
            border-radius: 10px;
            padding: 10px 20px;
            font-weight: 500;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .stat-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 25px;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }
        
        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background-color: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .content-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .card-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0;
        }
        
        .table-responsive {
            overflow-x: auto;
        }
        
        .table {
            width: 100%;
            margin-bottom: 0;
        }
        
        .table th {
            font-weight: 600;
            color: var(--text-dark);
            border-bottom-width: 1px;
            padding: 12px 15px;
            font-size: 0.9rem;
        }
        
        .table td {
            padding: 15px;
            vertical-align: middle;
            color: var(--text-dark);
            font-size: 0.9rem;
        }
        
        .table tr:hover {
            background-color: var(--light-gray);
        }
        
        .status-badge {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        .status-active {
            background-color: rgba(25, 135, 84, 0.1);
            color: #198754;
        }
        
        .status-inactive {
            background-color: rgba(220, 53, 69, 0.1);
            color: #dc3545;
        }
        
        .action-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            background-color: var(--light-gray);
            border: none;
            margin-right: 5px;
            transition: all 0.2s ease;
        }
        
        .action-btn:hover {
            background-color: var(--primary-light);
            color: var(--primary-color);
        }
        
        .action-btn.edit:hover {
            background-color: rgba(25, 135, 84, 0.1);
            color: #198754;
        }
        
        .action-btn.delete:hover {
            background-color: rgba(220, 53, 69, 0.1);
            color: #dc3545;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        
        .form-control {
            height: 45px;
            border-radius: 10px;
            border: 1px solid #e1e1e1;
            padding: 10px 15px;
            font-size: 0.9rem;
        }
        
        .form-control:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        .form-select {
            height: 45px;
            border-radius: 10px;
            border: 1px solid #e1e1e1;
            padding: 10px 15px;
            font-size: 0.9rem;
        }
        
        .form-select:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        textarea.form-control {
            height: auto;
            min-height: 100px;
        }
        
        .image-preview {
            width: 100%;
            height: 200px;
            border-radius: 10px;
            border: 1px dashed #e1e1e1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            margin-bottom: 15px;
        }
        
        .image-preview img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .image-preview .placeholder {
            color: var(--text-light);
            font-size: 0.9rem;
            text-align: center;
        }
        
        .image-preview .placeholder i {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }
        
        .custom-file-upload {
            display: inline-block;
            padding: 10px 20px;
            cursor: pointer;
            background-color: var(--light-gray);
            border-radius: 10px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .custom-file-upload:hover {
            background-color: var(--primary-light);
            color: var(--primary-color);
        }
        
        .custom-file-upload input[type="file"] {
            display: none;
        }
        
        .modal-content {
            border-radius: var(--border-radius);
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .modal-header {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 20px 25px;
        }
        
        .modal-title {
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .modal-body {
            padding: 25px;
        }
        
        .modal-footer {
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding: 20px 25px;
        }
        
        .btn-close:focus {
            box-shadow: none;
        }
        
        @media (max-width: 992px) {
            .sidebar {
                transform: translateX(-100%);
            }
            
            .sidebar.active {
                transform: translateX(0);
            }
            
            .main-content {
                margin-left: 0;
            }
            
            .toggle-sidebar {
                display: block;
            }
        }
        
        @media (max-width: 768px) {
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .page-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .header-actions {
                margin-top: 15px;
            }
        }
        
        .toggle-sidebar {
            display: none;
            background-color: var(--white);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1001;
            color: var(--text-dark);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .toggle-sidebar:hover {
            background-color: var(--primary-light);
            color: var(--primary-color);
        }
        
        .category-pill {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            background-color: var(--primary-light);
            color: var(--primary-color);
            font-size: 0.8rem;
            font-weight: 500;
            margin-right: 5px;
            margin-bottom: 5px;
        }
        
        .price-display {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .item-image {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            object-fit: cover;
        }
        
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .form-switch .form-check-input:focus {
            box-shadow: none;
        }
        
        .nav-tabs {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
        }
        
        .nav-tabs .nav-link {
            border: none;
            color: var(--text-light);
            padding: 10px 20px;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .nav-tabs .nav-link:hover {
            border-color: transparent;
            color: var(--primary-color);
        }
        
        .nav-tabs .nav-link.active {
            border-color: transparent;
            border-bottom: 2px solid var(--primary-color);
            color: var(--primary-color);
            background-color: transparent;
        }
        
        .settings-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 25px;
            margin-bottom: 20px;
        }
        
        .settings-card h5 {
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-dark);
        }
        
        .color-picker {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .color-option {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .color-option.active {
            border-color: var(--text-dark);
            transform: scale(1.1);
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .login-card {
            animation: fadeIn 0.5s ease forwards;
        }
        
        #dashboard {
            display: none;
        }