/* ===== POPUP ===== */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: var(--navy);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 350px;
  animation: fadeIn 0.3s ease;
}

.popup-icon {
  font-size: 40px;
  color: green;
}

.popup button {
  margin-top: 15px;
  padding: 8px 20px;
  border: none;
  background: var(--gold-primary);
  color: var(--navy);
  cursor: pointer;
  border-radius: 8px;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}