/* Cookie consent – banner & modal */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: #1a3063;
	color: #fff;
	padding: 16px 24px;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
	font-size: 14px;
	line-height: 1.5;
}
.cookie-notice-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.cookie-notice-text {
	margin: 0;
	flex: 1 1 280px;
}
.cookie-notice-text strong { display: block; margin-bottom: 4px; font-size: 15px; }
.cookie-notice-text a { color: #8eb4e3; text-decoration: underline; }
.cookie-notice-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}
.cookie-notice-btn {
	background: #fff;
	color: #1a3063;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.2s, color 0.2s;
}
.cookie-notice-btn:hover { background: #f0f0f0; color: #1a3063; }
.cookie-notice-btn-outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255,255,255,0.7);
}
.cookie-notice-btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }

/* Cookie Preferences – full-width bottom panel */
.cookie-consent-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	align-items: flex-end;
	justify-content: center;
	box-sizing: border-box;
}
.cookie-consent-overlay.is-open { display: flex; }
.cookie-consent-modal {
	background: #fff;
	color: #25252c;
	width: 100%;
	max-width: none;
	max-height: 85vh;
	overflow: auto;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
	border-radius: 12px 12px 0 0;
}
.cookie-consent-modal h3 {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 600;
	color: #1a3063;
}
.cookie-consent-modal .cookie-consent-intro {
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 1.6;
	color: #838386;
}
.cookie-consent-modal .cookie-consent-intro a { color: #1a3063; text-decoration: underline; }
.cookie-consent-modal .cookie-consent-body {
	padding: 24px 24px 0;
	max-width: 1200px;
	margin: 0 auto;
}
.cookie-consent-modal .cookie-consent-actions {
	padding: 20px 24px 24px;
	border-top: 1px solid #eee;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.cookie-category {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 0;
	border-bottom: 1px solid #eee;
}
.cookie-category:last-child { border-bottom: 0; }
.cookie-category input[type="checkbox"] {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	accent-color: #1a3063;
	cursor: pointer;
}
.cookie-category input[type="checkbox"]:disabled { cursor: not-allowed; opacity: 0.8; }
.cookie-category-label { font-weight: 600; font-size: 15px; color: #25252c; display: block; margin-bottom: 4px; }
.cookie-category-desc { font-size: 13px; line-height: 1.5; color: #838386; margin: 0; }
.cookie-consent-modal .button-primary { background: #1a3063; color: #fff; border: none; padding: 10px 20px; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 14px; }
.cookie-consent-modal .button-primary:hover { background: #152852; }
.cookie-consent-modal .button-secondary { background: #f5f5f5; color: #25252c; border: none; padding: 10px 20px; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 14px; }
.cookie-consent-modal .button-secondary:hover { background: #eee; }
.cookie-consent-modal .button-link { background: none; color: #1a3063; border: none; padding: 10px 0; font-weight: 600; cursor: pointer; font-size: 14px; text-decoration: underline; }
