body.popup_active {
  overflow: hidden;
}
.window_popup {
  display: none;
  animation: zoomIn 0.4s ease-out forwards;
  transform-origin: center center;
  z-index: 1000;
}
 @keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.window_popup, .window_popup .popup-wrapper, .window_popup .background-popup {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.window_popup .popup-wrapper {
	justify-content: center;
	display: flex !important;
	flex-direction: column;
	padding: 20px;
}
.window_popup .popup-wrapper:not(.show):not(.closing) {
	display: none !important;
}
.window_popup .popup-wrapper.show .sm-popup {
	-webkit-animation: puff-in-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: puff-in-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.window_popup .background-popup {
	transition: opacity 0.3ms linear;
	/* background: #ffffff; */
	background: #000;
	opacity: 80%;
}
.window_popup .sm-popup {
	margin: 0 auto;
	border-radius: 30px;
	max-width: 800px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	overflow-y: auto;
	width: 100%;
}

.popup_content {
  position: relative;
  display: flex;    
}
.popup-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.popup-top {
  background-color: #36306E;
  color: #fff;
  padding: 70px 50px;
  border-radius: 30px;
  position: relative;
}
.this_week {
  display: inline-block;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  padding: 5px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: pulse2 2s infinite;
  font-family: 'Segoe UI', sans-serif;
  margin: 15px 0;
}

.offer-text {
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* 🔥 Optional Animation */
@keyframes pulse2 {
  0% {
    /* transform: scale(1); */
    box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.6);
  }
  70% {
    /* transform: scale(1.05); */
    box-shadow: 0 0 10px 10px rgba(255, 75, 43, 0.1);
  }
  100% {
    /* transform: scale(1); */
    box-shadow: 0 0 0 0 rgba(255, 75, 43, 0.1);
  }
}

.popup-left h2 {
  font-size: 72px;
  line-height: 1;
  margin: 0;
  color: #ffa993;
  font-family: 'Poppins';
  font-weight: 500;
  width: 100%;
}
.popup-left h4 {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 1.46;
  color: #f0f0f0;
  font-weight: 300;
}
.code_row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgb(255 255 255 / 25%);
  padding-bottom: 20px;
}
.code-label {
  margin: 0;
  background: #fff;
  color: #36306E;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}
.code_vl {
  font-size: 14px;
  line-height: 1;
  font-weight: normal;
  color: #F7A08B;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  padding: 7px 12px;
  border: 1px dashed #fff;
  border-radius: 20px;
  display: inline-block;
  }	
.popup-top p {
	color: rgb(255 255 255 / 75%);
	font-size: 18px;
	line-height: 1.5;
	font-weight: 300;
	max-width: 255px;
}
.popup-bottom {
  background: #a6e6df;
  color: #000;
  padding: 70px 50px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
}
.popup-bottom h4 {
  font-weight: 500;
  color: #000032;
  line-height: 1.15;
  margin: 0;
  }	
.popup-bottom p {
  font-size: 16px;
  line-height: 1.5;
  color: #000032;
  font-weight: 500;
}
.popup-bottom .arrow_btn {
  background: #3c2f80;
  color: #fff;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 18px;
  flex: 0 0 auto;
}
 
.popup-right {
  width: 50%;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.popup-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  color: white;
  background: rgba(0,0,0,0.4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.arrow-animate2 {
    position: relative;
    animation: moveRight2 1.5s linear infinite;
}
@keyframes moveRight2 {
  0% { left: 0; }
  50% { left: 5px; }
  100% { left: 0; }
}


  /* Responsive */
  @media (max-width: 1600px) {
    .popup-left h2 {
      font-size: 60px;
    }
    .popup-right img {
      max-height: 588px;
    }
    .popup-top,
    .popup-bottom {
      padding: 40px 40px;
    }
  }
  @media (min-width: 1200px) and (max-width: 1300px) {
    .popup-right img {
      max-height: 545px;
    }
    .popup-top,
    .popup-bottom {
      padding: 30px 30px;
    }
  }
  @media (max-width: 767px) {
    .popup_content {
		flex-direction: column;
	}
    .popup-left,
    .popup-right {
      width: 100%;
    }
	.popup-left h2 {
		font-size: 50px;
	}  
	.popup-top {
		border-bottom-left-radius: 0px;
	}
	.popup-bottom,
	.popup-top {
		border-top-right-radius: 0px;
		border-bottom-right-radius: 0px;
		padding: 40px 30px;
	}  
	.popup-bottom {
		border-top-left-radius: 0px;
	}  
	.popup-right {
		border-top-left-radius: 0px;
		border-bottom-left-radius: 0px;
		display: none;
	}
	.popup-left h4,
	.popup-bottom h4 {
		font-size: 20px;
	}  
   
  }