.pd-cookie-consent {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 99999;
	display: flex;
	justify-content: center;
	pointer-events: none;
}

.pd-cookie-consent__panel {
	width: min(100%, 760px);
	border-radius: 12px;
	background: linear-gradient(140deg, rgba(64, 0, 0, 0.94), rgba(0, 0, 0, 0.94));
	color: var(--primary-light, #fff);
	padding: 1rem 1.1rem;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
	border: 1px solid var(--primary-color, #5c0c0c);
	font-family: 'Ubuntu Condensed', sans-serif;
	pointer-events: auto;
	transform-origin: bottom center;
	transition: transform 0.22s ease, opacity 0.22s ease;
	text-align: center;
}

.pd-cookie-consent--minimizing .pd-cookie-consent__panel {
	opacity: 0;
	transform: translateY(2rem) scale(0.96);
}

.pd-cookie-consent__title {
	margin: 0 0 0.4rem;
	font-size: 1.1rem;
	line-height: 1.3;
}

.pd-cookie-consent__text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	max-width: 64ch;
	margin-left: auto;
	margin-right: auto;
}

.pd-cookie-consent__actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 0.85rem;
}

.pd-cookie-consent__button {
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 0.65rem 1rem;
	font-size: 0.9rem;
	line-height: 1.2;
	cursor: pointer;
	min-width: 190px;
	text-align: center;
}

.pd-cookie-consent__button--primary {
	background: var(--primary-color, #5c0c0c);
	color: var(--primary-light, #fff);
	border-color: var(--primary-color, #5c0c0c);
}

.pd-cookie-consent__button--primary:hover {
	background: var(--secondary-color, #400000);
	border-color: var(--secondary-color, #400000);
}

.pd-cookie-consent__button--secondary {
	background: transparent;
	color: var(--primary-light, #fff);
	border-color: rgba(255, 255, 255, 0.65);
}

.pd-cookie-consent__button--secondary:hover {
	background: rgba(92, 12, 12, 0.22);
}

.pd-cookie-consent__meta {
	margin: 0.8rem 0 0;
	font-size: 0.84rem;
	text-align: center;
}

.pd-cookie-consent__meta a {
	color: var(--primary-light, #fff);
	text-decoration: underline;
}

.pd-cookie-consent__open,
.pd-cookie-consent__inline-open {
	background: rgba(0, 0, 0, 0.92);
	color: var(--primary-light, #fff);
	border: 1px solid var(--primary-color, #5c0c0c);
	border-radius: 999px;
	padding: 0.4rem 0.75rem;
	font-size: 0.82rem;
	cursor: pointer;
	font-family: 'Ubuntu Condensed', sans-serif;
}

.pd-cookie-consent__open {
	position: fixed;
	left: 1rem;
	bottom: 1rem;
	z-index: 99998;
}

.pd-cookie-consent__open:hover,
.pd-cookie-consent__inline-open:hover {
	background: var(--secondary-color, #400000);
}

@media (max-width: 560px) {
	.pd-cookie-consent {
		left: 0.6rem;
		right: 0.6rem;
		bottom: 0.6rem;
	}

	.pd-cookie-consent__panel {
		padding: 0.9rem;
	}

	.pd-cookie-consent__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.pd-cookie-consent__button {
		width: 100%;
		min-width: 0;
	}
}
