.becraft-popup-banner {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.becraft-popup-banner.active {
  display: block;
}
.becraft-popup-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.becraft-popup-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 90%;
  max-width: 420px;
  margin: 0 auto;
  padding: 32px 24px 28px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  box-sizing: border-box;
  top: 50%;
  transform: translateY(-50%);
}
.becraft-popup-banner__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.becraft-popup-banner__close svg {
  width: 18px;
  height: 18px;
}
.becraft-popup-banner__close svg path {
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
}
.becraft-popup-banner__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.becraft-popup-banner__text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  white-space: pre-line;
}
.becraft-popup-banner__btn {
  display: inline-block;
  padding: 16px 40px;
  background: #B88C55;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: opacity 0.3s ease-in-out;
}
.becraft-popup-banner__btn:visited {
  color: #fff;
}
.becraft-popup-banner__btn:hover {
  opacity: 0.8;
}

@media (max-width: 500px) {
  .becraft-popup-banner__content {
    padding: 28px 18px 22px;
  }
}
