/* ===== FHK KVKK Bar ===== */
.fhk-kvkk {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99998;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	padding: 18px 28px;
	background-color: rgba(20, 20, 20, .96);
	box-shadow: 0 -4px 20px rgba(0, 0, 0, .25);
	opacity: 0;
	visibility: hidden;
	transform: translateY(100%);
	transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
.fhk-kvkk.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fhk-kvkk__text {
	flex: 1 1 520px;
	color: #fff;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}
.fhk-kvkk__text p { margin: 0 0 6px; }

.fhk-kvkk__link {
	display: inline;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	color: #E3231F;
	text-decoration: underline;
	cursor: pointer;
}
.fhk-kvkk__link:hover { opacity: .85; }

.fhk-kvkk__accept {
	flex: 0 0 auto;
	background-color: #E3231F;
	color: #fff;
	border: 0;
	outline: 0;
	cursor: pointer;
	padding: 14px 30px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .3px;
	transition: filter .2s ease;
}
.fhk-kvkk__accept:hover { filter: brightness(.9); }

/* ----- Popup / Modal ----- */
.fhk-kvkk-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, .7);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.fhk-kvkk-modal.is-open { display: flex; }

.fhk-kvkk-modal__box {
	position: relative;
	background: #fff;
	color: #333;
	width: 100%;
	max-width: 820px;
	max-height: 85vh;
	overflow-y: auto;
	padding: 34px 38px;
	border-radius: 6px;
	box-shadow: 0 10px 50px rgba(0, 0, 0, .4);
}
.fhk-kvkk-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: 0;
	outline: 0;
	font-size: 26px;
	line-height: 1;
	color: #333;
	cursor: pointer;
}
.fhk-kvkk-modal__close:hover { color: #E3231F; }
.fhk-kvkk-modal__title {
	margin: 0 0 16px;
	font-size: 22px;
	color: #000;
	padding-right: 30px;
}
.fhk-kvkk-modal__content {
	font-size: 15px;
	line-height: 1.7;
}

@media (max-width: 767px) {
	.fhk-kvkk { gap: 14px; padding: 16px 18px; }
	.fhk-kvkk__text { flex-basis: 100%; font-size: 13px; }
	.fhk-kvkk__accept { width: 100%; }
	.fhk-kvkk-modal__box { padding: 26px 20px; }
}
