/* ✅ واکنش هوشمند */
.ht-reaction-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1e1e1e;
  color: #ffd166;
  padding: 24px 20px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  z-index: 9999;
  max-width: 340px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  text-align: center;
  font-family: "Vazir", sans-serif;
  animation: slideUp 0.4s ease;
}

/* ✅ تصویر واکنش */
.ht-reaction-content img.ht-reaction-image {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ✅ متن واکنش */
.ht-reaction-content p {
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-family: "Vazir", sans-serif;
}

/* ✅ دکمه بستن خارج از کادر */
.ht-reaction-close-wrapper {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
}

.ht-reaction-close {
  background: #ff4d4d;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  font-family: "Vazir", sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.ht-reaction-close:hover {
  background-color: #e63946;
  transform: scale(1.05);
}
