body.popup-open {
  overflow: hidden;
}

/* Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

/* Popup Box */
.popup-box {
  background: #fff;
  width: 85%;
  max-width: 1000px;
  height: 85vh;
  margin: 3% auto;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}

/* Layout */
.popup-content {
  display: flex;
  width: 100%;
  height: 100%;
}

/* LEFT SIDE IMAGE */
.popup-left {
  width: 50%;
  background: #f8f8f8;
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
  position: sticky;
  top: 0;
}

.popup-left img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
}

/* RIGHT SIDE CONTENT (Scrollable) */
.popup-right {
  width: 50%;
  padding: 40px 30px;
  overflow-y: auto;
}

.popup-title {
  margin-bottom: 10px;
}

.popup-price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.popup-desc {
  margin-bottom: 15px;
}

.popup-product {
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .popup-box {
    flex-direction: column;
    height: 100vh;
  }

  .popup-left,
  .popup-right {
    width: 100%;
  }

  .popup-left {
    height: 40%;
  }

  .popup-right {
    height: 43%;
  }
}
