
        :root {
            --primary: #b87d81;         /* الوردي الفاخر المستوحى من خط الشعار والوردة */
            --primary-light: #d6a8ab;   /* درجة وردي ناعمة للمؤثرات وتمرير الماوس */
            --dark: #111111;            /* الأسود الفحمي من خلفية اللوجو */
            --light: #fcf8f8;           /* الأبيض الدافئ المائل لدرجات الكافيه */
            --gray: #7a7071;            /* رمادي ناعم متناسق مع الألوان */
            --bg-color: #ffffff;        /* خلفية الموقع الأساسية */
            --text-color: #111111;      /* لون النصوص الأساسية */
            --card-bg: #ffffff;         /* خلفية كروت المنيو والقوائم */
            --footer-bg: #111111;       /* خلفية الفوتر (تطابق الهيدر واللوجو) */
            --footer-text: #fcf8f8;     /* نصوص الفوتر */
            --border-color: rgba(184, 125, 129, 0.2);
        }

        /* Dark Mode Variables */
        .dark-mode {
            --bg-color: #120d0e !important;        /* أسود عميق ممزوج بلمحة وردية خافتة جدًا */
            --text-color: #fcf8f8 !important;      /* نصوص بيضاء دافئة */
            --card-bg: #1c1516 !important;         /* كروت بلون أسود فحمي ناعم */
            --footer-bg: #0a0707 !important;       /* فوتر داكن بالكامل ليعطي عمق للموقع */
            --footer-text: #e6dedf !important;
            --dark: #fcf8f8 !important;
            --light: #241c1d !important;
            --gray: #a39899 !important;            /* رمادي فاتح للنصوص الفرعية في الوضع الداكن */
            --border-color: rgba(184, 125, 129, 0.3) !important;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tahoma', 'Arial', sans-serif;
            transition: background-color 0.3s, color 0.3s;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            text-align: right;
        }

        /* Header Styles */
        .header {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding: 1rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
            position: relative;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            border-bottom: 2px solid var(--primary);
        }

        .logo {
            height: 80px;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        /* Theme Toggle Button */
        .theme-toggle {
            position: fixed;
            top: 20px;
            left: 20px;
            right: auto;
            z-index: 1001;
            background: var(--primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        /* Tap to Top Button */
        .tap-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            right: auto;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .tap-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .tap-to-top:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
        }

        /* Main Slideshow */
        .main-slideshow {
            position:relative;
            height: 700px;
            overflow: hidden;
            margin-top: 0;
          
        }

        .main-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
        }

        .main-slide.active {
            opacity: 1;
        }

        .main-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            z-index: -1;
        }

        .main-slide-content {
            text-align: center;
            padding: 2.5rem;
            max-width: 800px;
            background: rgba(17, 11, 11, 0.65);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border: 1px solid rgba(184, 125, 129, 0.4);
            border-radius: 16px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
        }

        .main-slide-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .main-slide-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--primary-light);
        }

        .main-slide-nav {
            position: absolute;
            bottom: 30px;
            right: 50%;
            transform: translateX(50%);
            display: flex;
            gap: 1rem;
            z-index: 10;
        }

        .main-slide-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
        }

        .main-slide-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        .main-slide-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(184, 125, 129, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .main-slide-arrow:hover {
            background: var(--primary);
        }

        .main-slide-arrow.prev {
            right: 30px;
            left: auto;
        }

        .main-slide-arrow.next {
            left: 30px;
            right: auto;
        }

        /* Centered Tabs */
        .tabs-container {
            display: flex;
            justify-content: center;
            background: var(--card-bg);
            padding: 1rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            font-family:'Open Sans',Droid Arabic Kufi !important;
        }

        .tabs-inner {
            display: flex;
            gap: 0.5rem;
            overflow-x: auto;
            scrollbar-width: none;
            max-width: 1200px;
            width: 100%;
            font-family:'Open Sans',Droid Arabic Kufi !important;
        }

        .tabs-inner::-webkit-scrollbar {
            display: none;
        }

        .tab-btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 50px;
            background: var(--light);
            color: var(--dark);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .tab-btn:hover {
            background: var(--gray);
            color: white;
        }

        .tab-btn.active {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
        }

        /* Menu Content */
        .menu-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .menu-section {
            display: none;
        }

        .menu-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            padding: 1rem;
        }

        .menu-item {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .menu-item-image {
            height: 200px;
            overflow: hidden;
        }

        .menu-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .menu-item:hover .menu-item-image img {
            transform: scale(1.05);
        }

        .menu-item-content {
            padding: 1.5rem;
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .menu-item-title {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-color);
        }

        .menu-item-price {
            color: var(--primary);
            font-weight: 700;
        }

        .menu-item-description {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            text-align: right;
        }

        .menu-item-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .menu-tag {
            background: var(--light);
            color: var(--dark);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        .menu-tag.vegetarian {
            background: #d8f3dc;
            color: #2b9348;
        }

        .menu-tag.spicy {
            background: #ffddd2;
            color: #e63946;
        }

        .menu-tag.gluten-free {
            background: #caf0f8;
            color: #0096c7;
        }

        /* Footer */
        footer {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding: 3rem 2rem 1.5rem;
            text-align: center;
            border-top: 3px solid var(--primary);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .footer-column h3 {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--footer-text);
        }
        
        .footer-column ul {
            list-style: none;
            padding-right: 0;
        }
        
        .footer-column li {
            margin-bottom: 0.75rem;
        }
        
        .footer-column a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            justify-content: center; /* إضافة هذا السطر لتوسيط الأيقونات */
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: all 0.3s;
            color: var(--footer-text);
            text-decoration: none;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: var(--gray);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 0.5rem;
            }
            
            .logo {
                height: 50px;
            }
            
            .main-slideshow {
                height: 400px;
            }

            .main-slide-content h1 {
                font-size: 2.5rem;
            }

            .main-slide-content p {
                font-size: 1rem;
            }

            .tabs-container {
                top: 62px;
            }

            .tabs-inner {
                justify-content: flex-start;
            }

            .menu-items {
                grid-template-columns: 1fr;
            }

            .theme-toggle {
                top: 10px;
                left: 10px;
                width: 35px;
                height: 35px;
            }

            .tap-to-top {
                bottom: 20px;
                left: 20px;
                width: 45px;
                height: 45px;
            }
        }


        @media (max-width: 768px) {
            .logo { height: 70px; }
            .main-slideshow { height: 400px; }
            .main-slide-content h1 { font-size: 2.2rem; }
            .main-slide-content p { font-size: 1rem; }
            .menu-items { grid-template-columns: 1fr; }
        }


       /* حاوية قائمة اللغة المنسدلة */
        .lang-dropdown-wrapper {
            position: fixed;
            top: 25px;
            right: 20px;
            z-index: 10000;
            display: inline-block;
        }

        .lang-trigger-btn {
            background: var(--card-bg);
            border: 1px solid var(--primary);
            color: var(--primary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .lang-trigger-btn:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }

        .lang-dropdown-menu {
            position: relative;
            top: 100%;
            right: 0;
            margin-top: 8px;
            display: none;
            min-width: 130px;
            background-color: var(--card-bg);
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
            border: 1px solid var(--border-color);
            overflow: hidden;
            z-index: 10001;
        }

        .lang-dropdown-wrapper:hover .lang-dropdown-menu {
            display: block;
        }

        .lang-option {
            display: block;
            width: 100%;
            padding: 12px 16px;
            border: none;
            background: transparent;
            font-size: 0.95rem;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            color: var(--text-color);
        }

        .lang-option:hover {
            background-color: var(--primary);
            color: white;
        }

        .lang-option.active-lang {
            background-color: rgba(184, 125, 129, 0.2); /* Light background for active */
            color: #cda45e;            /* Golden theme color */
            font-weight: bold;         /* Make text bolder */
            border-right: 4px solid #cda45e; /* Optional: adds a neat indicator line on the side */
        }