/* Endergilin Dükkanı Kayısı - Public stilleri */

.edk-ad-slot {
	margin: 16px auto;
	text-align: center;
}

.edk-ad-slot iframe {
	max-width: 100%;
}

/* Mobil / desktop görünürlük kontrolleri */

.edk-mobile-only {
	display: none;
}

@media (max-width: 768px) {
	.edk-mobile-only {
		display: block;
	}
}

/* Mobil alt sabit banner */

.edk-sticky-bottom {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background-color: #ffffff;
	box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
}

/* Pop-up overlay */

.edk-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.edk-popup-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	background: #ffffff;
	border-radius: 8px;
	padding: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	overflow: auto;
}

.edk-popup-close {
	position: absolute;
	top: 8px;
	right: 12px;
	border: none;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.edk-popup-inner {
	margin-top: 16px;
}


