/* =========================
   POPUP CORE
========================= */
.pum-overlay {
  z-index: 9998 !important;
}

.pum-container {
  width: 90vw !important;
  max-width: 1000px !important;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  z-index: 9999 !important;

  /* animation base */
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  transition: all 0.25s ease;
}

.pum-active .pum-container {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.pum-overlay {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pum-active.pum-overlay {
  opacity: 1;
}

.pum-content {
  padding: 0 !important;
}

body.pum-open-overlay {
  overflow: hidden !important;
}

/* =========================
   POPUP LAYOUT (3 COLUMN)
========================= */
.popup-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 25px;
  padding: 25px;

  height: 75vh;
  max-height: 600px;
  box-sizing: border-box;
}

/* IMAGE */
.popup-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-left img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* SCROLL */
.popup-requirements,
.popup-details {
  overflow-y: auto;
  padding-right: 10px;
}

/* =========================
   TEXT (FINAL POLISH)
========================= */

/* DETAILS */
.popup-text {
  font-size: 14px;
  line-height: 1.8;
  color: #1b5e20 !important;
  font-weight: 400;
}

/* HEADINGS */
.popup-requirements h4,
.popup-details h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f3d1f !important;
  margin-bottom: 8px;
}

/* LIST */
.popup-list {
  list-style: none;
  padding: 0;
}

.popup-list li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
  color: #1b5e20 !important;
  font-weight: 500;
  line-height: 1.7;
}

.popup-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2e7d32 !important;
}

/* CTA */
.popup-cta-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.popup-apply-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #2e7d32, #388e3c);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.popup-apply-btn:hover {
  opacity: 0.9;
}

/* SCROLLBAR */
.popup-requirements::-webkit-scrollbar,
.popup-details::-webkit-scrollbar {
  width: 5px;
}

.popup-requirements::-webkit-scrollbar-thumb,
.popup-details::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .popup-wrapper {
    grid-template-columns: 1fr 1fr;
    height: auto;
    max-height: none;
  }

  .popup-left {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .popup-wrapper {
    grid-template-columns: 1fr;
    height: auto;
  }

  .popup-cta-wrap {
    justify-content: center;
  }

  .popup-apply-btn {
    width: 100%;
    text-align: center;
  }
}


.pum-content.popmake-content{
    padding:0 !important;
}
