/* POP-UP 2026 */

/* CSS pop-up ïðîìîêîäó */
	#promo-popup {
	  position: fixed;
	  bottom: 20px;
	  right: 20px;
	  width: 320px;
	  background: #fff;
	  border: 2px solid #005691;
	  border-radius: 14px;
	  padding: 16px;
	  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	  opacity: 0;
	  visibility: hidden;
	  transform: scale(0.95) translateY(20px);
	  transition: opacity 0.4s ease, transform 0.4s ease;
	  z-index: 9999;
	  text-align: center;
	}

	#promo-popup.show {
	  opacity: 1;
	  visibility: visible;
	  transform: scale(1) translateY(0);
	}

	#promo-popup .promo-title {
	  font-weight: 600;
	  margin-bottom: 12px;
	  color: #005691;
	  line-height: 1.4;
	}

	.promo-code-wrap {
	  display: flex;
	  justify-content: center;
	  gap: 8px;
	}

	#promo-code {
	  width: 140px;
	  padding: 7px;
	  border: 1px solid #2ECC71;
	  border-radius: 6px;
	  text-align: center;
	  font-weight: bold;
	  background: #f9f9f9;
	}

	#copy-promo {
	  background: #2ECC71;
	  color: #fff;
	  border: none;
	  padding: 7px 14px;
	  border-radius: 6px;
	  cursor: pointer;
	  white-space: nowrap;
	}

	#copy-promo:hover {
	  background: #27ae60;
	}

	/* ?? ÀÄÀÏÒÈÂÍ²ÑÒÜ */
	@media (max-width: 768px) {
	  #promo-popup {
		width: calc(100% - 30px);
		left: 15px;
		right: 15px;
		bottom: 15px;
	  }

	  .promo-code-wrap {
		flex-direction: column;
	  }

	  #promo-code,
	  #copy-promo {
		width: 100%;
	  }
	}
	
	
	
/* pop-up ÎÃÎËÎØÅÍÍß */
	/* Overlay */
	#info-popup-overlay {
	  position: fixed;
	  inset: 0;
	  background: rgba(0,0,0,0.25);
	  backdrop-filter: blur(2px);
	  opacity: 0;
	  pointer-events: none;
	  transition: opacity 0.4s ease;
	  z-index: 9998;
	}

	/* Popup */
	#info-popup {
	  position: fixed;
	  top: 50%;
	  left: 50%;
	  width: 520px;
	  max-width: 90%;
	  background: #fff;
	  border: 2px solid #005691;
	  border-radius: 14px;
	  transform: translate(-50%, -50%) scale(0.9);
	  opacity: 0;
	  z-index: 9999;
	  transition: all 0.45s ease;
	  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
	}

	/* Active state */
	#info-popup.active,
	#info-popup-overlay.active {
	  opacity: 1;
	  pointer-events: auto;
	}

	#info-popup.active {
	  transform: translate(-50%, -50%) scale(1);
	}

	/* Red top bar */
	.info-popup-top {
	  height: 6px;
	  background: #F13340;
	  border-radius: 12px 12px 0 0;
	}

	/* Close */
	.info-popup-close {
	  position: absolute;
	  top: 10px;
	  right: 14px;
	  background: none;
	  border: none;
	  font-size: 26px;
	  color: #999;
	  cursor: pointer;
	}

	.info-popup-close:hover {
	  color: #333;
	}

	/* Content */
	.info-popup-content {
	  padding: 30px 35px 35px;
	  text-align: center;
	}

	.info-popup-icon {
	  font-size: 38px;
	  color: #F13340;
	  margin-bottom: 10px;
	}

	#info-popup h3 {
	  font-size: 24px;
	  margin-bottom: 15px;
	}

	#info-popup p {
	  font-size: 16px;
	  line-height: 1.6;
	  color: #444;
	}

	/* Mobile */
	@media (max-width: 480px) {
	  #info-popup {
		width: 92%;
	  }

	  #info-popup h3 {
		font-size: 20px;
	  }

	  #info-popup p {
		font-size: 15px;
	  }
	}
	/* Fix close button hover (PrestaShop override) */
	.info-popup-close,
	.info-popup-close:hover,
	.info-popup-close:focus,
	.info-popup-close:active {
	  background: transparent !important;
	  border: none !important;
	  box-shadow: none !important;
	  outline: none !important;
	}
		.info-popup-close {
	  transition: transform 0.2s ease, color 0.2s ease;
	}

	.info-popup-close:hover {
	  color: #F13340;
	  transform: scale(1.15);
	}

