.pcc-cookie {
	position: fixed;
	z-index: 99990;
	right: 24px;
	bottom: 24px;
	box-sizing: border-box;
	width: min(520px, calc(100% - 32px));
	padding: 22px;
	background: #fff;
	border: 1px solid var(--pcc-border-color, #e4dedb);
	border-radius: 0;
	color: #2d2826;
	font-family: inherit;
	box-shadow: 0 8px 24px rgba(45, 40, 38, 0.08);
}

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

.pcc-cookie--bottom-center {
	right: 50%;
	transform: translateX(50%);
}

.pcc-cookie__content {
	margin: 0 0 18px;
}

.pcc-cookie__text {
	margin: 0 0 10px;
	color: #2d2826;
	font-size: 15px;
	line-height: 1.55;
}

.pcc-cookie__link {
	color: #817875;
	font-size: 14px;
	line-height: 1.4;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pcc-cookie__link:hover,
.pcc-cookie__link:focus {
	color: #4a3938;
}

.pcc-cookie__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.pcc-cookie__button {
	box-sizing: border-box;
	min-height: 44px;
	padding: 11px 18px;
	border: 1px solid var(--pcc-button-color, #4a3938);
	border-radius: 0;
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pcc-cookie__button--primary {
	background: var(--pcc-button-color, #4a3938);
	color: #fff;
}

.pcc-cookie__button--secondary {
	background: #fff;
	color: #4a3938;
}

.pcc-cookie__button:hover,
.pcc-cookie__button:focus {
	outline: none;
	background: #2d2826;
	border-color: #2d2826;
	color: #fff;
}

@media (max-width: 640px) {
	.pcc-cookie,
	.pcc-cookie--bottom-center {
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		transform: none;
		padding: 18px 16px;
		border-right: 0;
		border-bottom: 0;
		border-left: 0;
	}

	.pcc-cookie__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.pcc-cookie__button {
		width: 100%;
	}
}
