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

        body {
            font-family: 'Tajawal', sans-serif;
            background-color: var(--light);
            color: var(--text);
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* هيدر البروفايل المعدل */
        .profile-header {
            position: relative;
            margin-bottom: 60px;
        }

        .cover-photo {
            height: 300px;
            width: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        

        .site {
            font-weight: bold;
            color : var(--gold)
        }
        .profile-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            padding: 0 20px;
            position: relative;
            margin-top: -40px;
            background-color: var(--dark);

        }

        .profile-picture {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid var(--gold);
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            position: absolute;
            left: 50%;
            bottom: -60px; /* نصف ارتفاع الصورة (120/2) */
            transform: translateX(-50%);
            background-color: var(--white);
            background-size: cover;
            background-position: center;
        }


        

        .profile-info {
            background-color: var(--dark);
            flex-grow: 1;
            text-align: center;
            padding: 0 20px;
            order: 1; /* نقل المعلومات لليسار (في الوسط بسبب order) */
        }

        .restaurant-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--gold);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }

        .restaurant-slogan {
            color: var(--text);
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .restaurant-meta {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }

       

        /* قسم معلومات التواصل */
        .contact-section {
            background-color: var(--dark);
            border-radius: var(--card-radius);
            padding: 15px;
            margin: 0 20px 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .contact-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .contact-title i {
            color: var(--gold);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--gold);
            color: var(--white);
            transform: translateY(-3px);
        }

        .hours-item {
            display: flex;
            justify-content: center;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

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

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

        /* شريط التصنيفات المعدل */
        .categories-container {
            position: sticky;
            top: 0;
            background-color: var(--dark);
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
            margin-bottom: 20px;
        }

        .categories-scroll {
            display: flex;
            overflow-x: auto;
            padding: 0 15px;
            gap: 10px;
            scrollbar-width: none;
        }

        .categories-scroll::-webkit-scrollbar {
            display: none;
        }

        .category {
            padding: 8px 15px;
            background-color: var(--light);
            border-radius: 20px;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: var(--transition);
            color: var(--gold)
        }

        .category.active {
            background-color: var(--gold);
            color: var(--white);
            font-weight: 500;
        }

        /* قائمة الطعام المعدلة */
        .menu-container {
            padding: 0 15px 10px;
        }

        .menu-section {
            margin-bottom: var(--section-gap);
        }

        .section-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text);
            position: relative;
            padding-right: 15px;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            right: 50%;
            transform: translateX(50%);
            bottom: -5px;
            width: 50px;
            height: 2px;
            background-color: var(--gold);
        }

        .menu-items {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .menu-item {
            background-color: var(--button);
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            display: flex;
            transition: var(--transition);
        }

        .menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .item-image {
            width: 100px;
            height: 100px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .item-details {
            padding: 12px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .item-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text);
        }

        .item-description {
            font-size: 0.85rem;
            color: var(--text);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .item-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .item-price {
            font-weight: 700;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .price-icon {
            width: 12px;
            height: 12px;
        }

        .calories {
            font-size: 0.8rem;
            color: var(--gold);
            background-color: var(--light);
            padding: 3px 8px;
            border-radius: 10px;
        }

        /* الفوتر المعدل */
        footer {
            background-color: var(--dark);
            color: var(--text);
            padding: 70px 70px;
            text-align: center;
            margin-top: 40px;
        }

        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .copyright .site{
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* تأثيرات الحركة */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-fade {
            animation: fadeIn 0.6s ease-out;
        }

        /* زر العودة لأعلى */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--gold);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            background-color: var(--gold-dark);
        }

        /* تعديلات للشاشات الكبيرة */
        @media (min-width: 768px) {
            .cover-photo {
                height: 220px;
            }
            
            .profile-picture {
                width: 120px;
                height: 120px;
            }
            
            .restaurant-name {
                font-size: 2rem;
            }
            
            .menu-items {
                grid-template-columns: repeat(2, 1fr);
            }
        }