.bcp-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 9999;
  width: min(390px, calc(100% - 32px));
  border: 1px solid rgba(232, 195, 125, 0.52);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(12, 1, 4, 0.96), rgba(86, 5, 36, 0.96)),
    image-set(url("../../../themes/beeru-luxury-home/assets/images/gallery-1.webp") type("image/webp"), url("../../../themes/beeru-luxury-home/assets/images/gallery-1.jpg") type("image/jpeg")) center / cover;
  color: #fff7ea;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 18px));
  transition: opacity 220ms ease, transform 220ms ease;
}

.bcp-popup.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.bcp-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.22);
  color: #fff7ea;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.bcp-popup-eyebrow {
  margin: 0 0 8px;
  color: #e8c37d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bcp-popup h2 {
  margin: 0 34px 10px 0;
  color: #fff8ee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
}

.bcp-popup-message {
  margin: 0;
  color: rgba(255, 247, 234, 0.86);
  font-size: 14px;
}

.bcp-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.bcp-popup-actions a {
  min-height: 42px;
  border: 1px solid rgba(232, 195, 125, 0.75);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: linear-gradient(135deg, #620525, #8a1237);
  color: #fff7ea;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.bcp-popup-actions a:first-child {
  background: transparent;
}

@media (max-width: 680px) {
  .bcp-popup {
    width: calc(100% - 28px);
    max-height: calc(100vh - 32px);
    overflow: auto;
    padding: 20px;
  }

  .bcp-popup-actions a {
    flex: 1 1 130px;
  }
}
