.asd-consent-banner {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 99999;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	padding: 1rem 6rem 1rem 1.25rem;
	background: #173332;
	color: #fff;
	box-shadow: 0 -2px 12px rgb(0 0 0 / 20%);
}

/* Reserve space so the fixed WhatsApp chat widget most themes/plugins add
   in the bottom-right corner never overlaps the Accept/Decline buttons —
   competing on z-index would be fragile against unknown third-party CSS. */
@media (min-width: 640px) {
	.asd-consent-banner {
		padding-right: 7rem;
	}
}

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

.asd-consent-banner__text {
	flex: 1 1 260px;
	margin: 0;
	font-size: .9rem;
	line-height: 1.4;
}

.asd-consent-banner__actions {
	display: flex;
	gap: .5rem;
	flex-shrink: 0;
}

.asd-consent-banner__accept,
.asd-consent-banner__decline {
	padding: .5rem 1rem;
	border: 1px solid #fff;
	border-radius: 6px;
	background: transparent;
	color: #fff;
	font-size: .85rem;
	cursor: pointer;
}

.asd-consent-banner__accept {
	background: #b47c47;
	border-color: #b47c47;
}

.asd-consent-banner__accept:hover,
.asd-consent-banner__decline:hover {
	opacity: .85;
}

@media (prefers-reduced-motion: reduce) {
	.asd-consent-banner * {
		transition: none !important;
	}
}
