#navoto-bogo-popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

#navoto-bogo-popup-overlay.navoto-bogo-active {
	display: flex;
}

.navoto-bogo-popup-box {
	background: #fff;
	border-radius: 14px;
	padding: 36px 28px 28px;
	text-align: center;
	max-width: 620px;
	width: 94%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
	position: relative;
	animation: navoto-bogo-slide-in 0.3s ease;
}

@keyframes navoto-bogo-slide-in {
	from {
		transform: translateY(-30px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.navoto-bogo-popup-close {
	position: absolute;
	top: 12px;
	right: 16px;
	font-size: 26px;
	font-weight: bold;
	color: #555;
	cursor: pointer;
	line-height: 1;
	border: none;
	background: none;
	padding: 0;
}

.navoto-bogo-popup-close:hover {
	color: #000;
}

.navoto-bogo-popup-badge {
	display: inline-block;
	background: #e74c3c;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.navoto-bogo-popup-box h2 {
	margin: 0 0 6px;
	font-size: 22px;
	color: #1a1a1a;
}

.navoto-bogo-popup-subtitle {
	color: #666;
	margin: 0 0 20px;
	font-size: 14px;
}

.navoto-bogo-gifts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 14px;
	margin-bottom: 20px;
}

.navoto-bogo-gift-card {
	border: 2px solid #e5e5e5;
	border-radius: 10px;
	padding: 14px 10px;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
	position: relative;
	background: #fff;
}

.navoto-bogo-gift-card:hover {
	border-color: #e74c3c;
	box-shadow: 0 4px 16px rgba(231, 76, 60, 0.15);
	transform: translateY(-2px);
}

.navoto-bogo-gift-card.navoto-bogo-selected {
	border-color: #e74c3c;
	background: #fff5f5;
	box-shadow: 0 4px 16px rgba(231, 76, 60, 0.2);
}

.navoto-bogo-gift-card.navoto-bogo-selected::after {
	content: "✓";
	position: absolute;
	top: 6px;
	right: 8px;
	background: #e74c3c;
	color: #fff;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}

.navoto-bogo-gift-card img {
	width: 100%;
	height: 100px;
	object-fit: contain;
	margin-bottom: 8px;
	border-radius: 6px;
}

.navoto-bogo-gift-card-name {
	font-size: 13px;
	font-weight: 600;
	color: #222;
	line-height: 1.3;
	margin-bottom: 4px;
}

.navoto-bogo-gift-card-free {
	font-size: 12px;
	color: #27ae60;
	font-weight: 700;
}

.navoto-bogo-popup-actions {
	margin-top: 4px;
}

.navoto-bogo-add-gift-btn {
	display: inline-block;
	background: #e74c3c;
	color: #fff !important;
	padding: 12px 32px;
	text-decoration: none !important;
	border-radius: 7px;
	font-weight: 700;
	font-size: 15px;
	transition: background 0.25s, opacity 0.2s;
	border: none;
	cursor: pointer;
	opacity: 0.45;
	pointer-events: none;
}

.navoto-bogo-add-gift-btn.navoto-bogo-btn-active {
	opacity: 1;
	pointer-events: auto;
}

.navoto-bogo-add-gift-btn.navoto-bogo-btn-active:hover {
	background: #c0392b;
}

.navoto-bogo-add-gift-btn.navoto-bogo-loading {
	opacity: 0.7;
	pointer-events: none;
	cursor: wait;
}

.navoto-bogo-skip-btn {
	display: block;
	color: #999;
	font-size: 13px;
	cursor: pointer;
	margin-top: 12px;
	text-decoration: underline;
	border: none;
	background: none;
	width: 100%;
}

.navoto-bogo-skip-btn:hover {
	color: #333;
}

.navoto-bogo-gift-success {
	padding: 18px;
	color: #27ae60;
	font-size: 16px;
	font-weight: 600;
}
