/* Çerez rızası banner'ı. Tema CSS'ine (main.css) dokunmamak için ayrı dosya. */

.cookie-consent {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 1080; /* Bootstrap modal-backdrop (1040) üstünde, toast (1090) altında */
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: 60rem;
	margin: 0 auto;
	padding: 1rem 1.25rem;
	background: #fff;
	color: #222;
	border-radius: .5rem;
	box-shadow: 0 .5rem 1.75rem rgba(0, 0, 0, .25);
	font-size: .875rem;
	line-height: 1.5;
}

.cookie-consent[hidden] {
	display: none;
}

.cookie-consent__text {
	flex: 1 1 22rem;
}

.cookie-consent__text a {
	text-decoration: underline;
	white-space: nowrap;
}

.cookie-consent__actions {
	display: flex;
	gap: .5rem;
	flex: 0 0 auto;
}

/* Reddet ve Kabul et görsel olarak eşit ağırlıkta olmalı (rıza serbest olmalı). */
.cookie-consent__actions .btn {
	min-width: 7rem;
}

@media (max-width: 575.98px) {
	.cookie-consent {
		flex-direction: column;
		align-items: stretch;
	}

	.cookie-consent__actions .btn {
		flex: 1 1 0;
	}
}
