.hello-cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 999999;
	padding: 16px 20px;
	background: #1a1a1a;
	color: #eee;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
	font-size: 14px;
	line-height: 1.5;
}

.hello-cookie-consent--bottom {
	bottom: 0;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.hello-cookie-consent--top {
	top: 0;
	bottom: auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hello-cookie-consent--center {
	bottom: auto;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	box-shadow: none;
}

.hello-cookie-consent--center .hello-cookie-consent__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.hello-cookie-consent--center .hello-cookie-consent__inner {
	max-width: 480px;
	margin: 20px;
	padding: 24px;
	background: #1a1a1a;
	color: #eee;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	border-radius: 8px;
	flex-direction: column;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

.hello-cookie-consent[hidden] {
	display: none !important;
}

.hello-cookie-consent__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
}

.hello-cookie-consent__text {
	margin: 0;
	flex: 1 1 280px;
}

.hello-cookie-consent__link {
	color: #7eb8ff;
	text-decoration: underline;
}

.hello-cookie-consent__link:hover {
	color: #a8d0ff;
}

.hello-cookie-consent__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.hello-cookie-consent__btn {
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: opacity 0.2s;
}

.hello-cookie-consent__btn:hover {
	opacity: 0.9;
}

.hello-cookie-consent__btn--accept[type=button] {
	background-color: var(--hcc-accept-bg);
	color: var(--hcc-accept-text);
    transition: all .3s ease;
}

.hello-cookie-consent__btn--accept[type=button]:hover {
    opacity: .9;
    background-color: var(--hcc-accept-bg);
}

.hello-cookie-consent__btn--decline[type=button] {
	background: var(--hcc-decline-bg);
	color: var(--hcc-decline-text);
	border: 1px solid var(--hcc-decline-border);
    transition: all .3s ease;
}

.hello-cookie-consent__btn--decline[type=button]:hover {
    opacity: .9;
    background: var(--hcc-decline-bg);
}


@media (max-width: 480px) {
	.hello-cookie-consent__inner {
		flex-direction: column;
		align-items: stretch;
	}
	.hello-cookie-consent__actions {
		justify-content: flex-end;
	}
}
