/* ASFIRE.CO.IL — פופ-אפ "שנה טובה" (תמונה) במרכז המסך, עם רקע כהה.
   נפתח אוטומטית בטעינת העמוד, נעלם לבד אחרי 5 שניות, וניתן גם לסגור
   ידנית (X או לחיצה על הרקע הכהה). מוצג פעם אחת בלבד לכל מבקר. */

#asfire-newyear-popup {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.6);
  opacity: 0;
  transition: opacity 0.35s ease;
}

#asfire-newyear-popup.open {
  display: flex;
}

#asfire-newyear-popup.show {
  opacity: 1;
}

#asfire-newyear-popup .nyp-box {
  position: relative;
  max-width: 360px;
  width: 100%;
  transform: scale(0.94);
  transition: transform 0.35s ease;
}

#asfire-newyear-popup.show .nyp-box {
  transform: scale(1);
}

#asfire-newyear-popup .nyp-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

#asfire-newyear-popup .nyp-close {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #1f2937;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#asfire-newyear-popup .nyp-close:hover {
  background: #f3f4f6;
}

#asfire-newyear-popup .nyp-close:focus-visible {
  outline: 3px solid #e2231a;
  outline-offset: 2px;
}

@media (max-width: 420px) {
  #asfire-newyear-popup .nyp-box {
    max-width: 300px;
  }
  #asfire-newyear-popup .nyp-close {
    top: -12px;
    left: -12px;
    width: 30px;
    height: 30px;
  }
}
