/*
	Cookie lišta (consent.js) — SELF-HOSTED, žádná externí CMP služba.
	Styly jsou samonosné a prefixované `.cc-`, protože lišta jede na Frontu (Bootstrap 4)
	i v Bookingu (Bootstrap 5) — nesmí se opřít o třídy ani jednoho z nich.
	Paleta odpovídá brandu: navy podklad + zlatý akcent.
*/
.cc-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	display: none;
	background: #0f1729;
	color: #e9edf5;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, .35);
	font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 14px;
	line-height: 1.55;
}

.cc-bar.is-open { display: block; }

.cc-inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 20px 24px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 28px;
}

.cc-text { flex: 1 1 420px; min-width: 260px; }

.cc-text h4 {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	letter-spacing: .02em;
}

.cc-text p { margin: 0; color: #b9c2d4; }

.cc-options { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }

.cc-options label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	font-weight: 400;
	cursor: pointer;
	color: #cbd3e2;
}

.cc-options input { margin-top: 4px; flex: 0 0 auto; accent-color: #f0c419; }

.cc-options strong { color: #fff; font-weight: 600; }

.cc-actions {
	flex: 0 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.cc-btn {
	appearance: none;
	border: 1px solid rgba(255, 255, 255, .28);
	background: transparent;
	color: #e9edf5;
	padding: 10px 20px;
	border-radius: 2px;
	font: inherit;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.cc-btn:hover { background: rgba(255, 255, 255, .09); }

.cc-btn:focus-visible { outline: 2px solid #f0c419; outline-offset: 2px; }

.cc-btn--primary {
	background: #f0c419;
	border-color: #f0c419;
	color: #0f1729;
	font-weight: 600;
}

.cc-btn--primary:hover { background: #ffd534; border-color: #ffd534; }

.cc-btn--link {
	border-color: transparent;
	color: #b9c2d4;
	text-decoration: underline;
	padding-left: 6px;
	padding-right: 6px;
}

.cc-btn--link:hover { background: transparent; color: #fff; }

/* Odkaz „Nastavení cookies" v patičkách obou layoutů. */
.cc-reopen { cursor: pointer; }

@media (max-width: 767px) {
	.cc-inner { padding: 16px; gap: 14px; }
	.cc-actions { width: 100%; }
	.cc-actions .cc-btn { flex: 1 1 auto; text-align: center; }
	.cc-bar { max-height: 85vh; overflow-y: auto; }
}
