.add {
    text-align: center;
    margin: 0 auto; /* لوسيطة أفقيا */
  }

  .add-1 {
    width: 540px;
  }



  /* الخلفية المعتمة */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: none;           /* مخفي افتراضياً */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* الصندوق المنبثق */
.popup-box {
  background: #fff;
  padding: 15px;
  width: 90%;
  max-width: 350px;        /* أقصى عرض على الشاشات الكبيرة */
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  animation: pop 0.4s ease;
}

/* حركة الظهور */
@keyframes pop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* الصورة داخل الإعلان */
.add2-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* زر الإغلاق */
.close-btn {
  background: crimson;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 15px;
  transition: 0.3s;
}

.close-btn:hover {
  background: darkred;
}

/* ==== شكل القائمة ==== */
/* اخفاء شريط الاسكرول */
.books-grid {
  display: flex;
  flex-direction: column; /* الكتب تحت بعض */
  align-items: center;
  gap: 20px; /* مسافة بين الكتب */
  padding: 20px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: none;
}
.books-grid::-webkit-scrollbar { display: none; }

/* كل كارت */
.book-card {
  width: 100%;
  max-width: 350px; /* مناسب للموبايل */
  background: #ffffff00;
  border-radius: 18px;
  padding: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  text-align: center;

  /* نزيل absolute عشان الكتب تبقى تحت بعض */
  position: relative;
  transform: none;
  opacity: 1;
  transition: all 0.5s ease;
}

/* صور الغلاف */
.book-cover {
  width: 120px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* بدون غلاف */
.no-cover {
  width: 100%;
  height: 280px;
  background: #dddddd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* زر اقرأ */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #f4d35e;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover { background: #e6c84b; }

/* استجابة الموبايل */
@media (max-width: 480px) {
  .book-card {
    max-width: 95%;
    padding: 10px;
  }
  .book-cover, .no-cover {
    height: 220px;
  }
}





/* ---------------------- */


@media screen and (max-width: 800px) {
  .add-1 {
    width: 400px;
  }
}

@media screen and (max-width: 480px) {
  .add {
    text-align: center;
   
    margin: 0 auto; /* لوسيطة أفقيا */
  }
  .add-1 {
    width: 380px;
  }
  
}

  @media screen and (max-width: 380px) {
    .add {
      width: 345px;
    }
  .add-1 {
    width: 320px;
  }
  }