/* ─── EXPLORE POPUP (one-time per page) ─────────── */
body.explore-popup-open { overflow: hidden; }

.explore-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(26, 20, 16, 0.62);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.explore-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.explore-popup-card {
  position: relative;
  width: min(100%, 420px);
  background: var(--white, #fff);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 20, 16, 0.28);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-popup-overlay.is-visible .explore-popup-card {
  transform: translateY(0) scale(1);
}

.explore-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(26, 20, 16, 0.55);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.explore-popup-close:hover {
  background: rgba(26, 20, 16, 0.78);
}

.explore-popup-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.explore-popup-body {
  padding: 1.35rem 1.5rem 1.5rem;
  text-align: center;
}

.explore-popup-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(201, 166, 70, 0.14);
  color: var(--gold-d, #9a7b2e);
  font-family: var(--font-sans, sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.explore-popup-title {
  font-family: var(--font-serif, serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark, #1a1410);
  margin: 0 0 0.6rem;
  line-height: 1.25;
}

.explore-popup-desc {
  font-family: var(--font-sans, sans-serif);
  font-size: 0.88rem;
  color: var(--muted, #6b5e52);
  line-height: 1.6;
  margin: 0 0 1.15rem;
}

.explore-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}

.explore-popup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: var(--gold, #c9a646);
  color: var(--white, #fff);
  font-family: var(--font-sans, sans-serif);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.explore-popup-cta:hover {
  background: var(--gold-d, #9a7b2e);
  transform: translateY(-1px);
}

.explore-popup-link {
  font-family: var(--font-sans, sans-serif);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-d, #9a7b2e);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 166, 70, 0.35);
  padding-bottom: 2px;
}

.explore-popup-link:hover {
  color: var(--dark, #1a1410);
}
