@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

.auraeb-hero,
.auraeb-hero * {
	box-sizing: border-box;
}

.auraeb-hero {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	font-family: Montserrat, Arial, sans-serif;
}

.auraeb-link {
	display: block;
	position: relative;
	color: inherit;
	text-decoration: none;
}

.auraeb-picture,
.auraeb-image {
	display: block;
	width: 100%;
	height: auto;
}

.auraeb-overlay {
	position: absolute;
	z-index: 2;
	display: flex;
	flex-direction: column;
	line-height: 1.08;
	letter-spacing: 0;
	white-space: nowrap;
	max-width: 100%;
	max-height: 100%;
	overflow: hidden;
	visibility: hidden;
	pointer-events: none;
	text-wrap: nowrap;
}

.auraeb-overlay.is-ready {
	visibility: visible;
}

.auraeb-line {
	display: block;
	max-width: 100%;
}

.auraeb-overlay-tablet,
.auraeb-overlay-mobile {
	display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.auraeb-overlay-desktop {
		display: none;
	}

	.auraeb-overlay-tablet {
		display: flex;
	}
}

@media (max-width: 767px) {
	.auraeb-overlay-desktop,
	.auraeb-overlay-tablet {
		display: none;
	}

	.auraeb-overlay-mobile {
		display: flex;
	}
}

@media (min-width: 768px) {
	.auraeb-mobile-only-hero {
		display: none !important;
		height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
	}
}

.auraeb-category-hero {
	margin: 0 !important;
	padding: 0 !important;
}

.auraeb-persona[hidden] {
	display: none;
}

.auraeb-persona {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: grid;
	place-items: center;
	font-family: Montserrat, Arial, sans-serif;
}

.auraeb-persona-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 14, 15, 0.54);
	animation: auraebFade 240ms ease forwards;
}

.auraeb-persona-dialog {
	position: relative;
	z-index: 1;
	width: min(92vw, 460px);
	padding: 34px;
	border-radius: 28px;
	background: #fff;
	color: #2b1518;
	box-shadow: 0 28px 90px rgba(33, 18, 22, 0.34);
	overflow: hidden;
	text-align: center;
	animation: auraebScale 300ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.auraeb-soft-shape {
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 999px;
	background: rgba(86, 28, 36, 0.1);
	pointer-events: none;
}

.auraeb-soft-shape-one {
	top: -62px;
	right: -44px;
}

.auraeb-soft-shape-two {
	left: -72px;
	bottom: -74px;
	background: rgba(86, 28, 36, 0.07);
}

.auraeb-persona-logo {
	position: relative;
	width: 128px;
	height: auto;
	margin-bottom: 18px;
}

.auraeb-persona h2 {
	position: relative;
	margin: 0 0 10px;
	color: #561c24;
	font-size: 28px;
	line-height: 1.15;
	letter-spacing: 0;
}

.auraeb-persona p {
	position: relative;
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.65;
}

.auraeb-persona input {
	position: relative;
	width: 100%;
	min-height: 48px;
	border: 1px solid rgba(86, 28, 36, 0.22);
	border-radius: 14px;
	padding: 0 15px;
	font: inherit;
}

.auraeb-persona-actions {
	position: relative;
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.auraeb-persona button {
	min-height: 46px;
	border: 0;
	border-radius: 14px;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.auraeb-persona-primary {
	background: #561c24;
	color: #fff;
}

.auraeb-persona-secondary {
	background: #f5ecee;
	color: #561c24;
}

.auraeb-welcome {
	position: relative;
	min-height: 0;
	margin-top: 0;
	color: #561c24;
	font-weight: 800;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, margin 180ms ease;
}

.auraeb-welcome.is-visible {
	min-height: 24px;
	margin-top: 14px;
	opacity: 1;
	transform: translateY(0);
}

.auraeb-message-bar {
	position: fixed;
	left: 50%;
	bottom: 0;
	z-index: 99990;
	width: min(92vw, 500px);
	max-width: 500px;
	padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
	border-radius: 18px 18px 0 0;
	background: var(--auraeb-message-bg, #561c24);
	color: #fff;
	box-shadow: 0 -10px 34px rgba(32, 20, 24, 0.2);
	font-family: Montserrat, Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0;
	text-align: center;
	overflow-wrap: anywhere;
	white-space: normal;
	transform: translateX(-50%);
	animation: auraebMessageFade 220ms ease forwards;
	pointer-events: none;
}

@keyframes auraebFade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes auraebScale {
	from {
		opacity: 0;
		transform: scale(0.92);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes auraebMessageFade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@media (max-width: 767px) {
	.auraeb-message-bar {
		width: 92%;
		padding-right: 16px;
		padding-left: 16px;
		font-size: 14px;
	}
}
