/* HighRise Wholesale popup styles */
#hrw-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(8, 12, 20, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
#hrw-popup-overlay.hrw-popup-visible { opacity: 1; }
.hrw-popup-card {
  background: linear-gradient(180deg, #0f1b2e 0%, #0a1320 100%);
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.1) inset;
  max-width: 440px;
  width: 100%;
  padding: 36px 32px 28px;
  position: relative;
  border-radius: 4px;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 90vh;
  overflow-y: auto;
}
#hrw-popup-overlay.hrw-popup-visible .hrw-popup-card { transform: scale(1) translateY(0); }
.hrw-popup-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 20px; line-height: 1;
  cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.hrw-popup-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.hrw-popup-tag {
  display: inline-block;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a84c;
  padding: 6px 12px;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.06);
  margin-bottom: 18px;
  border-radius: 2px;
}
.hrw-popup-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  color: #F5F0E8;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.hrw-popup-title em {
  font-style: italic;
  color: #c9a84c;
  font-weight: 600;
}
.hrw-popup-sub {
  font-size: 14px;
  color: #b8c4ce;
  line-height: 1.55;
  margin: 0 0 18px;
}
.hrw-popup-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 16px;
}
.hrw-popup-list li {
  font-size: 13px;
  color: #D4CFC4;
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.5;
}
.hrw-popup-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: #c9a84c;
  font-weight: 700;
}
.hrw-popup-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 24px;
  border-radius: 4px;
  margin-bottom: 10px;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}
.hrw-popup-cta-primary:hover { background: #1ebe5d; transform: translateY(-1px); }
.hrw-popup-cta-primary span { font-size: 18px; line-height: 1; }
.hrw-popup-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #c9a84c !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}
.hrw-popup-cta-secondary:hover { background: rgba(201,168,76,0.08); transform: translateY(-1px); }
.hrw-popup-cta-secondary span { font-size: 16px; line-height: 1; }
.hrw-popup-trust {
  text-align: center;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(212, 207, 196, 0.55);
}
@media (max-width: 480px) {
  .hrw-popup-card { padding: 28px 22px 22px; }
  .hrw-popup-title { font-size: 26px; }
  .hrw-popup-sub { font-size: 13px; }
}
