/* Add custom CSS styles below */ 
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  cursor: pointer;
}





body {
  background: linear-gradient(180deg, #fdf6f0 0%, #fdf6f0 40%, #fdf6f0 100%);
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
  position: relative;
}









/* غطاء الشاشة */
#popup-overlay{
  position: fixed !important;
  inset: 0;                 /* top/right/bottom/left = 0 */
  background: rgba(0,0,0,.6);
  display: grid;
  place-items: center;      /* توسيط أفقي وعمودي */
  z-index: 999999;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease;
}

/* حالة الظهور */
#popup-overlay.show{
  visibility: visible;
  opacity: 1;
}

/* صندوق الصورة */
#popup-box{
  position: relative;
  width: min(92vw, 700px);  /* مناسب لسطح المكتب والجوال */
  max-height: 90vh;         /* ما يتعدّى ارتفاع الشاشة */
  border-radius: 12px;
  overflow: hidden;         /* يمنع التمدد */
  background: transparent;
}

/* الصورة نفسها */
#popup-box img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;
  border-radius: 12px;
}

/* زر الإغلاق */
#popup-close{
  position: absolute;
  top: 8px;
  inset-inline-end: 12px;   /* يدعم RTL و LTR */
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #1f2937;
  background: rgba(255,255,255,.9);
  border: 0;
  border-radius: 9999px;
  padding: 2px 10px 6px;
}



/* ستايل العنصر البديل لتصنيف فاضي */
.custom-placeholder {
  text-align: center;
  padding: 40px;
}

.custom-placeholder img {
  max-width: 50%;
  border-radius: 12px;
  margin-bottom: 15px;
  display: block;       /* يحولها بلوك */
  margin-left: auto;    /* يوسّطها */
  margin-right: auto;   /* يوسّطها */
}


.custom-placeholder p {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}