.occ-banner-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.85);
	padding: 20px;
	box-sizing: border-box;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.occ-banner-overlay.occ-visible {
	opacity: 1;
}

/* Prevent background scroll while banner is open */
body.occ-banner-open {
	overflow: hidden;
}

.occ-banner-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 100%;
	max-height: 100%;
}

.occ-banner-picture {
	display: block;
	max-width: 100%;
	max-height: 85vh;
	cursor: pointer;
}

.occ-banner-img {
	display: block;
	max-width: 100%;
	max-height: 85vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 6px;
}

.occ-banner-overlay .occ-banner-close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 40px !important;
	height: 40px !important;
	min-width: 40px !important;
	min-height: 40px !important;
	max-width: 40px !important;
	flex: 0 0 auto;
	box-sizing: border-box !important;
	border-radius: 50% !important;
	border: none !important;
	background: #fff !important;
	color: #222 !important;
	font-size: 26px;
	line-height: 1 !important;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	margin: 0 !important;
	text-transform: none;
	transition: transform 0.15s ease;
}

.occ-banner-close:hover {
	transform: scale(1.1);
}

.occ-banner-enter {
	margin-top: 18px;
	padding: 12px 40px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: #111;
	border: 2px solid #fff;
	border-radius: 40px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.occ-banner-enter:hover {
	background: #fff;
	color: #111;
}

@media (max-width: 1024px) {
	.occ-banner-overlay {
		padding: 12px;
	}

	.occ-banner-overlay .occ-banner-close {
		top: -10px;
		right: -10px;
		width: 34px !important;
		height: 34px !important;
		min-width: 34px !important;
		min-height: 34px !important;
		max-width: 34px !important;
		font-size: 22px;
	}

	.occ-banner-enter {
		margin-top: 14px;
		padding: 10px 32px;
		font-size: 15px;
	}
}
