/* Exit-Intent Popup â€” Glam Brand Photography */
#gbp-exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 15, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 20px;
  box-sizing: border-box;
}
#gbp-exit-overlay.gbp-visible {
  display: flex;
  opacity: 1;
}
#gbp-exit-card {
  background: #ffffff;
  max-width: 420px;
  width: 100%;
  border-radius: 10px;
  padding: 36px 32px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(10px);
  transition: transform 0.25s ease;
  font-family: inherit;
}
#gbp-exit-overlay.gbp-visible #gbp-exit-card {
  transform: translateY(0);
}
#gbp-exit-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
}
#gbp-exit-close:hover {
  color: #333;
}
#gbp-exit-photo {
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: 8px;
  margin: 0 auto 18px;
  display: block;
  object-fit: cover;
}
#gbp-exit-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: 0.02em;
}
#gbp-exit-card p {
  margin: 0 0 24px;
  font-size: 15.5px;
  line-height: 1.5;
  color: #444;
}
#gbp-exit-btn-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#gbp-exit-cta {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}
#gbp-exit-cta:hover {
  background: #3a3a3a;
}
#gbp-exit-secondary {
  display: inline-block;
  background: none;
  border: none;
  color: #888;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.2s ease;
}
#gbp-exit-secondary:hover {
  color: #444;
}
@media (max-width: 480px) {
  #gbp-exit-card {
    padding: 30px 24px 26px;
  }
  #gbp-exit-card h2 {
    font-size: 21px;
  }
  #gbp-exit-photo {
    max-width: 130px;
  }
}