body {
  font-family: "Noto Sans Arabic", Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
  direction: rtl;
  height: 100vh;
}

/* ✅ خلفية شفافة تغطي كامل الصفحة وقت الـ Login */
#login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* خلفية غامقة شفافة */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000; /* أعلى من أي عنصر آخر */
}
.copy-icon {
  cursor: pointer;
  margin-right: 8px;
  font-size: 16px;
  color: #2196F3;
  transition: color 0.3s;
}
.copy-icon:hover {
  color: #0d6efd;
}
/* ✅ صندوق الـ Login في الوسط */
/* خلفية المودال */
#loginModal, 
#editModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); /* خلفية شفافة */
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 10px; /* يعطي مسافة في الموبايل */
}

/* صندوق داخلي */
#loginModal .modal-content,
#editModal .modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  width: 400px;
  max-width: 95%; /* متجاوب مع الموبايل */
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* عناوين */
#loginModal h3,
#editModal h3 {
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;
}

/* الحقول */
#loginModal input,
#editModal input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border 0.2s;
}

#loginModal input:focus,
#editModal input:focus {
  border: 1px solid #2196F3;
  outline: none;
}

/* الأزرار */
#loginModal button,
#editModal button {
  display: inline-block;
  width: 48%;
  padding: 10px;
  margin: 5px 1%;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

/* ألوان الأزرار */
#loginBtn {
  background: #4CAF50;
  color: #fff;
}

#closelogin {
  background: #f44336;
  color: #fff;
}

#editModal button:first-of-type {
  background: #2196F3;
  color: #fff;
}

#editModal button:last-of-type {
  background: #9e9e9e;
  color: #fff;
}

/* تأثير hover */
#loginModal button:hover,
#editModal button:hover {
  opacity: 0.85;
}

/* رسالة تسجيل الدخول */
#loginMessage {
  margin-top: 10px;
  font-size: 14px;
}

/* أنيميشن دخول */
@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ✨ أنيميشن ظهور */
@keyframes popup {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

    /* --- Topbar --- */
    .topbar {
      background: #333;
      color: white;
      font-size: 14px;
      padding: 5px 10px;
    }
    .topbar .wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .topbar a {
      color: white;
      text-decoration: none;
    }

    /* --- Nav --- */
    header {
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .brand img {
      width: 40px;
      height: 40px;
    }
    .nav-menu {
      display: flex;
      gap: 20px;
    }
    .nav-menu a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
    }

    /* Mobile menu */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        padding: 10px;
      }
      .nav-menu.active {
        display: flex;
      }
      .hamburger {
        display: block;
      }
    }

    /* --- Categories --- */
    .cats{background:#0b1220;color:#cbd5e1;border-top:1px solid #1f2937}
    .cats .wrap{max-width:1200px;margin:auto;display:flex;gap:.6rem;overflow:auto;padding:.6rem 1rem}
    .chip{white-space:nowrap;background:#111827;border:1px solid #1f2937;color:#e5e7eb;padding:.35rem .7rem;border-radius:999px;font-size:.92rem}
    .chip:hover{background:#1f2937}

  
    /* --- Products --- */
    h1 {
      text-align: center;
      margin: 20px 0;
    }
    .controls {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    input, select {
      padding: 8px;
      border: 1px solid #ccc;
      border-radius: 8px;
      outline: none;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
      padding: 10px;
    }
    .card {
      background: #fff;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.2s ease-in-out;
    }
    .card:hover {
      transform: scale(1.03);
    }
    .card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 10px;
    }
    .card h3 {
      margin: 10px 0 5px;
      font-size: 16px;
    }
    .card p {
      color: #333;
      font-weight: bold;
      margin: 5px 0;
    }
    .btn {
      background: #4CAF50;
      color: white;
      padding: 8px 12px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
    }
    .btn:hover {
      background: #45a049;
    }
     