/**
 * Home 2 — "Discover Premium Events" landing.
 *
 * Premium dark experience: aurora glows, glassmorphism, animated reveals,
 * shine-sweep cards and a glowing search. All rules are namespaced `h2-` /
 * `festino-hero-search` and scoped under `body.festino` so they never leak.
 */

body.festino {
	/* Lifted from #1c1110 for a lighter, warmer page base (client request) while
	   staying within the dark theme so text contrast is unaffected. */
	--h2-bg: #271a16;
	--h2-lowest: #160b0a;
	--h2-low: #251917;
	--h2-high: #342726;
	--h2-highest: #3f3130;
	--h2-primary: #ffb68b;
	--h2-accent: #ff7a00;
	--h2-on-primary: #ffffff;
	--h2-on-surface: #f4dddb;
	--h2-variant: #e0c0af;
	--h2-outline: #a78b7c;
	--h2-radius: 18px;
	--h2-gutter: 24px;
	--h2-card-ratio: 1 / 1;
	--h2-glass: rgba(255, 255, 255, 0.04);
	--h2-glass-brd: rgba(255, 255, 255, 0.12);
	--h2-glow: 0 0 40px rgba(255, 122, 0, 0.28);
}

/* Section glow: a soft aurora drifting behind every full-bleed section. */
body.festino .elementor-element > .e-con-inner,
body.festino [data-element_type="container"] { position: relative; }

/* ---- Scroll reveal ------------------------------------------------------ */
.festino-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
.festino-reveal.is-visible { opacity: 1; transform: none; }
.festino-reveal[data-delay="1"] { transition-delay: 0.08s; }
.festino-reveal[data-delay="2"] { transition-delay: 0.16s; }
.festino-reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
	.festino-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Shared ------------------------------------------------------------- */
.h2-glass {
	background: var(--h2-glass);
	border: 1px solid var(--h2-glass-brd);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.h2-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 32px;
}

.h2-title,
body.festino .h2-title .elementor-heading-title {
	font-family: "Libre Caslon Text", Georgia, serif;
	color: var(--h2-on-surface);
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.1;
	margin: 0;
	position: relative;
}
/* Accent rule under section titles. */
body.festino .h2-title .elementor-heading-title::after {
	content: "";
	display: block;
	width: 56px;
	height: 4px;
	margin-top: 14px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--h2-accent), transparent);
}

.h2-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--h2-primary);
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease, gap 0.2s ease;
}
.h2-link:hover { color: var(--h2-accent); gap: 12px; }
.h2-link .material-symbols-outlined { font-size: 20px; }

/* ---- Grids -------------------------------------------------------------- */
.h2-grid { display: grid; gap: var(--h2-gutter); }
.h2-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.h2-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1024px) {
	.h2-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.h2-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.h2-grid--4, .h2-grid--3 { grid-template-columns: minmax(0, 1fr); }
}

/* ---- Marquee / carousel (featured events) ----------------------------
 * Turns the featured-events grid into a swipeable, snapping horizontal
 * row. `--marquee` is auto-advanced by home2.js on all screen sizes;
 * `--scroll` is manual swipe only. Pauses on touch/hover so cards stay
 * fully tappable. Responsive card widths show more items on larger screens.
 */
.h2-grid--scroll,
.h2-grid--marquee {
	display: flex;
	grid-template-columns: none;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	gap: 16px;
	padding: 4px 24px 16px 0;
	scrollbar-width: none;
}
.h2-grid--scroll::-webkit-scrollbar,
.h2-grid--marquee::-webkit-scrollbar { display: none; }
.h2-grid--scroll > *,
.h2-grid--marquee > * {
	flex: 0 0 23%;
	max-width: 23%;
	scroll-snap-align: start;
}
@media (max-width: 1024px) {
	.h2-grid--scroll > *,
	.h2-grid--marquee > * {
		flex: 0 0 38%;
		max-width: 38%;
	}
}
@media (max-width: 640px) {
	.h2-grid--scroll > *,
	.h2-grid--marquee > * {
		flex: 0 0 80%;
		max-width: 80%;
	}
	/* Compact card internals on phones: smaller type and a shorter content
	   area so the square image stays the dominant, clearly-visible element. */
	.h2-card__body { padding: 13px 15px 15px; }
	.h2-card__date { font-size: 11px; margin-bottom: 5px; }
	.h2-card__name { font-size: 16px; line-height: 1.22; margin-bottom: 5px; }
	.h2-card__loc { font-size: 12px; margin-bottom: 11px; }
	.h2-card__cta { padding: 10px 14px; font-size: 12.5px; }
}

/* ---- Event card --------------------------------------------------------- */
.h2-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--h2-radius);
	overflow: hidden;
	position: relative;
	/* Layered surface so the card sits proud of the page background. */
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
		var(--h2-low);
	border: 1px solid var(--h2-glass-brd);
	box-shadow: 0 12px 32px -20px rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.h2-card:hover {
	transform: translateY(-10px);
	border-color: rgba(255, 122, 0, 0.6);
	box-shadow: var(--h2-glow), 0 30px 60px -28px rgba(0, 0, 0, 0.85);
}
/* Gradient accent rail along the top that lights up on hover. */
.h2-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 5;
	background: linear-gradient(90deg, var(--h2-accent), var(--h2-primary));
	opacity: 0;
	transition: opacity 0.4s ease;
}
.h2-card:hover::before { opacity: 1; }
/* Diagonal shine sweep on hover. */
.h2-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: -60%;
	width: 50%;
	height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.12), transparent);
	transform: skewX(-18deg);
	transition: left 0.7s ease;
	pointer-events: none;
	z-index: 3;
}
.h2-card:hover::after { left: 130%; }

.h2-card__media {
	position: relative;
	display: block;
	width: 100%;
	/* Fixed, undistorted ratio — the image fills it via cover (no stretch). */
	aspect-ratio: var(--h2-card-ratio, 4 / 3);
	overflow: hidden;
}
/* Gradient scrim so white text/badges always read on busy photos. */
.h2-card__media::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(22, 11, 10, 0.1) 0%, rgba(22, 11, 10, 0) 35%, rgba(22, 11, 10, 0.55) 100%);
	pointer-events: none;
}
.h2-card__name a { color: inherit; text-decoration: none; }
.h2-card:hover .h2-card__name a { color: var(--h2-primary); }
.h2-card__img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.h2-card:hover .h2-card__img { transform: scale(1.08); }

.h2-card__price,
.h2-card__badge {
	position: absolute;
	top: 16px;
	z-index: 4;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.03em;
	padding: 5px 13px;
	border-radius: 999px;
}
.h2-card__price {
	right: 16px;
	color: var(--h2-on-surface);
	background: rgba(28, 17, 16, 0.72);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(244, 221, 219, 0.14);
}
.h2-card__badge {
	left: 16px;
	color: #fff;
	background: linear-gradient(135deg, #ff7a00, #ff9a3c);
	box-shadow: 0 6px 18px -6px rgba(255, 122, 0, 0.8);
}
/* Pulsing dot to make "Trending" feel live. */
.h2-card__badge::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-right: 6px;
	border-radius: 999px;
	background: #fff;
	vertical-align: middle;
	animation: h2-pulse 1.6s ease-in-out infinite;
}
@keyframes h2-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

.h2-card__body { display: flex; flex-direction: column; flex: 1; padding: 15px 17px 17px; }
.h2-card__date {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--h2-primary);
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.05em;
	margin-bottom: 7px;
}
.h2-card__date .material-symbols-outlined { font-size: 16px; }
.h2-card__name {
	font-family: "Libre Caslon Text", Georgia, serif;
	color: var(--h2-on-surface);
	font-size: 18px;
	line-height: 1.25;
	margin: 0 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.25s ease;
}
.h2-card__loc {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--h2-variant);
	font-family: "Inter", sans-serif;
	font-size: 13px;
	margin-bottom: 14px;
}
.h2-card__loc .material-symbols-outlined { font-size: 15px; }

.h2-card__cta {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	text-align: center;
	padding: 11px 16px;
	border-radius: 11px;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.03em;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}
/* Filled gradient — the prominent "Book Now" action on featured cards. */
.h2-card__cta--primary {
	border: none;
	color: #2b1613;
	background: linear-gradient(135deg, #ff7a00, #ffb68b);
	box-shadow: 0 12px 26px -12px rgba(255, 122, 0, 0.75);
}
.h2-card__cta--primary:hover { box-shadow: var(--h2-glow), 0 14px 30px -10px rgba(255, 122, 0, 0.85); transform: translateY(-1px); }
.h2-card__cta--outline { border: 1.5px solid var(--h2-primary); color: var(--h2-primary); background: transparent; }
.h2-card__cta--outline:hover { background: var(--h2-primary); color: #2b1613; box-shadow: var(--h2-glow); }
.h2-card__cta--soft { border: none; color: var(--h2-on-surface); background: rgba(255, 182, 139, 0.15); }
.h2-card__cta--soft:hover { background: var(--h2-accent); color: #fff; box-shadow: var(--h2-glow); }

/* ---- Category tiles ----------------------------------------------------- */
.h2-cat {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 168px;
	padding: 24px;
	border-radius: 18px;
	background: var(--h2-glass);
	border: 1px solid var(--h2-glass-brd);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	text-decoration: none;
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
/* Radial glow that blooms from the centre on hover. */
.h2-cat::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 35%, rgba(255, 122, 0, 0.28), transparent 60%);
	opacity: 0;
	transition: opacity 0.35s ease;
}
.h2-cat:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 122, 0, 0.5);
	box-shadow: var(--h2-glow);
}
.h2-cat:hover::before { opacity: 1; }
.h2-cat__icon {
	position: relative;
	color: var(--h2-primary);
	font-size: 44px;
	margin-bottom: 14px;
	transition: transform 0.35s ease, text-shadow 0.35s ease;
}
/* Colored glow on hover follows the icon's own colour (set per tile below). */
.h2-cat:hover .h2-cat__icon { transform: translateY(-4px) scale(1.12); text-shadow: 0 0 20px currentColor; }
/* Colourful category icons — each tile gets a distinct vibrant hue while the
   card/name/counts stay on-brand. Cycles every 6 so any number of tiles works. */
.h2-cat:nth-child(6n + 1) .h2-cat__icon { color: #a78bfa; } /* violet */
.h2-cat:nth-child(6n + 2) .h2-cat__icon { color: #34d399; } /* emerald */
.h2-cat:nth-child(6n + 3) .h2-cat__icon { color: #f472b6; } /* pink */
.h2-cat:nth-child(6n + 4) .h2-cat__icon { color: #fbbf24; } /* amber */
.h2-cat:nth-child(6n + 5) .h2-cat__icon { color: #38bdf8; } /* sky */
.h2-cat:nth-child(6n + 6) .h2-cat__icon { color: #fb7185; } /* rose */
.h2-cat__name { position: relative; font-family: "Libre Caslon Text", Georgia, serif; color: var(--h2-on-surface); font-size: 18px; margin: 0 0 4px; }
@media (max-width: 640px) { .h2-cat { min-height: 130px; padding: 18px; } }
.h2-cat__count { position: relative; font-family: "Inter", sans-serif; color: var(--h2-variant); font-size: 12px; margin: 0; }

/* ---- Arrow controls ----------------------------------------------------- */
.h2-arrows { display: flex; gap: 16px; }
.h2-arrow {
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid rgba(244, 221, 219, 0.2);
	background: transparent;
	color: var(--h2-on-surface);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.h2-arrow:hover { background: var(--h2-accent); border-color: var(--h2-accent); color: #fff; transform: scale(1.08); }
.h2-arrow .material-symbols-outlined { font-size: 18px; }

/* ---- News / article cards (vertical, image on top) ---------------------- */
.h2-article {
	display: flex;
	flex-direction: column;
	border-radius: 18px;
	overflow: hidden;
	position: relative;
	background: var(--h2-glass);
	border: 1px solid var(--h2-glass-brd);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	text-decoration: none;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.h2-article:hover { transform: translateY(-8px); border-color: rgba(255, 122, 0, 0.5); box-shadow: var(--h2-glow), 0 24px 48px -24px rgba(0,0,0,0.8); }
.h2-article__media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	display: block;
}
.h2-article__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(22,11,10,0) 40%, rgba(22,11,10,0.6) 100%);
}
.h2-article__img {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.h2-article:hover .h2-article__img { transform: scale(1.07); }
.h2-article__body { display: flex; flex-direction: column; flex: 1; gap: 8px; padding: 22px; min-width: 0; }
.h2-article__cat {
	align-self: flex-start;
	color: var(--h2-accent);
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(255, 122, 0, 0.12);
	margin: 0;
}
.h2-article__title {
	font-family: "Libre Caslon Text", Georgia, serif;
	color: var(--h2-on-surface);
	font-size: 20px;
	line-height: 1.3;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.25s ease;
}
.h2-article:hover .h2-article__title { color: var(--h2-primary); }
.h2-article__excerpt {
	color: var(--h2-variant);
	font-family: "Inter", sans-serif;
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 auto;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.h2-article__date {
	color: var(--h2-outline);
	font-family: "Inter", sans-serif;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 8px 0 0;
}

/* ---- Hero --------------------------------------------------------------- */
body.festino .h2-hero { position: relative; overflow: hidden; }
/* Animated aurora blobs drifting behind the hero copy. */
body.festino .h2-hero::before,
body.festino .h2-hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	z-index: 0;
	pointer-events: none;
}
body.festino .h2-hero::before {
	width: 480px; height: 480px;
	top: -160px; right: -80px;
	background: radial-gradient(circle, rgba(255,122,0,0.45), transparent 70%);
	animation: h2-float 14s ease-in-out infinite;
}
body.festino .h2-hero::after {
	width: 380px; height: 380px;
	bottom: -160px; left: -60px;
	background: radial-gradient(circle, rgba(255,182,139,0.3), transparent 70%);
	animation: h2-float 18s ease-in-out infinite reverse;
}
@media (max-width: 640px) {
	body.festino .h2-hero::before { width: 280px; height: 280px; top: -80px; right: -60px; filter: blur(60px); }
	body.festino .h2-hero::after { width: 220px; height: 220px; bottom: -80px; left: -40px; filter: blur(60px); }
}
@keyframes h2-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-30px, 30px) scale(1.12); }
}
body.festino .h2-hero > * { position: relative; z-index: 1; }

.h2-hero__title {
	font-family: "Libre Caslon Text", Georgia, serif;
	font-size: clamp(44px, 8vw, 92px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	color: var(--h2-on-surface);
	margin: 0 0 18px;
	animation: h2-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.h2-hero__title em {
	font-style: italic;
	background: linear-gradient(120deg, #ffb68b 0%, #ff7a00 55%, #ffd9b0 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 22px rgba(255, 122, 0, 0.4));
}
.h2-hero__sub {
	font-family: "Inter", sans-serif;
	font-size: clamp(16px, 1.4vw, 20px);
	color: var(--h2-variant);
	max-width: 640px;
	margin: 0 0 36px;
	animation: h2-rise 0.8s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes h2-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
	.h2-hero__title, .h2-hero__sub { animation: none; }
	body.festino .h2-hero::before, body.festino .h2-hero::after { animation: none; }
}

/* ---- Search (native Stardust widget) -------------------------------------
 * A prominent, segmented search bar. Each section (Event / Location / dates)
 * is its own labeled, fully-clickable card — click anywhere in a segment to
 * type — and the Find Events button is a clearly separate action, so nothing
 * "bleeds" into it. Built to read as a real control, not a faint strip.
 */
.festino-hero-search,
.h2-search {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 10px;
	width: 100%;
	max-width: 1120px;
	padding: 12px;
	border-radius: 22px;
	background: rgba(28, 17, 16, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.95);
	animation: h2-rise 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.festino-hero-search:focus-within,
.h2-search:focus-within { border-color: rgba(255, 122, 0, 0.45); box-shadow: var(--h2-glow), 0 30px 70px -30px rgba(0,0,0,0.95); }

/* Each segment = a labeled, clickable card. */
.h2-search__field {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1 1 220px;
	min-width: 180px;
	padding: 12px 18px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	cursor: text;
	transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.h2-search__field:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 182, 139, 0.35); }
.h2-search__field:focus-within {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 122, 0, 0.6);
	box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.35);
}
.h2-search__field--date { flex: 1 1 170px; min-width: 150px; }
/* Two-field layout (Event + Location): give the event field a touch more room. */
.festino-hero-search .h2-search__field:first-of-type { flex: 1.4 1 260px; }
.h2-search__icon { color: var(--h2-primary); font-size: 24px; flex: 0 0 auto; }

.h2-search__seg { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.h2-search__label {
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--h2-variant);
}
.h2-search__field input {
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	color: var(--h2-on-surface);
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.3;
}
.h2-search__field input::placeholder { color: rgba(224, 192, 175, 0.6); font-weight: 400; }
.h2-search__field input[type="date"] { color-scheme: dark; }

/* The action button — visually its own piece, separated by the flex gap. */
.h2-search__submit {
	flex: 0 0 auto;
	align-self: stretch;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-left: 2px;
	background: linear-gradient(135deg, #ff7a00, #ff9a3c);
	color: #fff;
	border: none;
	padding: 0 34px;
	border-radius: 14px;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.04em;
	cursor: pointer;
	box-shadow: 0 12px 26px -12px rgba(255, 122, 0, 0.7);
	transition: box-shadow 0.25s ease, transform 0.15s ease;
}
.h2-search__submit .material-symbols-outlined { font-size: 20px; }
.h2-search__submit:hover { box-shadow: 0 0 30px rgba(255, 122, 0, 0.6); transform: translateY(-1px); }
.h2-search__submit:active { transform: translateY(0); }

@media (max-width: 860px) {
	.festino-hero-search, .h2-search { border-radius: 18px; }
	.h2-search__field { flex: 1 1 100%; }
	.h2-search__submit { width: 100%; padding: 14px 34px; margin-left: 0; }
}

/* Trust strip under the hero search (rendered by the widget). */
.h2-hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin-top: 28px;
	color: var(--h2-variant);
	font-family: "Inter", sans-serif;
	font-size: 14px;
	animation: h2-rise 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.h2-hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.h2-hero__trust .material-symbols-outlined { color: var(--h2-accent); font-size: 20px; }
