/* ===== JINMAN popups (discount + subscribe) ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 22, 16, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}
.popup-box {
  position: relative;
  background: #fff;
  border-radius: 14px;
  max-width: 420px;
  width: 100%;
  padding: 2.25rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: popupIn 0.3s ease;
}
@keyframes popupIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.popup-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  font-size: 26px; line-height: 1;
  color: #999; cursor: pointer;
}
.popup-close:hover { color: #333; }
.popup-badge {
  display: inline-block;
  background: #c4a989; color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin: 0 0 0.5rem;
  color: #2a211a;
}
.popup-sub {
  font-size: 14px;
  color: #6b6258;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-form input[type=email] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}
.popup-form input[type=email]:focus { border-color: #c4a989; }
.popup-form .btn {
  width: 100%;
  background: #c4a989;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}
.popup-form .btn:hover { background: #b08d6a; }
.popup-decline {
  display: block;
  margin: 0.85rem auto 0;
  background: none;
  border: none;
  color: #aa9f92;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
.popup-decline:hover { color: #8a7f72; }
@media (max-width: 480px) {
  .popup-box { padding: 2rem 1.25rem 1.5rem; }
  .popup-title { font-size: 20px; }
}
