.mkt-popup {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.mkt-popup.is-open {
  display: flex;
}

.mkt-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 12, 0.72);
  backdrop-filter: blur(4px);
}

.mkt-popup__dialog {
  position: relative;
  width: min(860px, 100%);
  border-radius: 1.35rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 162, 39, 0.22), transparent 42%),
    linear-gradient(160deg, #0d241c 0%, #071510 58%, #0a1d16 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  color: #f7f1e4;
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.mkt-popup.is-open .mkt-popup__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mkt-popup__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.mkt-popup__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 340px;
}

.mkt-popup__grid--solo {
  grid-template-columns: 1fr;
}

.mkt-popup__media {
  position: relative;
  min-height: 280px;
  background: linear-gradient(145deg, rgba(126, 206, 160, 0.18), rgba(201, 162, 39, 0.12));
}

.mkt-popup__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mkt-popup__content {
  padding: 2rem 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.mkt-popup__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: #f0d889;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mkt-popup__content h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: #fff8e8;
}

.mkt-popup__content p {
  margin: 0;
  color: rgba(247, 241, 228, 0.82);
  line-height: 1.65;
  font-size: 0.98rem;
}

.mkt-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.mkt-popup__wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #05301d;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(18, 140, 126, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.mkt-popup__wa:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: #05301d;
}

.mkt-popup__wa i {
  font-size: 1.2rem;
}

.mkt-popup__later {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(247, 241, 228, 0.85);
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  cursor: pointer;
}

.mkt-popup__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.25rem;
  color: rgba(247, 241, 228, 0.7);
  font-size: 0.82rem;
}

.mkt-popup__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.mkt-popup__trust i {
  color: #7ecea0;
}

@media (max-width: 760px) {
  .mkt-popup__grid {
    grid-template-columns: 1fr;
  }

  .mkt-popup__media {
    min-height: 180px;
  }

  .mkt-popup__content {
    padding: 1.35rem 1.2rem 1.3rem;
  }
}
