/* Mixin Responsive*/
.pagination-wrap nav {
  margin: auto;
}

.pagination {
  display: flex;
}
.pagination .page-item {
  border: 1px solid #e8e8e8;
}
.pagination .page-item .page-link {
  display: inline-block;
  padding: 10px 15px;
}
.pagination .page-item .page-link:hover {
  background-color: #009be1;
  color: #fff;
}
.pagination .page-item.active .page-link {
  background-color: #009be1;
  color: #fff;
}

.fix-responsive img {
  max-width: 100% !important;
  height: auto !important;
}

.main-slider .swiper-button-prev svg, .main-slider .swiper-button-next svg {
  width: 11px;
  color: #83939e;
}

.spotlight-color {
  color: #ce8876;
}

.spotlight-bg {
  background-color: #ce8876;
}

.footer-info p {
  color: #fff;
  font-size: 14px;
}

/*# sourceMappingURL=custom.css.map */

/* =================================================================
   ProCoupons popup overlay — shown when ?offer=<id> is in the URL.
   ================================================================= */
.popup-overlay {
	position: fixed; top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0, 0, 0, 0.6); z-index: 99999;
	display: flex; align-items: center; justify-content: center;
	opacity: 0; visibility: hidden; transition: all 0.3s ease-in-out;
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-container {
	background: #fff; width: 90%; max-width: 600px; border-radius: 12px;
	padding: 40px 30px 30px; position: relative;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	transform: translateY(20px); transition: transform 0.3s ease;
}
.popup-overlay.active .popup-container { transform: translateY(0); }
.popup-container .close-btn {
	position: absolute; top: 15px; right: 15px; background: #f1f1f1;
	border: none; font-size: 20px; cursor: pointer; width: 32px; height: 32px;
	border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #555;
}
.popup-container .close-btn:hover { background: #e0e0e0; }
.popup-container .store-logo {
	width: 80px; height: 80px; background: #f9f4f1; margin: 0 auto 20px;
	display: flex; align-items: center; justify-content: center; border-radius: 12px;
}
.popup-container .store-logo img { max-width: 80%; max-height: 80%; }
.popup-title { font-size: 24px; font-weight: 700; color: #333; margin-bottom: 20px; line-height: 1.3; }
.instruction-text { font-size: 15px; color: #555; margin-bottom: 15px; }
.instruction-text a { color: #8b3dff; text-decoration: none; font-weight: 600; }
.code-box-wrapper {
	border: 2px dashed #4a66bd; background: #f0f4ff; padding: 10px; border-radius: 8px;
	display: flex; justify-content: space-between; align-items: center;
	margin-bottom: 15px; max-width: 450px; margin-left: auto; margin-right: auto;
}
.code-display { font-family: monospace; font-size: 24px; font-weight: bold; color: #333;
	letter-spacing: 2px; padding-left: 15px; flex-grow: 1; text-align: center; }
.btn-copy { background: #fbd600; color: #000; border: none; padding: 10px 25px;
	border-radius: 6px; font-weight: bold; cursor: pointer; font-size: 14px; transition: background 0.2s; }
.btn-copy:hover { background: #ffe13e; }
.popup-container .btn-primary { display: inline-block; background: #fbd600; color: #000;
	text-decoration: none; padding: 14px 40px; border-radius: 6px; font-weight: bold;
	font-size: 16px; margin-bottom: 10px; }
.popup-container .btn-primary:hover { background: #ffe13e; }
.popup-container .btn-secondary { display: inline-block; background: #fbd600; color: #000;
	text-decoration: none; padding: 12px 20px; border-radius: 6px; font-weight: 600;
	font-size: 15px; margin-top: 10px; }
.popup-container .btn-secondary:hover { background: #e0e6f1; }
.no-code-needed { color: #666; font-size: 14px; margin-top: 10px; }
.popup-footer { text-align: left; margin-top: 25px; }
.popup-footer .separator { height: 1px; background: #eee; margin-bottom: 15px; }
.popup-footer h4 { font-size: 14px; margin: 0 0 5px 0; color: #333; }
.popup-footer p { font-size: 13px; color: #666; margin: 0; line-height: 1.5; }
@media (max-width: 480px) {
	.popup-container { padding: 30px 20px 20px; width: 95%; }
	.popup-title { font-size: 20px; }
	.code-display { font-size: 18px; }
	.code-box-wrapper { flex-direction: column; gap: 10px; padding: 15px; }
	.btn-copy { width: 100%; }
}
