/* Cybercom Cookie Consent popup styles */
.consent-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(15, 23, 42, 0.6);
	box-sizing: border-box;
}

.consent-popup-overlay * {
	box-sizing: border-box;
}

.consent-popup-overlay.is-hidden {
	display: none;
}

.consent-popup__box {
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	background: #ffffff;
	color: #1f2937;
	border-radius: 12px;
	padding: 28px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	font-size: 15px;
	line-height: 1.6;
	animation: consent-popup-in 0.2s ease-out;
}

@keyframes consent-popup-in {
	from { transform: translateY(12px); opacity: 0; }
	to   { transform: translateY(0); opacity: 1; }
}

.consent-popup__title {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 700;
	color: #111827;
}

.consent-popup__body p {
	margin: 0 0 12px;
}

.consent-popup__links {
	font-size: 14px;
}

.consent-popup__links a {
	color: var(--consent-accent, #2563eb);
	text-decoration: underline;
}

.consent-popup__consents {
	margin: 18px 0 4px;
	border-top: 1px solid #e5e7eb;
	padding-top: 16px;
}

.consent-popup__consent {
	padding: 12px 0;
	border-bottom: 1px solid #f1f5f9;
}

.consent-popup__consent:last-child {
	border-bottom: 0;
}

.consent-popup__doc-line {
	margin: 0 0 8px;
	font-size: 14px;
}

.consent-popup__doc-link {
	color: var(--consent-accent, #2563eb);
	font-weight: 600;
	text-decoration: underline;
}

.consent-popup__doc-arrow {
	color: var(--consent-accent, #2563eb);
}

.consent-popup__check {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	cursor: pointer;
}

.consent-popup__check input[disabled] {
	cursor: not-allowed;
}

.consent-popup__check input {
	margin-top: 3px;
	flex: 0 0 auto;
}

.consent-popup__hint {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #9ca3af;
	font-style: italic;
}

.consent-popup__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 20px;
}

.consent-popup__btn {
	appearance: none;
	border: 0;
	border-radius: 8px;
	padding: 11px 20px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.15s ease, background 0.15s ease;
}

.consent-popup__btn--agree {
	background: var(--consent-accent, #2563eb);
	color: #ffffff;
}

.consent-popup__btn--agree:hover {
	opacity: 0.9;
}

.consent-popup__btn--decline {
	background: #f3f4f6;
	color: #374151;
}

.consent-popup__btn--decline:hover {
	background: #e5e7eb;
}

.consent-popup__btn[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

@media (max-width: 480px) {
	.consent-popup__box { padding: 22px; }
	.consent-popup__actions { justify-content: stretch; }
	.consent-popup__btn { flex: 1 1 auto; }
}
