body.popup-open {
  overflow: hidden;
  font-family: Poppins, sans-serif;
}

/* Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  backdrop-filter: blur(4px);
}

/* Popup Box */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 1100px;
  height: 85vh;
  margin: 3% auto;
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Close */
.popup-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 32px;
  cursor: pointer;
  color: #777;
}

.popup-close:hover {
  color: #000;
}

/* Layout */
.popup-content {
  display: flex;
  width: 100%;
  height: 100%;
}

/* LEFT IMAGE */
.popup-left {
  width: 50%;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.popup-left img {
  max-width: 85%;
  transition: transform 0.4s ease;
}

.popup-left:hover img {
  transform: scale(1.25);
}

/* RIGHT SIDE */
.popup-right {
  width: 50%;
  display: flex;
  flex-direction: column;
}

/* TITLE */
.popup-title {
  font-size: 26px;
  font-weight: 600;
  padding: 30px;
  border-bottom: 1px solid #eee;
}

/* SCROLL */
.popup-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 25px 30px;
}

/* PRICE */
.popup-price {
  font-size: 24px;
  font-weight: 700;
  color: #2c7a2c;
  margin-bottom: 15px;
}

/* DESC */
.popup-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

/* CART */
.popup-cart-form {
  margin-top: 15px;
}

/* Quantity */
.popup-cart-form .quantity {
  margin-bottom: 15px;
}

.popup-cart-form input.qty {
  width: 70px;
  height: 40px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
}

/* Button */
.popup-cart-form button.single_add_to_cart_button {
  background: #2c7a2c;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.popup-cart-form button.single_add_to_cart_button:hover {
  background: #1f5c1f;
}

/* Scrollbar */
.popup-scroll::-webkit-scrollbar {
  width: 6px;
}

.popup-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .popup-box {
    flex-direction: column;
    height: 95vh;
    margin: 10px auto;
  }

  .popup-left {
    width: 100%;
    height: 45%;
    position: sticky;
    top: 0;
  }

  .popup-right {
    width: 100%;
    height: 55%;
  }

  .popup-title {
    font-size: 20px;
    padding: 20px;
  }

  .popup-scroll {
    padding: 20px;
  }

  .popup-cart-form button.single_add_to_cart_button {
    width: 100%;
  }
}
