        /* =================================================================
           SAUDI NATIONAL DAY 95 THEME - MAPPED TO OPEN_COLOR STRUCTURE
           VERSION 1.0 (اليوم الوطني السعودي 95 - عزنا بطبعنا)
           ================================================================= */

        /* --- 1. الخطوط والإعدادات الأساسية --- */
        @import url('https://fonts.googleapis.com/css2?family=Changa:wght@400;500;700&display=swap');

     :root {

    /* ألوان النمط الجديد */
       --primary-bg: #29170A; /* خلفية أساسية داكنة */
    --card-bg: #3D2515; /* خلفية بطاقات متوسطة */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --primary-accent: #D2691E; /* اللون الأساسي */
    --secondary-accent: #FF6347; /* لون التأكيدات */
    --text-primary: #F5F5F5;
    --text-secondary: #FFD4C4;
    --border-color: rgba(255, 255, 255, 0.15);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --success-color: #FF7F50;
    --danger-color: #DC3545;
    --national-gold: #FF6347;
    --national-green: #D2691E;
    --border-radius: 16px;
    --transition-speed: 0.3s;
    --primary-gradient: linear-gradient(135deg, #D2691E 0%, #29170A 100%);
    --gold-gradient: linear-gradient(135deg, #FF6347 0%, #CD5C5C 100%);

}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--primary-bg);
            color: var(--text-primary);
            font-family: 'Changa', sans-serif;
            line-height: 1.6;
            direction: rtl;
            text-align: right;
            padding-bottom: 80px;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(198, 156, 60, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(0, 108, 53, 0.1) 0%, transparent 20%);
        }

        /* --- 2. الهيدر والشعار --- */
        .page-header {
            text-align: center;
            padding: 0px 0;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            animation: headerGlow 3s infinite alternate;
        }
        
        @keyframes headerGlow {
            0% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        
        .restaurant-logo {
            position: relative;
            display: inline-block;
        }
        
        .restaurant-logo img {
            max-width: 120px;
            height: auto;
            transition: transform 0.4s ease-in-out;
         
            padding: 5px;
            background: var(--primary-bg);
        }
        
        .restaurant-logo img:hover {
            transform: scale(1.05) rotate(5deg);
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            color: var(--national-gold);
            margin-top: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            display: inline-block;
        }
        
        .page-header h1::after {
            content: "";
            position: absolute;
            bottom: -5px;
            right: 0;
            width: 100%;
            height: 2px;
        }
        
        .national-day-badge {
            display: inline-block;
            background: var(--gold-gradient);
            color: #FFF;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 1rem;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* --- 3. الأصناف والبحث --- */
        .header-content {
            position: sticky;
            top: 0;
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 2px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .categories-container {
            display: flex;
            padding: 4px 20px;
            overflow-x: auto;
            gap: 15px;
            white-space: nowrap;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        
        .categories-container::-webkit-scrollbar { 
            display: none; 
        }
        
        .category-btn {
            min-width: 100px;
            height: 120px;
            border-radius: var(--border-radius);
            padding: 10px;
            flex-direction: column;
            justify-content: center;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition-speed);
            display: flex;
            align-items: center;
            gap: 5px;
            flex-shrink: 0;
            box-shadow: 0 4px 10px var(--shadow-color);
            position: relative;
            overflow: hidden;
        }
        
        .category-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--national-gold);
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }
        
        .category-btn:hover::before {
            transform: translateY(0);
        }
        
        .category-btn img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid var(--national-gold);
        }
        
        .category-btn:hover {
            background: var(--national-green);
            color: var(--text-primary);
            transform: translateY(-5px);
        }
        
        .category-btn.active {
            background: var(--national-green);
            color: var(--text-primary);
            font-weight: 700;
            border-color: var(--national-gold);
            box-shadow: 0 6px 20px rgba(0, 108, 53, 0.6);
        }
        
        .favorite-count {
            background-color: var(--primary-bg);
            color: var(--national-gold);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            border: 1px solid var(--national-gold);
        }
        
        .search-bar {
            margin: 5px 20px;
            background: var(--glass-bg);
            border-radius: 30px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            border: 1px solid var(--border-color);
            transition: all var(--transition-speed) ease;
            backdrop-filter: blur(5px);
        }
        
        .search-bar:focus-within {
            border-color: var(--national-gold);
            box-shadow: 0 0 15px rgba(198, 156, 60, 0.4);
        }
        
        .search-bar input {
            flex-grow: 1;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 1rem;
            outline: 0;
            font-family: 'Changa', sans-serif;
            text-align: right;
        }
        
        .search-bar i { 
            color: var(--national-gold); 
            margin-left: 10px; 
        }

        /* --- 4. بطاقات المنتجات --- */
        .menu-container { 
            padding: 20px; 
            max-width: 1200px; 
            margin: auto; 
        }
        
        .menu-items-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .menu-item {
            
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
            position: relative;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 30px var(--shadow-color);
        }
        
        .menu-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--national-gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
            z-index: 2;
        }
        
        .menu-item:hover::before {
            transform: scaleX(1);
        }
        
        .menu-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
        
        .item-image {
            width: 100%;
            aspect-ratio: 16 / 10;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .menu-item:hover .item-image { 
            transform: scale(1.08); 
        }
        
        .item-info {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            text-align: right;
        }
        
        .item-info h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 5px;
        }
        
        .product-name-en {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .item-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }
        
        .item-price {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--national-gold);
        }
        
        .original-price {
            font-size: 1.1rem;
            color: var(--text-secondary);
            text-decoration: line-through;
            margin-left: 10px;
        }
        
        .item-actions { 
            display: flex; 
            gap: 10px; 
        }
        
        .details-btn, .add-to-favorites-btn, .add-to-cart-btn {
            background-color: var(--glass-bg);
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            width: 45px;
            height: 45px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }
        
        .details-btn:hover { 
            background-color: var(--national-green); 
            color: white; 
            transform: scale(1.1); 
        }
        
        .add-to-favorites-btn:hover { 
            background-color: var(--national-gold); 
            color: white; 
            transform: scale(1.1); 
        }
        
        .add-to-favorites-btn.favorited {
            background-color: var(--national-gold);
            color: white;
            animation: pulse-dark 1s infinite;
        }
        
        .add-to-cart-btn:hover { 
            background-color: var(--success-color); 
            color: white; 
            transform: scale(1.1); 
        }
        
        .item-popular, .discount-label {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .item-popular { 
            background-color: var(--national-gold); 
            color: white; 
        }
        
        .discount-label { 
            background-color: var(--national-gold); 
            color: white; 
            right: auto; 
            left: 15px; 
        }
        
        .menu-item.unavailable {
            opacity: 0.6;
            pointer-events: none;
            position: relative;
        }
        
        .menu-item.unavailable .item-image {
            filter: grayscale(100%) brightness(70%);
        }
        
        .menu-item.unavailable::after {
            content: "غير متوفر حاليًا";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-15deg);
            background: var(--danger-color);
            color: white;
            padding: 10px 25px;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 700;
            white-space: nowrap;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.4);
        }

        /* --- 5. شريط التنقل السفلي --- */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70px;
            
            backdrop-filter: blur(15px);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-color);
            box-shadow: 0 -5px 20px var(--shadow-color);
            z-index: 2000;
        }
        
        .nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex: 1;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.8rem;
            transition: color var(--transition-speed), transform var(--transition-speed);
            position: relative;
        }
        
        .nav-link::before {
            content: "";
            position: absolute;
            top: -5px;
            width: 0;
            height: 3px;
            background: var(--national-gold);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::before {
            width: 30px;
        }
        
        .nav-link:hover { 
            color: var(--text-primary); 
            transform: translateY(-3px); 
        }
        
        .nav-link.active { 
            color: var(--national-gold); 
        }
        
        .nav-link i { 
            font-size: 1.5rem; 
            margin-bottom: 3px; 
        }
        
        .nav-link.cart-link { 
            position: relative; 
        }
        
        .cart-count {
            position: absolute;
            top: -2px;
            background-color: var(--national-gold);
            color: #fff;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: .7rem;
            display: none;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            transform: translate(50%, -50%);
            border: 2px solid var(--card-bg);
        }

        
        /* --- 6. المودالات --- */
        .modal-overlay, .details-modal, .cart-modal, .address-modal, .share-modal, .notification-modal, .about-modal, .contact-modal {
            position: fixed; 
            top: 0; 
            left: 0;
            width: 100%; 
            height: 100%;
            background: rgba(10, 41, 27, 0.8);
            backdrop-filter: blur(8px);
            display: flex; 
            align-items: center; 
            justify-content: center;
            opacity: 0; 
            visibility: hidden;
            transition: opacity .3s, visibility .3s;
            z-index: 3000;
            padding: 20px 10px;
        }
        

        #productModal.show, #detailsModal.show, #cart-modal.show, #address-modal.show, #shareModal.show, #notificationModal.show, #AboutModal.show, #contactModal.show {
            opacity: 1; 
            visibility: visible;
        }
        
        .modal-content, .details-content, .cart-content, .address-content, .share-content, .notification-content, .about-content, .contact-content {
            background: var(--primary-bg);
            border-radius: var(--border-radius);
            box-shadow: 0 10px 40px var(--shadow-color);
            width: 100%; 
            max-width: 500px;
            color: var(--text-primary); 
            padding: 30px;
            position: relative;
            transform: translateY(20px) scale(0.95);
            transition: transform 0.3s ease;
            max-height: calc(100vh - 40px);
            overflow-y: auto;
            border: 1px solid var(--border-color);
        }
        
        #productModal.show .modal-content, #detailsModal.show .details-content, #cart-modal.show .cart-content, #address-modal.show .address-content, #shareModal.show .share-content, #notificationModal.show .notification-content, #AboutModal.show .about-content, #contactModal.show .contact-content {
            transform: translateY(0) scale(1);
        }
        
        .modal-close-btn, .close-btn {
            position: absolute; 
            top: 15px; 
            left: 15px;
            background: var(--glass-bg);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 1.5rem; 
            cursor: pointer;
            transition: .2s; 
            width: 40px; 
            height: 40px;
            border-radius: 50%; 
            display: flex;
            align-items: center; 
            justify-content: center;
        }
        
        .modal-close-btn:hover, .close-btn:hover { 
            background-color: var(--national-gold); 
            color: white; 
        }

        /* --- 7. مودال المنتج --- */
        #productModal .modal-image { 
            display: none; 
        }
        
        #productModal .modal-header h4 { 
            font-size: 2rem; 
            color: var(--text-primary); 
            margin-bottom: 10px; 
        }
        
        #productModal .modal-body p { 
            font-size: 1rem; 
            color: var(--text-secondary); 
            line-height: 1.7; 
            margin-bottom: 25px; 
        }
        
        .options-section { 
            margin-bottom: 20px; 
            border-top: 1px solid var(--border-color); 
            padding-top: 20px; 
        }
        
        .options-section h5 { 
            font-size: 1.3rem; 
            color: var(--national-gold); 
            margin-bottom: 15px; 
        }
        
        #productModal .modal-footer {
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            margin-top: 25px; 
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        
        .total-price { 
            font-size: 2rem; 
            font-weight: 700; 
            color: var(--national-gold); 
        }
        
        .add-to-cart-modal-btn, .btn-primary {
            background: var(--gold-gradient);
            color: var(--text-primary); 
            border: none; 
            border-radius: 12px;
            padding: 15px 30px; 
            font-size: 1.1rem; 
            font-weight: bold;
            cursor: pointer; 
            transition: all .3s;
            box-shadow: 0 4px 15px rgba(198, 156, 60, 0.4);
        }
        
        .add-to-cart-modal-btn:hover, .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(198, 156, 60, 0.5);
        }
        
        .option-row {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            transition: border-color 0.3s, background-color 0.3s;
            margin-bottom: 10px;
        }
        
        .option-row:hover {
            border-color: var(--national-gold);
            background-color: var(--primary-bg);
        }
        
        .option-row input[type="radio"], .option-row input[type="checkbox"] { 
            display: none; 
        }
        
        .option-row label {
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            padding: 15px; 
            cursor: pointer; 
            width: 100%;
            font-size: 1.1rem; 
            color: var(--text-secondary);
        }
        
        .option-row input:checked + label {
            color: var(--text-primary);
            font-weight: 500;
            background-color: var(--primary-bg);
        }
        
        .option-row label .option-price {
            color: var(--national-gold);
            font-weight: bold;
            font-size: 1.1rem;
        }

        /* --- 8. مودال السلة --- */
        .cart-content h3 { 
            text-align: center; 
            color: var(--national-gold); 
            font-size: 1.5rem; 
            margin-bottom: 20px; 
        }
        
        #cart-items {
            list-style: none; 
            padding: 0; 
            margin: 0 0 20px 0;
            text-align: right;
        }
        
        .cart-item {
            display: flex; 
            align-items: center; 
            justify-content: space-between;
            padding: 15px 5px; 
            border-bottom: 1px solid var(--border-color);
        }
        
        .cart-item:last-child { 
            border-bottom: none; 
        }
        
        .item-info-cart { 
            flex-grow: 1; 
            padding: 0 15px; 
        }
        
        .item-info-cart h5 { 
            margin: 0 0 5px; 
            font-size: 1.1rem; 
            color: var(--text-primary); 
        }
        
        .item-info-cart span { 
            font-size: .9rem; 
            color: var(--text-secondary); 
        }
        
        .item-controls { 
            display: flex; 
            align-items: center; 
            gap: 12px; 
        }
        
        .item-controls button {
            background: var(--primary-bg); 
            color: var(--national-gold);
            border: 1px solid var(--border-color); 
            border-radius: 50%;
            width: 30px; 
            height: 30px; 
            font-size: 1.2rem;
            cursor: pointer; 
            transition: transform 0.2s;
        }
        
        .item-controls button:hover { 
            transform: scale(1.1); 
            background: var(--national-gold); 
            color: var(--text-primary); 
        }
        
        .item-quantity { 
            font-weight: 700; 
            font-size: 1.2rem; 
            min-width: 25px; 
            text-align: center; 
        }
        
        #cart-total-footer {
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            margin-top: 20px; 
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        
        #cart-total-footer .text { 
            font-size: 1.2rem; 
            color: var(--text-secondary); 
        }
        
        #cart-total-footer .price { 
            font-size: 1.8rem; 
            font-weight: 700; 
            color: var(--national-gold); 
        }

        /* --- 9. مودال العنوان --- */
        .address-content h3 { 
            margin-bottom: 25px; 
            text-align: center; 
        }
        
        .address-content input, .address-content textarea, .address-content select {
            width: 100%; 
            padding: 12px; 
            margin-bottom: 15px;
            border: 1px solid var(--border-color); 
            background: var(--primary-bg);
            color: var(--text-primary); 
            border-radius: 8px; 
            font-family: 'Changa', sans-serif;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        
        .address-content input:focus, .address-content textarea:focus, .address-content select:focus {
            outline: none;
            border-color: var(--national-gold);
            box-shadow: 0 0 10px rgba(198, 156, 60, 0.4);
        }

        /* --- 10. مودال التفاصيل الغذائية --- */
        #detailsModal .details-content img#detailsImage {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            border: 2px solid var(--national-gold);
        }
        
        #detailsModal .details-content h3 {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--national-gold);
            text-align: center;
        }
        
        #detailsModal .details-content p {
            font-size: .9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            text-align: center;
        }
        
        .details-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin: 20px 0;
            text-align: center;
        }
        
        .details-item {
            background: var(--primary-bg);
            padding: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            transition: all .2s ease-in-out;
        }
        
        .details-item:hover {
            transform: translateY(-3px); 
            border-color: var(--national-gold);
        }
        
        .details-item p {
            color: var(--text-secondary);
            font-size: .8rem;
            margin-bottom: 5px;
        }
        
        .details-item h4 {
            font-size: 1.5rem;
            color: var(--national-gold);
            font-weight: 700;
        }
        
        .details-extra-info {
            margin-top: 25px;
            text-align: right;
            font-size: .9rem; 
            border-top: 1px solid var(--border-color); 
            padding-top: 20px;
        }
        
        .details-extra-info h4 {
            color: var(--national-gold);
            font-size: 1.2rem;
            margin-bottom: 8px;
            padding-right: 10px;
            border-right: 3px solid var(--national-gold);
        }
        
        .details-extra-info p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 15px;
            text-align: right;
        }
        
        #detailsSodiumIndicator.warning-message {
            color: var(--national-gold);
            font-weight: 700;
            font-size: .9rem;
            margin-top: 15px;
            display: none;
            text-align: center;
            background: rgba(198, 156, 60, 0.1);
            padding: 10px;
            border-radius: 8px; 
            border: 1px solid var(--national-gold);
        }

        /* --- 11. Footer, Toast, Animations --- */
        .footer-text {
            display: flex; 
            justify-content: center; 
            align-items: center;
            gap: 8px; 
            padding: 20px 10px; 
            margin-top: 40px;
            color: var(--text-secondary); 
            font-size: 0.9rem;
            border-top: 1px solid var(--border-color);
        }
        
        .footer-text a {
            color: var(--national-gold); 
            text-decoration: none;
            font-weight: 500; 
            transition: color 0.3s;
        }
        
        .footer-text a:hover { 
            color: var(--text-primary); 
        }
        
        .toast-notification {
            position: fixed; 
            bottom: 90px; 
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold-gradient);
            color: var(--text-primary); 
            padding: 12px 25px;
            border-radius: 50px; 
            z-index: 5000;
            opacity: 0; 
            visibility: hidden;
            transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 5px 20px var(--shadow-color);
            font-weight: 700; 
            text-align: center; 
            white-space: nowrap;
        }
        
        .toast-notification.show { 
            opacity: 1; 
            visibility: visible; 
            bottom: 100px; 
        }
        
        @keyframes pulse-dark {
            0% { 
                transform: scale(1); 
                box-shadow: 0 0 5px rgba(198, 156, 60, 0.7); 
            }
            50% { 
                transform: scale(1.1); 
                box-shadow: 0 0 15px rgba(198, 156, 60, 0.7); 
            }
            100% { 
                transform: scale(1); 
                box-shadow: 0 0 5px rgba(198, 156, 60, 0.7); 
            }
        }
        
        .btn {
            padding: 15px 25px; 
            border: none; 
            border-radius: 12px;
            font-size: 1.1rem; 
            font-weight: bold; 
            cursor: pointer;
            transition: all .3s; 
            display: block; 
            width: 100%; 
            margin-bottom: 10px;
        }
        
        .btn-primary {
            display: block;
            width: 100%;
            margin-top: 20px;
        }
        
        /* عناصر خاصة باليوم الوطني */
        .national-day-ribbon {
            position: fixed;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            overflow: hidden;
            z-index: 10000;
        }
        
        .national-day-ribbon::before {
            content: "95";
            position: absolute;
            display: block;
            width: 200px;
            padding: 5px 0;
            background-color: var(--national-gold);
            color: var(--primary-bg);
            font-weight: bold;
            font-size: 1.2rem;
            text-align: center;
            transform: rotate(45deg);
            right: -40px;
            top: 40px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        
        .floating-palm {
            position: fixed;
            bottom: 80px;
            left: 20px;
            font-size: 2rem;
            color: var(--national-green);
            opacity: 0.7;
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }
        
        @media (max-width: 768px) {
            .menu-items-grid { 
                grid-template-columns: 1fr; 
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .national-day-ribbon {
                width: 100px;
                height: 100px;
            }
            
            .national-day-ribbon::before {
                width: 150px;
                font-size: 1rem;
                right: -30px;
                top: 30px;
            }
            
            .floating-palm {
                font-size: 1.5rem;
                left: 10px;
            }
        }

        /* --- 12. تعديل خاص بمودال الإشعارات (Notification) --- */

/* إعادة تصميم الحاوية الرئيسية للإشعار */
.notification-content {
    padding: 0; /* نزيل الحشوة للسماح للصورة بملء الحواف */
    max-width: 380px; /* نجعل النافذة أصغر وأكثر تركيزًا */
    overflow: hidden; /* مهم جدًا لقص زوايا الصورة مع زوايا النافذة */
    text-align: center;
    background: var(--card-bg); /* استخدام خلفية البطاقات للتميز */
}

/* تنسيق الصورة لتأخذ حجمًا ثابتًا وتملأ الجزء العلوي */
#notificationImage {
    width: 100%; /* تأخذ عرض النافذة بالكامل */
    height: 200px; /* << هذا هو الارتفاع الثابت الذي طلبته */
    object-fit: cover; /* تضمن ملء الصورة للمساحة دون تشويه أو ترك فراغات */
    display: block; /* لإزالة أي مسافات سفلية قد يضيفها المتصفح */
}

/* تنسيق العنوان ليكون بارزًا وجميلاً */
.notification-content h3 {
    color: var(--national-gold);
    font-size: 1.9rem;
    font-weight: 700;
    margin: 25px 20px 10px 20px; /* هوامش لترك مساحة حول النص */
    line-height: 1.3;
}

/* تنسيق الرسالة لتكون واضحة */
.notification-content p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 20px 30px 20px; /* هوامش لترك مساحة حول النص */
}

/* تعديل موضع زر الإغلاق ليتناسب مع التصميم الجديد */
.notification-content .close-btn {
    top: 15px;
    right: 15px; /* نستخدم right بدل left لأنه تصميم عربي */
    left: auto;
    background: rgba(0, 0, 0, 0.5); /* خلفية أغمق لتكون أوضح فوق الصورة */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}