/* ─── Exit intent popup ──────────────────────────────────────────────────── */

.exit-intent-popup__dialog {
  background: #fff;
  border: solid 1px #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 800px;
  height: auto;
}

.exit-intent-popup__image {
  width: 45%;
  min-height: 376px;
  flex-shrink: 0;
}

.exit-intent-popup__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.exit-intent-popup__content {
  width: 55%;
  min-height: 376px;
  padding: 10px;
}

.exit-intent-popup__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 10px;
  height: 100%;
}

.exit-intent-popup__header h3 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.exit-intent-popup__header p {
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
  margin: 0;
}

.exit-intent-popup__header h4 {
  font-size: 36px;
  font-weight: 700;
  line-height: 50px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.exit-intent-popup__offer-label {
  font-size: 22px;
  font-weight: 700;
  width: 100%;
}

.exit-intent-popup__offer-detail {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  width: 100%;
  margin-top: 0.5rem;
}

.exit-intent-popup__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 336px;
  height: 54px;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  /* Customise colors to match your brand */
  color: #000;
  background: #ffd431;
  border: solid 1px #af8a00;
  box-shadow: 0px 8px 5px -5px rgba(0, 0, 0, 0.1);
}

.exit-intent-popup__cta::after {
  content: url("data:image/svg+xml,%3Csvg%20width='38'%20height='6'%20viewBox='0%200%2038%206'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M38%203L33%200.113249V5.88675L38%203ZM0%203V3.5H33.5V3V2.5H0V3Z'%20fill='black'/%3E%3C/svg%3E");
  display: inline-block;
  margin-bottom: 4px;
  flex-shrink: 0;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 767px) {
  .exit-intent-popup__dialog {
    width: 100%;
  }

  .exit-intent-popup__image {
    display: none;
  }

  .exit-intent-popup__content {
    width: 100%;
  }

  .exit-intent-popup__inner {
    padding: 0;
    margin: 0;
  }
}
