  .header {
      background: #fff;
      padding: 10px 0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      direction: rtl;
    }

    .containers {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      direction: ltr;
    }

    /* الجزء الأيسر (أيقونات المستخدم) */
    .nav-left {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .login-btn {
      background-color: #40004b;
      color: #fff;
      border: none;
      padding: 8px 18px;
      border-radius: 25px;
      cursor: pointer;
      font-size: 14px;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .login-btn:hover {
      background-color: #5d1a6e;
      transform: translateY(-2px);
    }

    .icon {
      font-size: 20px;
      color: #7b5f90;
      cursor: pointer;
      transition: color 0.3s;
      position: relative;
    }

    .icon:hover {
      color: #40004b;
    }

    .cart-count {
      position: absolute;
      top: -8px;
      left: -8px;
      background: #ff4757;
      color: white;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      font-size: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* روابط التنقل */
    .nav-links {
      display: flex;
      gap: 15px;
    direction: rtl;
    }

    .nav-links a {
      text-decoration: none;
      color: #7b5f90;
      font-weight: 600;
      padding: 8px 12px;
      transition: all 0.3s;
      font-size: 15px;
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: #40004b;
      transform: translateY(-2px);
    }

    .login-btn a {
      color: white;
      text-decoration: none;
      display: block;
    }

    /* تصميم الموبيل */
    .menu-toggle {
      display: none;
      cursor: pointer;
      font-size: 22px;
      color: #7b5f90;
      padding: 10px;
    }

    /* القائمة المنزلقة */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -300px;
      width: 300px;
      height: 100vh;
      background: white;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      z-index: 999;
      transition: right 0.3s ease;
      padding-top: 60px;
      overflow-y: auto;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu a {
      display: block;
      padding: 15px 20px;
      color: #7b5f90;
      text-decoration: none;
      border-bottom: 1px solid #f0f0f0;
      font-weight: 600;
    }

    .mobile-menu a:hover {
      background: #f9f9f9;
      color: #40004b;
    }

    .close-menu {
      position: absolute;
      top: 15px;
      left: 15px;
      font-size: 24px;
      cursor: pointer;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 998;
      display: none;
    }

    .overlay.active {
      display: block;
    }

    @media (max-width: 992px) {
      .mobile-menu a  {
        padding: 30px;
      }
      .nav-links {
        display: none;
      }
      
      .menu-toggle {
        display: block;
      }
      
      .nav-left {
        margin-right: auto;
      }
    }

    @media (max-width: 576px) {
      .login-btn {
        padding: 6px 12px;
        font-size: 13px;
      }
      
      .icon {
        font-size: 18px;
      }
      
      .mobile-menu {
        width: 250px;
      }
    }

    