.wp-cookie-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 16px 24px;
	background: #1e1e1e;
	color: #f5f5f5;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.wp-cookie-consent-banner[hidden] {
	display: none;
}

.wp-cookie-consent--bottom {
	bottom: 0;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.wp-cookie-consent--top {
	top: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wp-cookie-consent__text {
	margin: 0;
	flex: 1 1 300px;
}

.wp-cookie-consent__actions {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.wp-cookie-consent__btn {
	padding: 8px 20px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.wp-cookie-consent__btn:hover {
	opacity: 0.85;
}

.wp-cookie-consent__btn--accept {
	background: #2271b1;
	color: #fff;
}

.wp-cookie-consent__btn--decline {
	background: transparent;
	color: #f5f5f5;
	border: 1px solid rgba(245, 245, 245, 0.4);
}

@media (max-width: 600px) {
	.wp-cookie-consent-banner {
		flex-direction: column;
		align-items: flex-start;
	}

	.wp-cookie-consent__actions {
		width: 100%;
	}

	.wp-cookie-consent__btn {
		flex: 1;
	}
}
