        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #fafafa;
            color: #333;
            line-height: 1.6;

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            height: 100%;
            min-height: 300px;
            gap: 20px;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-area {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            
        }
       .header {
  background-color: #f0ede0;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 100%;
  max-width: 160px; /* desktop */
  height: auto;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 768px) {
  .logo {
    max-width: 130px;
  }
}

/* Mobil */
@media (max-width: 480px) {
  .logo {
    max-width: 100px;
  }
}


        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000000;
        }

        .search-area {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex: 1;
            max-width: 400px;
        }

        .search-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            align-items: center;
        }

        .search-icon {
            position: absolute;
            left: 12px;
            color: #666;
            pointer-events: none;
            z-index: 1;
        }

        .search-input {
            width: 100%;
            padding: 12px 12px 12px 40px;
            border: none;
            border-radius: 8px;
            background: white;
            font-size: 0.9rem;
            color: #333;
            outline: none;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .search-input::placeholder {
            color: #999;
        }

        .search-input:focus {
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .header-text {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .header-text h1 {
            font-size: 3rem;
            color: #000000;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .header-text p {
            color: #000000;
            font-size: 1.5rem;
        }

        /* Ana Kategoriler - Yatay Scrollable */
        .main-categories {
            display: flex;
            overflow-x: auto;
            gap: 16px;
            margin-bottom: 20px;
            padding: 0 20px 10px 20px;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }

        .main-categories::-webkit-scrollbar {
            height: 4px;
        }

        .main-categories::-webkit-scrollbar-track {
            background: transparent;
        }

        .main-categories::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 2px;
        }

        .main-category-card {
            min-width: 140px;
            width: 140px;
            height: 160px;
            background: white;
            border-radius: 16px;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
            border: 2px solid transparent;
        }

        .main-category-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }

        .main-category-card.active {
            border-color: #000;
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        }

        .main-category-image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .main-category-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            background: #f5f5f5;
        }

        .main-category-card.active .main-category-image {
            transform: scale(1.1);
        }

        .main-category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
            padding: 12px;
            display: flex;
            align-items: flex-end;
            height: 60%;
        }

        .main-category-name {
            font-size: 0.95rem;
            font-weight: 600;
            text-align: center;
            color: white;
            width: 100%;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        /* Alt Kategoriler - Butonlar */
        .sub-categories {
            display: flex;
            gap: 12px;
            margin-bottom: 30px;
            padding: 0 20px;
            flex-wrap: wrap;
        }

        .sub-category-btn {
            padding: 10px 20px;
            border: none;
            background: white;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            color: #000;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .sub-category-btn:hover {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .sub-category-btn.active {
            background: #000;
            color: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .menu-section {
            display: none;
        }

        .menu-section.active {
            display: block;
        }

        .section-title {
            font-size: 1.5rem;
            color: #b0b0b0;
            margin-bottom: 20px;
            padding-left: 0;
            border-left: none;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .products-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 40px;
        }

        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 16px;
            gap: 16px;
        }

        .product-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        }

        .product-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .product-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #000;
            margin: 0;
        }

        .product-description {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 0;
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #000000;
            margin-top: 4px;
        }

        .product-price::before {
            content: '₺';
            margin-right: 2px;
        }

        .product-image {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 12px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .add-btn {
            display: none;
        }

        /* Modal Yapısı */
        .product-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }

        .product-modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            padding: 24px;
            animation: slideUp 0.3s ease;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #666;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: #f5f5f5;
            color: #000;
        }

        .modal-body {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }

        .modal-image {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 12px;
            flex-shrink: 0;
            background: #f5f5f5;
        }

        .modal-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            margin: 0;
        }

        .modal-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: #000000;
            margin: 0;
        }

        .modal-price::before {
            content: '₺';
            margin-right: 3px;
        }

        .modal-description {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 768px) {
            .product-modal {
                align-items: flex-end;
                padding: 0;
            }

            .modal-content {
                padding: 20px;
                max-width: 100%;
                width: 100%;
                border-radius: 20px 20px 0 0;
                max-height: 80vh;
                animation: slideUpMobile 0.3s ease;
            }

            @keyframes slideUpMobile {
                from {
                    transform: translateY(100%);
                    opacity: 0;
                }
                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

            .modal-body {
                flex-direction: row;
                gap: 16px;
            }

            .modal-image {
                width: 100px;
                height: 100px;
            }

            .modal-title {
                font-size: 1.3rem;
            }

            .modal-price {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .header {
                padding: 30px 20px;
                min-height: auto;
                gap: 25px;
                justify-content: center;
            }

            .header-content {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 25px;
                width: 100%;
                max-width: 100%;
            }

            .logo-area {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .logo-text {
                font-size: 1.5rem;
                
            }

            .search-area {
                width: 100%;
                max-width: 100%;
                display: flex;
                justify-content: center;
            }

            .search-wrapper {
                width: 100%;
                max-width: 100%;
            }

            .search-input {
                font-size: 0.9rem;
                padding: 12px 12px 12px 40px;
                width: 100%;
            }

            .search-icon {
                width: 20px;
                height: 20px;
                left: 12px;
            }

            .header-text {
                width: 100%;
                gap: 10px;
            }

            .header-text h1 {
                font-size: 2.5rem;
                margin: 0;
            }

            .header-text p {
                font-size: 1.3rem;
                margin: 0;
            }

            .products-grid {
                gap: 12px;
            }

            .product-card {
                padding: 12px;
                gap: 12px;
            }

            .product-image {
                width: 80px;
                height: 80px;
            }

            .product-name {
                font-size: 1rem;
            }

            .product-price {
                font-size: 1.1rem;
            }

            .main-categories {
                padding: 0 10px 10px 10px;
                gap: 12px;
            }

            .main-category-card {
                min-width: 120px;
                width: 120px;
                height: 140px;
            }

            .sub-categories {
                padding: 0 10px;
                gap: 10px;
            }

            .sub-category-btn {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #7f8c8d;
        }

        .empty-state svg {
            width: 100px;
            height: 100px;
            margin-bottom: 20px;
            opacity: 0.5;
        }