.consent-dialog { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: end; justify-content: center; padding: 20px; background: rgba(26, 42, 48, 0.52); }
.consent-dialog[hidden] { display: none; }
.consent-panel { width: min(100%, 620px); border: 1px solid rgba(42, 70, 81, 0.18); background: #faf8f4; box-shadow: 0 18px 60px rgba(26, 42, 48, 0.28); padding: 28px; color: #1a2a30; font-family: "boreal", sans-serif; }
.consent-panel h2 { margin: 0 0 12px; font-size: 22px; font-weight: 700; line-height: 1.2; }
.consent-panel p { margin: 0 0 12px; font-size: 14px; line-height: 1.55; }
.consent-note { color: #4a6470; }
.consent-note a { color: #2a4651; text-decoration: underline; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.consent-actions button { min-height: 42px; border: 1px solid #4a7886; cursor: pointer; padding: 10px 16px; font: 700 12px/1 "boreal", sans-serif; letter-spacing: 1px; text-transform: uppercase; }
.consent-primary { background: #4a7886; color: #fff; }
.consent-primary:hover, .consent-primary:focus-visible { background: #2a4651; border-color: #2a4651; }
.consent-secondary { background: transparent; color: #2a4651; }
.consent-secondary:hover, .consent-secondary:focus-visible { background: #eef2f3; }
.consent-category { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; padding: 16px 0; border-top: 1px solid rgba(42, 70, 81, 0.18); border-bottom: 1px solid rgba(42, 70, 81, 0.18); cursor: pointer; }
.consent-category strong, .consent-category small { display: block; }
.consent-category small { margin-top: 4px; color: #4a6470; font-size: 12px; line-height: 1.4; }
.consent-category input { position: absolute; opacity: 0; }
.consent-toggle { width: 42px; height: 24px; flex: 0 0 auto; border-radius: 12px; background: #75878d; padding: 3px; transition: background .15s; }
.consent-toggle::after { display: block; width: 18px; height: 18px; border-radius: 50%; background: #fff; content: ""; transition: transform .15s; }
.consent-category input:checked + .consent-toggle { background: #4a7886; }
.consent-category input:checked + .consent-toggle::after { transform: translateX(18px); }
.consent-category input:focus-visible + .consent-toggle { outline: 2px solid #1a2a30; outline-offset: 3px; }
.consent-revisit { position: fixed; right: 16px; bottom: 16px; z-index: 1900; border: 1px solid #2a4651; background: #faf8f4; color: #2a4651; box-shadow: 0 3px 12px rgba(26, 42, 48, 0.18); cursor: pointer; padding: 9px 12px; font: 700 10px/1 "boreal", sans-serif; letter-spacing: 1px; text-transform: uppercase; }
.consent-revisit:hover, .consent-revisit:focus-visible { background: #eef2f3; }
@media (max-width: 560px) { .consent-dialog { padding: 12px; } .consent-panel { padding: 22px; } .consent-actions button { flex: 1 1 100%; } }
@media (max-width: 768px) {
	.consent-revisit {
		top: 50%;
		right: 0;
		bottom: auto;
		padding: 12px 8px;
		transform: translateY(-50%);
		writing-mode: vertical-rl;
	}
}