        :root {
            --primary-color: #0C4C62;
            --secondary-color: #1C8A94;
            --accent-color: #1C8A94;
            --light-color: #F5F5EF;
            --dark-color: #0C4C62;
            --text-color: #0C4C62;
            --bg-color: #E3D9C5;
            --font-default: 'Inter', 'Segoe UI', 'Arial', 'Helvetica Neue', sans-serif;
            --font-slogan: var(--font-script);
            --font-category: var(--font-default);
            --font-product-name: var(--font-default);
            --font-product-desc: var(--font-default);
            --font-price: var(--font-default);
            --font-script: 'Caveat', cursive;
        }
        body {
            background: #E3D9C5;
            font-family: var(--font-default);
            color: var(--text-color);
            padding-bottom: 80px;
            overflow-x: hidden;
            transition: background 0.2s, color 0.2s;
        }
        .app-header {
            background-color: #E3D9C5;
            color: var(--primary-color);
            padding: 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-default);
        }
        .logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 20px auto;
            text-align: center;
            width: 100%;
            max-width: 100%;
            padding: 0 15px;
        }
        .okey-graphic {
            width: 300px;
            height: auto;
        }
        .lounge-text {
            color: #44887F;
            font-size: 28px;
            letter-spacing: 15px;
            margin-top: 10px;
            font-weight: 400;
        }
        .social-media-icons {
            display: flex;
            gap: 15px;
        }
        .social-media-icons a {
            color: #44887F;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }
        .social-media-icons a:hover {
            color: var(--primary-color);
        }
        .menu-title {
            color: var(--primary-color);
            text-align: center;
            margin: 20px 0;
            font-weight: 700;
            font-size: 2.3rem;
            text-transform: uppercase;
            font-family: var(--font-default);
        }
        .slider-container {
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            height: 300px;
        }
        .slider-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .slider-item.active {
            opacity: 1;
        }
        .slider-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .category-sticky {
            position: sticky;
            top: 60px;
            background-color: var(--primary-color);
            padding: 15px 0;
            z-index: 999;
            white-space: nowrap;
            overflow-x: auto;
            display: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            margin-bottom: 20px;
            backdrop-filter: blur(5px); /* Blur effect for modern browsers */
            -webkit-backdrop-filter: blur(5px); /* For Safari */
            border-radius: 0 0 15px 15px;
            transition: all 0.3s ease;
        }
        .category-sticky.show {
            display: block;
            animation: slideDown 0.5s ease;
        }
        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }
        .category-sticky::-webkit-scrollbar {
            height: 5px;
        }
        .category-sticky::-webkit-scrollbar-thumb {
            background: var(--light-color);
            border-radius: 5px;
        }
        .category-sticky a {
            display: inline-block;
            padding: 10px 20px;
            margin: 0 5px;
            color: var(--light-color);
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s;
            font-weight: 600;
            background-color: rgba(28, 138, 148, 0.12);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        .category-sticky a:hover,
        .category-sticky a.active {
            background-color: var(--secondary-color);
            color: var(--light-color);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        /* New styles for indicating scrollable menu */
        .category-sticky::after {
            content: '\f105'; /* Right arrow icon */
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            animation: bounceRight 1s infinite;
        }
        @keyframes bounceRight {
            0%, 100% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(5px); }
        }
        .bottom-navbar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--primary-color);
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-around;
            padding: 15px 0;
            z-index: 1000;
        }
        .bottom-navbar a {
            color: var(--light-color);
            text-decoration: none;
            font-size: 0.8rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s;
        }
        .bottom-navbar a:hover {
            color: var(--secondary-color);
            transform: translateY(-3px);
        }
        .bottom-navbar i {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }
        .category-container, .baslik1, .baslik2, .content, #accordion { display: unset !important; background: none !important; box-shadow: none !important; border: none !important; margin: 0 !important; padding: 0 !important; }

        .category-title {
            background: rgba(28,138,148,0.07);
            backdrop-filter: blur(2px);
            border-radius: 12px;
            padding: 0.5rem 0.7rem;
            margin-bottom: 1.2rem;
        }
        .category-title i {
            font-size: 1rem;
            color: var(--secondary-color);
            opacity: 0.7;
            margin-right: 0.4rem;
            margin-bottom: 0;
        }
        .category-title h3 {
            font-size: 1.15rem;
            font-weight: 500;
            color: var(--primary-color);
            opacity: 0.85;
            margin: 0;
            letter-spacing: 0.01em;
        }
        .menu-list {
            margin-bottom: 2.5rem;
        }
        .menu-row {
            display: flex;
            flex-direction: column;
            padding: 1.5rem 0 0.7rem 0;
            margin-bottom: 0.5rem;
            border-radius: 0;
            box-shadow: none;
            border-bottom: none;
        }
        .menu-row:last-child { border-bottom: none; }
        .menu-row:hover {
            box-shadow: none;
            transform: none;
            background: var(--bg-color);
        }
        .menu-row.hide {
            opacity: 0;
            pointer-events: none;
            transform: scale(0.98);
        }
        .menu-title-line {
            display: flex;
            align-items: center;
            width: 100%;
            font-size: 1.13rem;
            font-weight: 500;
            color: var(--text-color);
            margin-bottom: 0.1rem;
        }
        .menu-item-title {
            text-transform: capitalize;
            font-size: 1.13rem;
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 0;
            white-space: nowrap;
            font-family: var(--font-product-name) !important;
        }
        .dot-leader, .soft-dot {
            flex: 1;
            border-bottom: 1.5px dotted #e0e0e0;
            height: 0.7em;
            margin: 0 10px 0 10px;
            opacity: 0.7;
            min-width: 24px;
            display: block;
        }
        .menu-item-price, .soft-price {
            font-size: 0.98rem !important;
            font-weight: 400 !important;
            color: #7a8a8f !important;
            background: none !important;
            opacity: 1 !important;
            white-space: nowrap;
            margin-left: 0;
            align-self: flex-end;
            font-family: var(--font-price);
        }
        .menu-item-price::after, .soft-price::after {
            font-weight: 500;
        }
        .menu-item-description, .soft-desc, .category-desc, .modal-description, .loading-details {
            font-color: #7a8a8f;
            opacity: 0.8;
            font-size: 1.01rem;
            margin-top: 0.2rem;
            margin-bottom: 0.2rem;
            font-weight: 400;
            line-height: 1.4;
            font-family: var(--font-product-desc);
        }
        @media (max-width: 600px) {
            .menu-row .menu-title-line { font-size: 1.05rem; }
            .menu-row .menu-item-title { font-size: 1.2rem; }
            .menu-row .menu-item-price { font-size: 1rem; }
            .menu-row .menu-item-description { font-size: 0.97rem; }
            .category-title h3 { font-size: 1rem; }
            .category-title i { font-size: 0.85rem; }
            .btn, .form-control { font-size: 1.13rem; }
            .menu-item-title, .soft-title {
                font-family: var(--font-product-name) !important;
            }
        }
        .sub-category-header {
            display: flex;
            align-items: center;
            background-color: var(--accent-color);
            padding: 10px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .sub-category-header:hover {
            background-color: var(--primary-color);
        }
        .sub-category-icon {
            font-size: 1.2em;
            margin-right: 10px;
            color: #fff;
        }
        .sub-category-title {
            font-weight: bold;
            color: #fff;
            flex-grow: 1;
        }
        .language-selector a {
            color: #44887F;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 15px;
            transition: all 0.3s ease;
            font-weight: 400;
            background-color: transparent;
            font-family: var(--font-product-name) !important;
        }
        .language-selector a.active {
            background-color: transparent;
            color: #44887F;
            font-weight: 700;
            font-family: var(--font-product-name) !important;
        }
        /* Custom Scrollbar Styles */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-color);
        }
        ::-webkit-scrollbar-thumb {
            background: #44887F;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #44887F;
            opacity: 0.8;
        }
        .btn, .form-control {
            border-radius: 8px;
            font-size: 1.13rem;
            background: var(--secondary-color);
            color: var(--light-color);
            border: none;
            transition: background 0.2s, color 0.2s;
        }
        .btn:hover, .btn:focus {
            background: var(--primary-color);
            color: var(--light-color);
        }
        /* Mobil Bottom Navbar */
        .mobile-bottom-navbar {
            position: fixed;
            left: 0; right: 0; bottom: 0;
            background: #44887F;
            border-top: 1px solid rgba(68, 136, 127, 0.2);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1100;
            height: 68px;
            border-radius: 18px 18px 0 0;
            box-shadow: 0 -2px 12px rgba(68, 136, 127, 0.15);
        }
        .mobile-bottom-navbar .nav-item {
            flex: 1;
            text-align: center;
            color: #E3D9C5 !important;
            text-decoration: none;
            font-size: 1.1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px 0 0 0;
            transition: color 0.2s;
        }
        .mobile-bottom-navbar .nav-item i {
            font-size: 1.6rem;
            margin-bottom: 2px;
            color: #E3D9C5 !important;
        }
        .mobile-bottom-navbar .nav-item:active,
        .mobile-bottom-navbar .nav-item:focus {
            color: #E3D9C5 !important;
            background: rgba(227, 217, 197, 0.1);
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(68, 136, 127, 0.2);
        }
        .mobile-bottom-navbar .nav-item span {
            font-size: 0.75rem;
            margin-top: 1px;
        }
        @media (min-width: 768px) {
            .mobile-bottom-navbar, .mobile-search-bar { display: none !important; }
        }
        /* Mobil Arama Barı */
        .mobile-search-bar {
            position: fixed;
            left: 0; right: 0; bottom: 60px;
            background: #fff;
            border-top: 1px solid #e0e0e0;
            box-shadow: 0 -2px 10px rgba(28,135,143,0.07);
            z-index: 1200;
            display: flex;
            align-items: center;
            padding: 8px 12px;
        }
        .mobile-search-bar input {
            flex: 1;
            border-radius: 20px;
            border: 1px solid #1C878F;
            padding: 6px 14px;
            font-size: 1rem;
            margin-right: 8px;
        }
        .mobile-search-bar button {
            color: #1C878F;
            font-size: 1.2rem;
            background: none;
            border: none;
            outline: none;
        }
        .soft-title {
            font-size: 1rem;
            font-weight: 500;
            color: var(--primary-color);
            opacity: 0.85;
            letter-spacing: 0.01em;
            font-family: var(--font-product-name) !important;
        }
        .soft-desc {
            font-size: 0.93rem;
            color: #7a8a8f;
            opacity: 0.8;
            font-weight: 400;
            margin-top: 0.15rem;
            font-family: var(--font-product-desc);
        }
        .menu-title-line {
            min-height: 1.7em;
        }
        .modal {
            background-color: rgba(227, 217, 197, 0.95);
        }
        .modal-content {
            background: #E3D9C5;
            border-radius: 18px;
            box-shadow: 0 2px 18px rgba(68, 136, 127, 0.15);
            border: none;
        }
        .modal-header {
            background: #E3D9C5;
            border-bottom: 1px solid rgba(68, 136, 127, 0.1);
            border-top-left-radius: 18px;
            border-top-right-radius: 18px;
            padding: 1rem 1.5rem;
        }
        .modal-body {
            background: #E3D9C5;
            padding: 1.5rem;
            color: #44887F;
        }
        .modal-footer {
            background: #E3D9C5;
            border-top: 1px solid rgba(68, 136, 127, 0.1);
            border-bottom-left-radius: 18px;
            border-bottom-right-radius: 18px;
            padding: 1rem 1.5rem;
        }
        .modal-title {
            color: #44887F;
            font-size: 1.2rem;
            font-weight: 500;
        }
        .btn-close {
            color: #44887F;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .btn-close:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        .modal .form-control {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(68, 136, 127, 0.2);
            border-radius: 12px;
            padding: 0.8rem 1rem;
            color: #44887F;
            transition: all 0.3s ease;
        }
        .modal .form-control:focus {
            border-color: #44887F;
            box-shadow: 0 0 0 0.2rem rgba(68, 136, 127, 0.15);
        }
        .modal .btn {
            background: #44887F;
            color: #E3D9C5;
            border: none;
            border-radius: 12px;
            padding: 0.8rem 1.5rem;
            transition: all 0.3s ease;
        }
        .modal .btn:hover {
            background: #3a7269;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(68, 136, 127, 0.2);
        }
        .modal .btn:active {
            transform: translateY(0);
        }
        .btn:active {
            transform: scale(0.97);
            box-shadow: 0 1px 4px rgba(28,135,143,0.10);
        }
        .category-title:hover {
            background: rgba(28,138,148,0.13);
            box-shadow: 0 2px 8px rgba(28,138,148,0.10);
        }
        .mobile-search-bar input:active,
        .mobile-search-bar input:focus {
            box-shadow: 0 2px 8px #1C878F22;
            border-color: #1C878F;
        }
        .price-decimal {
            display: none;
        }
        .sub-category-header .sub-category-title {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 400;
        }
        .slogan {
            font-family: var(--font-slogan);
        }
        .category-title, .category-title-text {
            font-family: var(--font-category);
        }
        .menu-item-title, .soft-title {
            font-family: var(--font-product-name) !important;
        }
        .menu-item-description, .soft-desc {
            font-family: var(--font-product-desc);
        }
        .menu-item-price, .soft-price {
            font-family: var(--font-price);
        }
        .bottom-navbar a,
        .mobile-bottom-navbar .nav-item,
        .mobile-bottom-navbar .nav-item span {
            font-family: var(--font-product-name) !important;
        }
