
        @font-face {
            font-family: 'GT Walsheim Pro';
            src: url('fonts/GTWalsheimPro-Regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'GT Walsheim Pro';
            src: url('fonts/GTWalsheimPro-Medium.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'GT Walsheim Pro';
            src: url('fonts/GTWalsheimPro-Bold.woff2') format('woff2');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'GT Walsheim Pro';
            src: url('fonts/GTWalsheimPro-Black.woff2') format('woff2');
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }
    

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --brand: #b06f00;
            --brand-light: #c98a1a;
            --brand-dark: #8a5600;
            --white: #ffffff;
            --bg: #f5f5f5;
            --card: #ffffff;
            --text: #131D29;
            --text-secondary: #767C83;
            --border: #EAEAEC;
            --divider: #F2F2F2;
            --price: #1d4ed8;
            --allergen-bg: rgba(239, 226, 204, 0.8);
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            --radius: 8px;
            --font: 'GT Walsheim Pro', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
            display: flex;
            justify-content: center;
        }

        .app {
            max-width: 700px;
            width: 100%;
            min-height: 100vh;
            background: var(--white);
            position: relative;
        }

        /* ===== VIEWS ===== */
        .view {
            display: none;
        }

        .view.active {
            display: block;
        }

        /* ===== SPLASH SCREEN ===== */
        .splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #1a1a1a;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }

        .splash-screen.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .splash-logo {
            width: 280px;
            height: auto;
            animation: splashPulse 1.5s ease-in-out infinite;
        }

        @keyframes splashPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.03);
            }
        }

        /* ===== LANDING HEADER ===== */
        .landing-header {
            background: var(--brand);
            padding: 50px 20px 30px;
            text-align: center;
            position: relative;
        }

        .logo-img {
            width: 140px;
            height: 140px;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 20px;
        }

        /* Dark Mode H1 Fix (Always pure white to contrast with background) */
        .landing-header h1 {
            color: #ffffff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .landing-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
            line-height: 1.6;
            max-width: 500px;
            margin: 0 auto;
        }

        /* ===== STATUS PANEL ===== */
        .status-panel {
            background: var(--card);
            margin: 0;
            padding: 16px 20px;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 5;
            border-bottom: 1px solid var(--border);
            margin-bottom: 24px;
        }

        .status-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .status-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .status-badge.open {
            background: #dcfce7;
            color: #166534;
        }

        .status-badge.closed {
            background: #fee2e2;
            color: #991b1b;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
            animation: badgePulse 1.5s infinite;
        }

        .status-badge-outline {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid currentColor;
        }

        .status-badge-outline.open {
            color: #16a34a;
            background: rgba(22, 163, 74, 0.05);
        }

        .status-badge-outline.closed {
            color: #ef4444;
            background: rgba(239, 68, 68, 0.05);
        }

        [data-theme="dark"] .status-badge-outline.open {
            color: #4ade80;
            background: rgba(74, 222, 128, 0.1);
        }

        [data-theme="dark"] .status-badge-outline.closed {
            color: #f87171;
            background: rgba(239, 68, 68, 0.1);
        }

        .hours-title {
            font-weight: 700;
            font-size: 16px;
            color: var(--text);
        }

        /* ===== LANDING CONTENT ===== */
        .landing-content {
            padding: 0 16px 30px;
        }

        /* ===== RAMAZAN BANNER ===== */
        .ramazan-special-banner {
            background: #171d2b;
            border-radius: 16px;
            padding: 16px 18px;
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        

        .rsb-tag {
            background: #b06f00;
            color: white;
            font-size: 10px;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 10px;
            box-shadow: 0 4px 10px rgba(176, 111, 0, 0.3);
        }

        .rsb-title {
            color: white;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .rsb-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            margin-bottom: 8px;
        }

        .rsb-price {
            color: #fbbf24;
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 12px;
            text-shadow: 0 2px 10px rgba(251, 191, 36, 0.2);
        }

        .rsb-button {
            background: #c98a1a;
            color: white;
            border: none;
            width: 100%;
            padding: 12px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

        .rsb-button:hover {
            background: #b06f00;
            transform: translateY(-2px);
        }

        [data-theme="dark"] .ramazan-special-banner {
            background: #121212;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* ===== CATEGORY BUTTONS ===== */
        .category-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 24px;
        }

        .category-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            background: #f5f0e8;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid #e8dfd2;
            border-radius: 16px;
            box-shadow:
                0 4px 16px rgba(0, 0, 0, 0.04),
                0 1px 0 rgba(255, 255, 255, 0.6) inset;
            cursor: pointer;
            text-decoration: none;
            color: var(--text);
            font-family: var(--font);
            font-size: 18px;
            font-weight: 600;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .category-btn:hover {
            transform: translateY(-3px) scale(1.01);
            box-shadow:
                0 16px 40px rgba(0, 0, 0, 0.12),
                0 1px 0 rgba(255, 255, 255, 0.9) inset,
                0 0 20px rgba(176, 111, 0, 0.08);
            border-color: rgba(176, 111, 0, 0.15);
        }

        .category-btn .arrow {
            color: var(--brand);
            font-size: 20px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 700;
        }

        .category-btn:hover .arrow {
            transform: translateX(6px);
        }

        /* ===== WORKING HOURS ===== */
        .hours-card {
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 16px 20px;
            margin-bottom: 20px;
        }

        .hours-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 12px;
        }

        .hours-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius);
            background: #F9F9F9;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hours-divider {
            width: 100%;
            height: 1px;
            background: var(--divider);
            margin-bottom: 16px;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            font-size: 14px;
        }

        .hours-row:not(:last-child) {
            border-bottom: 1px solid var(--divider);
        }

        .hours-day {
            font-weight: 500;
            color: var(--text);
        }

        .hours-time {
            color: var(--text-secondary);
        }

        /* ===== SOCIAL LINKS ===== */
        .social-section {
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 14px;
            padding-left: 4px;
            color: var(--text);
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 10px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            opacity: 0.9;
        }

        .social-link-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .social-link-left img {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
        }

        .social-link-info .social-name {
            font-size: 16px;
            font-weight: 500;
        }

        .social-link-info .social-desc {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .social-link .arrow-icon {
            color: var(--text-secondary);
            font-size: 18px;
            flex-shrink: 0;
        }

        /* ===== CONTACT CARD ===== */
        .contact-card {
            background: var(--card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 16px 20px;
            margin-bottom: 20px;
        }

        .contact-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .contact-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .contact-row:hover {
            opacity: 0.8;
        }

        .contact-brand-row {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px 0;
            transition: transform 0.2s ease;
            width: 100%;
            height: 70px;
        }

        .contact-brand-row:hover {
            transform: scale(1.03);
            opacity: 1;
        }

        .contact-brand-logo {
            width: auto;
            max-width: 180px;
            object-fit: contain;
            filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.08));
        }

        img[src*="yemek-sepeti"] {
            height: 28px;
        }

        img[src*="trendyol"] {
            height: 60px;
        }

        img[src*="getir"] {
            height: 42px;
        }

        .contact-icon-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #F9F9F9;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-label {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .contact-value {
            font-size: 14px;
            font-weight: 500;
        }

        .contact-divider {
            width: 100%;
            height: 1px;
            background: var(--divider);
            margin: 4px 0;
        }

        /* ===== MENU VIEW (GLASSMORPHISM STICKY HEADER) ===== */
        .menu-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(245, 245, 245, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .menu-back-row {
            padding: 16px 16px 8px;
        }

        .back-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 18px;
            color: var(--text);
        }

        .back-btn:hover {
            background: var(--bg);
        }

        .menu-tabs {
            display: flex;
            overflow-x: auto;
            padding: 0 16px 0;
            gap: 20px;
            scrollbar-width: none;
        }

        .menu-tabs::-webkit-scrollbar {
            display: none;
        }

        .menu-tab {
            white-space: nowrap;
            padding-bottom: 10px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
            text-decoration: none;
            border-bottom: 3px solid transparent;
            cursor: pointer;
            background: none;
            border-left: none;
            border-right: none;
            border-top: none;
            font-family: var(--font);
            transition: border-color 0.2s;
            flex-shrink: 0;
        }

        .menu-tab.active {
            border-bottom-color: var(--text);
        }

        /* ===== MENU CONTENT ===== */
        .menu-content {
            padding: 0 20px 40px;
        }

        .menu-section {
            padding: 20px 0;
            margin: 10px 0 30px;
        }

        .menu-section h2 {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 6px;
        }

        .menu-section .section-desc {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        /* ===== MODERN PRODUCT CARD & FADE MASK ===== */
        .product {
            background: var(--card);
            border-radius: 20px;
            padding: 16px;
            margin: 20px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border);
            position: relative;
        }

        .product-image {
            width: 100%;
            margin-bottom: 12px;
            border-radius: 12px;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 100%);
        }

        .product-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .product-image:hover img {
            transform: scale(1.08);
        }

        .product-image.no-mask {
            -webkit-mask-image: none;
            mask-image: none;
        }

        .product-image.no-mask img {
            height: 200px;
            object-fit: contain;
            background: #ffffff;
            border-radius: 12px;
            padding: 8px;
            image-rendering: auto;
        }

        [data-theme="dark"] .product-image.no-mask img {
            background: #1e1e1e;
        }

        .product-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .product-name-en {
            font-size: 14px;
            font-style: italic;
            color: var(--text);
            margin-bottom: 5px;
        }

        .product-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .product-price {
            font-size: 20px;
            font-weight: 800;
            color: var(--brand);
            margin-bottom: 12px;
        }

        .product-allergens {
            display: grid;
            grid-template-columns: repeat(auto-fill, 35px);
            gap: 8px;
            background: var(--allergen-bg);
            border-radius: 8px;
            padding: 10px 12px;
            margin-bottom: 15px;
        }

        .product-allergens img {
            width: 35px;
            height: 35px;
            cursor: pointer;
        }

        /* ===== ALLERGEN LEGEND ===== */
        .allergen-legend {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            padding: 30px 10px 20px;
        }

        @media (min-width: 480px) {
            .allergen-legend {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 640px) {
            .allergen-legend {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        .allergen-legend-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .allergen-legend-item img {
            width: 40px;
            height: 40px;
        }

        .allergen-legend-item span {
            font-size: 13px;
            text-align: center;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeInUp 0.4s ease-out forwards;
        }

        @media (min-width: 640px) {
            body {
                padding: 20px;
                background: var(--bg);
            }

            .app {
                border-radius: 20px;
                box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
                min-height: auto;
                overflow: hidden;
            }
        }

        .scroll-top-btn {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--brand);
            color: white;
            border: none;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 999;
            transition: all 0.2s;
        }

        .scroll-top-btn:hover {
            transform: translateY(-2px);
        }

        /* ===== DARK MODE ===== */
        [data-theme="dark"] {
            --bg: #121212;
            --white: #1e1e1e;
            --card: #202020;
            --text: #e8e8e8;
            --text-secondary: #a0a0a0;
            --border: #333333;
            --divider: #333333;
            --price: #64b5f6;
            --allergen-bg: rgba(80, 60, 30, 0.6);
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        [data-theme="dark"] .landing-header {
            background: #1a1a1a;
        }

        [data-theme="dark"] .menu-header {
            background: rgba(18, 18, 18, 0.85);
        }

        [data-theme="dark"] .category-btn,
        [data-theme="dark"] .social-link {
            background: rgba(42, 42, 42, 0.6);
            border-color: rgba(255, 255, 255, 0.05);
        }

        [data-theme="dark"] .splash-screen {
            background: #0a0a0a;
        }

        [data-theme="dark"] .back-btn {
            background: var(--card);
            border-color: var(--border);
            color: var(--text);
        }

        [data-theme="dark"] .back-btn svg path {
            fill: var(--text);
        }

        [data-theme="dark"] .hours-icon,
        [data-theme="dark"] .contact-icon-circle {
            background: #333;
        }

        [data-theme="dark"] .product {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .theme-toggle {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 10;
            backdrop-filter: blur(5px);
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
        }

        .lang-toggle {
            position: absolute;
            top: 16px;
            left: 16px;
            height: 36px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            color: white;
            padding: 0 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s;
            z-index: 10;
            backdrop-filter: blur(5px);
            font-family: var(--font);
        }

        .lang-toggle:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .search-container {
            padding: 0 16px 8px;
        }

        .search-box {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--card);
            border: 2px solid var(--border);
            border-radius: 12px;
            padding: 10px 14px;
            transition: border-color 0.3s;
        }

        .search-box:focus-within {
            border-color: var(--brand);
        }

        .search-box svg {
            flex-shrink: 0;
            opacity: 0.5;
        }

        .search-input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            font-family: var(--font);
            font-size: 15px;
            color: var(--text);
        }

        .search-input::placeholder {
            color: var(--text-secondary);
        }

        .search-clear {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            cursor: pointer;
            font-size: 14px;
            color: var(--text-secondary);
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .search-clear:hover {
            background: var(--text-secondary);
            color: var(--white);
        }

        .search-no-results {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-secondary);
            font-size: 15px;
        }

        .filter-bar {
            display: flex;
            gap: 8px;
            padding: 0 16px 12px;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .filter-bar::-webkit-scrollbar {
            display: none;
        }

        .filter-tag {
            white-space: nowrap;
            padding: 6px 14px;
            border-radius: 20px;
            background: var(--card);
            border: 1.5px solid var(--border);
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-secondary);
            font-family: var(--font);
            transition: all 0.2s;
        }

        .filter-tag:hover {
            border-color: var(--brand);
            color: var(--brand);
        }

        .filter-tag.active {
            background: var(--brand);
            color: white;
            border-color: var(--brand);
        }

        .product-badges {
            display: flex;
            gap: 6px;
            margin-bottom: 8px;
            flex-wrap: wrap;
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
        }

        .badge {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 3px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .badge-popular {
            background: #fef3c7;
            color: #92400e;
        }

        .badge-spicy {
            background: #fee2e2;
            color: #991b1b;
        }

        .badge-new {
            background: #d1fae5;
            color: #065f46;
        }

        .badge-veggie {
            background: #ecfdf5;
            color: #047857;
        }

        [data-theme="dark"] .badge-popular {
            background: #78350f;
            color: #fde68a;
        }

        [data-theme="dark"] .badge-spicy {
            background: #7f1d1d;
            color: #fca5a5;
        }

        [data-theme="dark"] .badge-new {
            background: #064e3b;
            color: #6ee7b7;
        }

        [data-theme="dark"] .badge-veggie {
            background: #064e3b;
            color: #6ee7b7;
        }

        .order-fab {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand);
            color: white;
            border: none;
            border-radius: 16px;
            padding: 14px 28px;
            font-family: var(--font);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(176, 111, 0, 0.4);
            display: none;
            align-items: center;
            gap: 10px;
            z-index: 998;
            transition: all 0.3s;
            max-width: calc(100% - 48px);
        }

        .order-fab:hover {
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 12px 40px rgba(176, 111, 0, 0.5);
        }

        .order-fab .order-count {
            background: white;
            color: var(--brand);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
        }

        .add-to-order {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--brand);
            color: white;
            border: none;
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .add-to-order:hover {
            transform: scale(1.1);
        }

        .add-to-order.added {
            background: #16a34a;
        }

        .product-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-top: 8px;
        }

        .order-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
            align-items: flex-end;
            justify-content: center;
            backdrop-filter: blur(4px);
        }

        .order-modal-overlay.active {
            display: flex;
        }

        .order-modal {
            background: var(--white);
            border-radius: 20px 20px 0 0;
            width: 100%;
            max-width: 700px;
            max-height: 70vh;
            padding: 24px;
            overflow-y: auto;
            animation: slideUp 0.3s ease-out;
        }

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

            to {
                transform: translateY(0);
            }
        }

        .order-modal h3 {
            font-size: 20px;
            margin-bottom: 16px;
        }

        .order-item-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--divider);
        }

        .order-item-name {
            font-weight: 500;
            font-size: 15px;
        }

        .order-item-price {
            color: var(--brand);
            font-weight: 600;
        }

        .order-item-remove {
            background: none;
            border: none;
            color: #ef4444;
            cursor: pointer;
            font-size: 18px;
            padding: 4px;
        }

        .order-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            font-size: 18px;
            font-weight: 700;
        }

        .whatsapp-order-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 12px;
            background: #25D366;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            font-family: var(--font);
            transition: all 0.2s;
            margin-top: 8px;
        }

        .whatsapp-order-btn:hover {
            background: #1da851;
            transform: translateY(-1px);
        }

        .product-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1001;
            display: none;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(6px);
        }

        .product-modal-overlay.active {
            display: flex;
        }

        .product-modal {
            background: var(--white);
            border-radius: 16px;
            width: 90%;
            max-width: 500px;
            max-height: 85vh;
            overflow-y: auto;
            overflow-x: hidden;
            animation: modalPop 0.3s ease-out;
            position: relative;
        }

        @keyframes modalPop {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .product-modal-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 16px 16px 0 0;
        }

        .product-modal-body {
            padding: 20px;
        }

        .product-modal-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .fade-slide-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .fade-slide-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .category-btn {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* RTL Support */
        [dir="rtl"] {
            text-align: right;
            --font: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        [dir="rtl"] .landing-header,
        [dir="rtl"] .section-title,
        [dir="rtl"] .product-name,
        [dir="rtl"] .product-desc,
        [dir="rtl"] .product-price,
        [dir="rtl"] .contact-label,
        [dir="rtl"] .contact-value,
        [dir="rtl"] .hours-day {
            text-align: right;
        }

        [dir="rtl"] .social-link-left {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .arrow-icon,
        [dir="rtl"] .arrow {
            transform: scaleX(-1);
        }

        [dir="rtl"] .contact-row {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .contact-icon-circle {
            margin-left: 12px;
            margin-right: 0;
        }

        [dir="rtl"] .hours-row {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .product-badges {
            left: auto;
            right: 16px;
            flex-direction: row-reverse;
        }

        [dir="rtl"] .product-allergens {
            justify-content: flex-end;
        }

        [dir="rtl"] .order-item-row {
            flex-direction: row;
        }

        [dir="rtl"] .order-total {
            flex-direction: row;
        }

        [dir="rtl"] .whatsapp-order-btn svg {
            margin-right: 8px;
            margin-left: 0;
        }

        body {
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .product,
        .category-btn,
        .contact-card,
        .social-link {
            transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
        }

        .product {
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .menu-section {
            animation: fadeInUp 0.4s ease-out;
        }

        .price-pulse {
            animation: pricePulse 2s ease-in-out infinite;
        }

        @keyframes pricePulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.03);
            }
        }

        .hours-row.today {
            background: rgba(176, 111, 0, 0.08);
            border-radius: 6px;
            padding: 8px 10px;
            font-weight: 600;
        }

        [data-theme="dark"] .hours-row.today {
            background: rgba(176, 111, 0, 0.15);
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 6px;
        }

        .status-dot.open {
            background: #16a34a;
            box-shadow: 0 0 6px rgba(22, 163, 74, 0.5);
            animation: dotPulse 1.5s infinite;
        }

        .status-dot.closed {
            background: #ef4444;
        }

        @keyframes dotPulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        .announcement-banner {
            background: linear-gradient(90deg, #b06f00, #d4941a, #b06f00);
            background-size: 200% 100%;
            animation: bannerGradient 4s ease infinite;
            color: white;
            padding: 10px 40px 10px 16px;
            font-size: 13px;
            font-weight: 500;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, opacity 0.3s;
        }

        @keyframes bannerGradient {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .announcement-banner .marquee {
            display: inline-block;
            animation: marquee 25s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        .announcement-close {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .announcement-close:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .site-footer {
            background: #1a1a1a;
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            padding: 28px 16px;
            font-size: 13px;
            line-height: 2;
        }

        .site-footer .footer-brand {
            font-size: 20px;
            font-weight: 700;
            color: var(--brand-light);
            margin-bottom: 4px;
        }

        .site-footer .footer-heart {
            color: #ef4444;
            display: inline-block;
            animation: heartBeat 1.5s ease-in-out infinite;
        }

        @keyframes heartBeat {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.15);
            }
        }

        .order-toast {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            background: linear-gradient(135deg, #16a34a, #22c55e);
            color: white;
            padding: 12px 24px;
            border-radius: 14px;
            font-size: 14px;
            font-weight: 600;
            font-family: var(--font);
            z-index: 9999;
            box-shadow: 0 8px 30px rgba(22, 163, 74, 0.3);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
        }

        .order-toast.show {
            transform: translateX(-50%) translateY(0);
        }

        .add-ripple {
            animation: addRipple 0.6s ease-out;
        }

        @keyframes addRipple {
            0% {
                box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
            }

            100% {
                box-shadow: 0 0 0 20px rgba(22, 163, 74, 0);
            }
        }

        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            z-index: 997;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: waPulse 2s ease-in-out infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1) translateY(-2px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
        }

        @keyframes waPulse {

            0%,
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
            }
        }

        .whatsapp-float .wa-tooltip {
            position: absolute;
            right: 64px;
            background: #333;
            color: white;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            font-family: var(--font);
        }

        .whatsapp-float:hover .wa-tooltip {
            opacity: 1;
        }

        /* ===== YENİ: UYGULAMA İNDİRME FLOAT BUTONU ===== */
        .install-float {
            position: fixed;
            bottom: 24px;
            right: 94px;
            /* WhatsApp'ın hemen solunda */
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--text);
            color: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            z-index: 997;
            transition: all 0.3s ease;
        }

        .install-float:hover {
            transform: scale(1.1) translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        }

        .install-float .wa-tooltip {
            position: absolute;
            right: 64px;
            background: #333;
            color: white;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            font-family: var(--font);
        }

        .install-float:hover .wa-tooltip {
            opacity: 1;
        }

        .map-embed {
            border-radius: 12px;
            overflow: hidden;
            margin-top: 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .map-embed iframe {
            width: 100%;
            height: 200px;
            border: none;
        }

        .scroll-top-btn {
            bottom: 90px;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--brand), var(--brand-light));
            box-shadow: 0 4px 20px rgba(176, 111, 0, 0.4);
        }

        .scroll-top-btn:hover {
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 8px 30px rgba(176, 111, 0, 0.5);
        }

        .order-fab-bounce {
            animation: fabBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        @keyframes fabBounce {
            0% {
                transform: translateX(-50%) scale(1);
            }

            50% {
                transform: translateX(-50%) scale(1.1);
            }

            100% {
                transform: translateX(-50%) scale(1);
            }
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.7) !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            border: 1px solid rgba(255, 255, 255, 0.3) !important;
        }

        [data-theme="dark"] .glass-card {
            background: rgba(42, 42, 42, 0.6) !important;
            border-color: rgba(255, 255, 255, 0.05) !important;
        }

        .reviews-section {
            margin-bottom: 30px;
        }

        .reviews-avatar-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            padding: 8px 0 16px;
        }

        .review-avatar-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            color: var(--brand);
            border: 2px solid var(--border);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: var(--font);
        }

        .review-avatar-btn:hover {
            transform: scale(1.1);
            border-color: var(--brand);
            box-shadow: 0 4px 12px rgba(176, 111, 0, 0.2);
        }

        .review-avatar-btn.active {
            border-color: var(--brand);
            background: var(--brand);
            color: #fff;
            box-shadow: 0 4px 15px rgba(176, 111, 0, 0.35);
            transform: scale(1.1);
        }

        [data-theme="dark"] .review-avatar-btn {
            background: #2a2a2a;
            border-color: rgba(255, 255, 255, 0.1);
        }

        [data-theme="dark"] .review-avatar-btn.active {
            background: var(--brand);
            border-color: var(--brand);
        }

        .review-display {
            background: var(--card);
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            animation: reviewFadeIn 0.3s ease;
        }

        @keyframes reviewFadeIn {
            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .review-display .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .review-display .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--brand);
        }

        [data-theme="dark"] .review-display .review-avatar {
            background: #2a2a2a;
        }

        .review-display .review-info h5 {
            font-size: 14px;
            margin-bottom: 2px;
        }

        .review-display .review-stars {
            color: #fbbf24;
            font-size: 12px;
        }

        .review-display .review-content {
            font-size: 13px;
            line-height: 1.6;
            font-style: italic;
            color: var(--text);
        }

        .featured-slider-section {
            margin-bottom: 30px;
        }

        .featured-slider {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 4px 4px 16px;
            scrollbar-width: none;
            scroll-snap-type: x mandatory;
        }

        .featured-slider::-webkit-scrollbar {
            display: none;
        }

        .featured-card {
            min-width: 280px;
            width: 280px;
            scroll-snap-align: start;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow);
            aspect-ratio: 4/5;
            flex-shrink: 0;
            cursor: pointer;
            border: 1px solid var(--border);
        }

        .featured-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .featured-card:hover img {
            transform: scale(1.1);
        }

        .featured-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px 16px 16px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
        }

        .featured-overlay h4 {
            font-size: 15px;
            margin-bottom: 6px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
            line-height: 1.3;
        }

        .featured-price-box {
            display: inline-block;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: white;
            font-weight: 700;
            font-size: 12px;
            padding: 3px 8px;
            border-radius: 6px;
        }

        .map-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 12px;
        }

        .map-btn-small {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            text-decoration: none;
            color: var(--text);
            font-size: 11px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .map-btn-small:hover {
            transform: translateY(-2px);
            border-color: var(--brand);
        }

        .map-btn-small img,
        .map-btn-small svg {
            width: 24px;
            height: 24px;
        }

        .menu-option-container {
            background: rgba(var(--brand-rgb), 0.1);
            border: 1px dashed var(--brand);
            padding: 12px;
            border-radius: 12px;
            margin: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        /* ===== STATUS OVERLAY (GÜNCELLENDİ) ===== */
        .status-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 30px;
        }

        .status-anim-img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            background: #fff;
            padding: 5px;
            box-shadow: 0 0 30px #ff6600;
            animation: ovenBake 1s ease-in-out infinite alternate;
        }

        @keyframes ovenBake {
            0% {
                transform: translateY(0) scale(0.95);
                box-shadow: 0 0 20px #ff8800;
            }

            100% {
                transform: translateY(-8px) scale(1.02);
                box-shadow: 0 0 50px #ff3300, 0 0 20px #ffcc00;
            }
        }

        .share-btn-mini {
            background: none;
            border: none;
            padding: 4px;
            color: var(--brand);
            cursor: pointer;
            opacity: 0.7;
            transition: 0.2s;
        }

        .share-btn-mini:hover {
            opacity: 1;
            transform: scale(1.2);
        }

        .iftar-panel {
            background: linear-gradient(135deg, #2d3436, #000000);
            color: white;
            padding: 16px;
            border-radius: 16px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .iftar-info h4 {
            font-size: 14px;
            color: #fbd38d;
            margin-bottom: 2px;
        }

        .iftar-timer {
            font-size: 24px;
            font-weight: 800;
            font-family: monospace;
        }

        .iftar-msg {
            font-size: 11px;
            opacity: 0.8;
            font-style: italic;
        }

        .install-section {
            padding: 0 16px 20px;
            display: none;
        }

        .install-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #131D29, #2C3E50);
            color: white;
            border: none;
            border-radius: 16px;
            font-family: var(--font);
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* ===== ORDER TRACKING ===== */
        .order-tracking-section {
            background: var(--card);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            display: none;
        }

        .order-tracking-section.active {
            display: block;
            animation: fadeInUp 0.4s ease-out;
        }

        .order-tracking-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tracking-steps {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            position: relative;
            padding: 0 4px;
        }

        .tracking-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .tracking-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            transition: all 0.4s ease;
        }

        .tracking-step.completed .tracking-icon {
            background: #16a34a;
            border-color: #16a34a;
            color: white;
        }

        .tracking-step.active .tracking-icon {
            background: var(--brand);
            border-color: var(--brand);
            color: white;
            animation: trackingPulse 1.5s ease-in-out infinite;
        }

        @keyframes trackingPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(176, 111, 0, 0.4);
            }

            50% {
                box-shadow: 0 0 0 8px rgba(176, 111, 0, 0);
            }
        }

        .tracking-label {
            font-size: 9px;
            font-weight: 600;
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.2;
            max-width: 60px;
        }

        .tracking-step.completed .tracking-label,
        .tracking-step.active .tracking-label {
            color: var(--text);
        }

        .tracking-line {
            position: absolute;
            top: 20px;
            left: 28px;
            right: 28px;
            height: 3px;
            background: var(--border);
            z-index: 1;
            border-radius: 2px;
        }

        .tracking-line-progress {
            height: 100%;
            background: linear-gradient(90deg, #16a34a, #22c55e);
            transition: width 0.6s ease;
            border-radius: 2px;
        }

        .tracking-time {
            font-size: 11px;
            color: var(--text-secondary);
            text-align: center;
            margin-top: 12px;
            font-style: italic;
        }

        /* ===== FLAG ICON ===== */
        .lang-toggle img.flag-icon {
            height: 16px;
            border-radius: 2px;
            vertical-align: middle;
            margin-right: 2px;
        }

        /* ===== GOOGLE REVIEW BADGE ===== */
        .google-review-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
            padding: 6px 12px;
            background: var(--card);
            border-radius: 10px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

        .google-review-badge img {
            height: 18px;
        }

        .google-review-badge .g-rating {
            font-weight: 700;
            font-size: 14px;
            color: var(--text);
        }

        .google-review-badge .g-stars {
            color: #fbbf24;
            font-size: 13px;
            letter-spacing: 1px;
        }

        .google-review-badge .g-count {
            font-size: 11px;
            color: var(--text-secondary);
        }
    


        /* ===== GLASS SHINE EFFECT ===== */
        .category-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 100%;
            background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.4) 45%, rgba(255,255,255,0.1) 50%, transparent 55%);
            transition: left 0.6s ease;
            pointer-events: none;
        }
        .category-btn:hover::before { left: 50%; }
        .category-btn:active { transform: translateY(-1px) scale(0.99); }

        [data-theme="dark"] .category-btn {
            background: linear-gradient(135deg, rgba(40,40,40,0.85) 0%, rgba(30,30,30,0.55) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
        }
        [data-theme="dark"] .category-btn:hover {
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 0 25px rgba(176, 111, 0, 0.1);
        }

        /* ===== 3D GLASS FOR ALL CARDS ===== */
        .hours-card, .social-section, .contact-card, .social-link {
            background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
            backdrop-filter: blur(16px) saturate(160%);
            -webkit-backdrop-filter: blur(16px) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
            border-radius: 16px;
        }
        [data-theme="dark"] .hours-card, [data-theme="dark"] .social-section,
        [data-theme="dark"] .contact-card, [data-theme="dark"] .social-link {
            background: linear-gradient(135deg, rgba(40,40,40,0.85) 0%, rgba(30,30,30,0.6) 100%);
            border: 1px solid rgba(255,255,255,0.06);
            box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 1px 0 rgba(255,255,255,0.04) inset;
        }

        /* ===== TOST STORY ANIMATION ===== */
        .tost-story-strip {
            background: var(--card);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
            padding: 12px 0;
            position: relative;
        }
        .tost-story-track {
            display: flex;
            gap: 24px;
            animation: storyScroll 20s linear infinite;
            width: max-content;
        }
        .tost-story-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            min-width: 80px;
        }
        .tost-story-emoji {
            font-size: 28px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            animation: emojiFloat 2s ease-in-out infinite;
        }
        .tost-story-item:nth-child(2n) .tost-story-emoji { animation-delay: -1s; }
        .tost-story-label {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-secondary);
            white-space: nowrap;
        }
        @keyframes storyScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @keyframes emojiFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        /* === LAYOUT FIX === */
        .app {
            overflow-x: hidden;
        }
        .view {
            width: 100%;
        }

        /* === CAMPAIGN SLIDER === */
        .campaign-slider-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-bottom: 24px;
        }
        .campaign-slider {
            display: flex;
            transition: transform 0.4s ease;
        }
        .campaign-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 12px 0 4px;
        }
        .campaign-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border);
            cursor: pointer;
            transition: all 0.3s;
        }
        .campaign-dot.active {
            width: 24px;
            border-radius: 4px;
            background: var(--brand);
        }

        /* === RATING STARS === */
        .rating-star:hover { transform: scale(1.2); }
        .product { position: relative; }
