.vip-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 16px;
}
.vip-overlay.vip-open { display: flex; }

.vip-modal {
  background: #fff;
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  padding: 28px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.vip-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #718096;
}

.vip-modal h3 {
  margin: 0 0 18px;
  font-size: 18px;
  color: #1a202c;
  text-align: center;
}

.vip-tabs {
  display: flex;
  margin-bottom: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}
.vip-tabs button {
  flex: 1;
  padding: 8px 0;
  background: #f7fafc;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: #4a5568;
}
.vip-tabs button.vip-tab-active {
  background: #2b6cb0;
  color: #fff;
}

.vip-modal .vip-field { margin-bottom: 14px; }
.vip-modal label { display: block; font-size: 13px; color: #4a5568; margin-bottom: 4px; }
.vip-modal .vip-field-hint { margin-top: 4px; font-size: 12px; color: #718096; }
.vip-modal input[type="text"],
.vip-modal input[type="tel"],
.vip-modal input[type="password"] {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.vip-honeypot { position: absolute !important; left: -9999px !important; top: -9999px !important; }

.vip-modal-submit {
  width: 100%;
  padding: 10px;
  background: #2b6cb0;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 4px;
}
.vip-modal-submit:hover { background: #1a4971; }
.vip-modal-submit:disabled { opacity: .6; cursor: not-allowed; }

.vip-modal-error {
  background: #fde8e8;
  color: #9b1c1c;
  padding: 9px 10px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 14px;
  display: none;
}
.vip-modal-error.vip-show { display: block; }

#ftco-navbar .nav-item.vip-login-item > a {
  cursor: pointer;
}
