/* WebVibe Cookie Consent — full-width bar, RTL. Light/dark by choice. No icons, no shadow. */
/* Background + text colours are injected inline from the settings (light or dark). */

.wvcc-banner {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 99990;
	display: none; /* revealed by JS only when no prior consent */
	box-sizing: border-box;
	font-family: inherit;
	line-height: 1.6;
	text-align: right;
}

.wvcc-banner.wvcc-visible {
	display: block;
}

/* Flush to the very bottom / top edge of the page — no gap, no shadow. */
.wvcc-bottom {
	bottom: 0;
}

.wvcc-top {
	top: 0;
}

/* Full-width row: text on the right, buttons on the left. */
.wvcc-inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 24px;
	padding: 16px 28px;
}

.wvcc-text {
	flex: 1 1 320px;
	margin: 0;
	font-size: 15px;
}

.wvcc-policy-link {
	margin-inline-start: 6px;
	text-decoration: underline;
	white-space: nowrap;
}

.wvcc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	flex-shrink: 0;
}

.wvcc-btn {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	border: 0;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	padding: 10px 24px;
	line-height: 1.2;
	transition: opacity 0.15s ease, background-color 0.15s ease;
}

.wvcc-btn:hover {
	opacity: 0.9;
}

.wvcc-btn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Accept button colours + radius come inline from settings. */
.wvcc-btn-accept {
	background-color: #EE276F;
	color: #ffffff;
}

/* Decline — a quiet outline button that adapts to any bar colour (light or dark). */
.wvcc-btn-decline {
	background: transparent;
	color: inherit;
	border: 1px solid currentColor;
	opacity: 0.8;
	font-weight: 500;
}

.wvcc-btn-decline:hover {
	opacity: 1;
	background: rgba(127, 127, 127, 0.18);
}

@media (max-width: 600px) {
	.wvcc-inner {
		padding: 14px 16px;
	}

	.wvcc-actions {
		width: 100%;
	}

	.wvcc-btn {
		flex: 1 1 auto;
		text-align: center;
	}
}
