/* Welcome2Emirates — consent banner.
   Scoped entirely under .w2e-consent so it cannot collide with Astra,
   Elementor, Estatik or the toolkit's own styles. */

.w2e-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99990;
	background: #10151c;
	color: #e9ecf1;
	border-top: 1px solid rgba(233, 236, 241, .14);
	box-shadow: 0 -8px 30px -18px rgba(0, 0, 0, .8);
	font-size: 14px;
	line-height: 1.5;
	transform: translateY(100%);
	transition: transform .28s ease;
}

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

.w2e-consent.is-visible {
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.w2e-consent {
		transition: none;
	}
}

.w2e-consent__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 24px;
}

.w2e-consent__text {
	margin: 0;
	flex: 1 1 340px;
	color: #cfd5de;
}

.w2e-consent__link {
	color: #d8b26a;
	text-decoration: underline;
	text-underline-offset: 2px;
	margin-left: 6px;
	white-space: nowrap;
}

.w2e-consent__link:hover,
.w2e-consent__link:focus-visible {
	color: #e7c98a;
}

.w2e-consent__actions {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

.w2e-consent__btn {
	font: inherit;
	font-weight: 600;
	letter-spacing: .01em;
	padding: 9px 20px;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.w2e-consent__btn:focus-visible {
	outline: 2px solid #d8b26a;
	outline-offset: 2px;
}

.w2e-consent__btn--ghost {
	background: transparent;
	color: #cfd5de;
	border-color: rgba(233, 236, 241, .32);
}

.w2e-consent__btn--ghost:hover {
	background: rgba(233, 236, 241, .08);
	color: #fff;
}

.w2e-consent__btn--solid {
	background: #d8b26a;
	color: #10151c;
	border-color: #d8b26a;
}

.w2e-consent__btn--solid:hover {
	background: #e7c98a;
	border-color: #e7c98a;
}

@media (max-width: 560px) {
	.w2e-consent__inner {
		padding: 14px 16px;
	}

	.w2e-consent__actions {
		width: 100%;
	}

	.w2e-consent__btn {
		flex: 1 1 0;
	}
}
