/* ==========================================================================
   Cookie lišta (Anna Novotná) — barvy dle webu
   ========================================================================== */
.cc {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 10000;
	display: flex;
	justify-content: center;
}
.cc[hidden] { display: none; }

.cc__panel {
	width: 100%;
	max-width: 720px;
	background: #fff;
	border: 1px solid #e2e6e8;
	border-radius: 16px;
	box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.35);
	padding: 22px 24px;
	font-family: 'Nunito Sans', Helvetica, Arial, sans-serif;
	color: #262626;
}

.cc__title {
	margin: 0 0 8px;
	font-family: 'Nunito', Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #166F83;
}
.cc__desc {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.6;
}
.cc__desc a { color: #1F9DB9; text-decoration: underline; }

.cc__options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 18px;
	padding: 14px 16px;
	background: rgba(185, 222, 230, 0.18);
	border-radius: 12px;
}
.cc__opt {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13.5px;
	line-height: 1.5;
	cursor: pointer;
}
.cc__opt input { margin-top: 3px; flex: none; width: 18px; height: 18px; accent-color: #1F9DB9; }

.cc__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}
.cc__btn {
	flex: 1 1 auto;
	min-width: 140px;
	padding: 11px 18px;
	border: 0;
	border-radius: 9px;
	font-family: 'Nunito Sans', Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
}
.cc__btn--primary { background: #FD6D60; color: #fff; }
.cc__btn--primary:hover { background: #FC4636; }
.cc__btn--ghost { background: #eef2f3; color: #1A4B5A; }
.cc__btn--ghost:hover { background: #e0e6e8; }

@media (min-width: 640px) {
	.cc__btn { flex: 0 0 auto; }
}
@media (max-width: 480px) {
	.cc__panel { padding: 18px 16px; }
	.cc__btn { min-width: 0; flex: 1 1 45%; }
}
