/* Waitlist Modal */
.wl-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center; justify-content: center;
}
.wl-overlay.open { display: flex; }

.wl-modal {
  background: #fff;
  border-radius: 12px;
  width: 90%; max-width: 440px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  animation: wlSlideIn 0.25s ease-out;
}
@keyframes wlSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.wl-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: 20px;   color: #595955;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; transition: background 0.15s;
}
.wl-close:hover { background: #f2f1ee; }

.wl-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.5px; margin-bottom: 0.35rem;
  color: #1a1a18;
}
.wl-sub {
  font-size: 13px; color: #595955;
  font-weight: 300; margin-bottom: 1.75rem;
  line-height: 1.6;
}

.wl-field { margin-bottom: 1rem; }
.wl-label {
  display: block;
  font-size: 12px; font-weight: 500;
  color: #1a1a18; margin-bottom: 6px;
}
.wl-input, .wl-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #1a1a18;
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.wl-input:focus, .wl-select:focus {
  outline: none;
  border-color: #1D9E75;
}
.wl-input::placeholder { color: #aaa; }

.wl-submit {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 100px;
  background: #1D9E75;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.5rem;
}
.wl-submit:hover { background: #0F6E56; }
.wl-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.wl-msg {
  text-align: center;
  font-size: 13px;
  margin-top: 1rem;
  line-height: 1.5;
}
.wl-msg.success { color: #1D9E75; }
.wl-msg.error { color: #c0392b; }

@media (max-width: 480px) {
  .wl-modal { padding: 2rem 1.5rem; width: 95%; }
  .wl-title { font-size: 20px; }
}
