/* ==========================================================================
   Horizon Theme â€” isolated. Only applies inside .horizon_theme / .mep-horizon-active
   Does NOT affect Default / Smart / Virtual templates.
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* Reset parent MEP wrappers when Horizon is active */
body.mep-horizon-active div.mpwem_wrapper,
body.mep-horizon-active .mpwem_wrapper,
body.mep-horizon-active .mep-events-wrapper,
body.mep-horizon-active .mpwem_style.mpwem_wrapper,
body.mep-horizon-active .mpwem_wrapper.horizon_parent_reset,
body.mep-horizon-active .mpwem_style.horizon_parent_reset,
body.mep-horizon-active .mep-events-wrapper.horizon_parent_reset,
.mpwem_wrapper.horizon_parent_reset,
.mpwem_style.horizon_parent_reset,
.mep-events-wrapper.horizon_parent_reset,
div.mpwem_wrapper:has(.horizon_theme),
.mep-events-wrapper:has(.horizon_theme),
.mpwem_style:has(.horizon_theme) {
	max-width: none !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
}

body.mep-horizon-active .mpwem_container,
body.mep-horizon-active .mpwem_container.horizon_parent_reset,
.mpwem_container.horizon_parent_reset,
.mpwem_container:has(.horizon_theme) {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.horizon_theme {
	--hz-purple: #7B61FF;
	--hz-purple-dark: #6548f0;
	--hz-purple-soft: #F1EDFF;
	--hz-purple-mid: #DED5FF;
	--hz-green: #E6F7EE;
	--hz-green-text: #1B8A4C;
	--hz-yellow: #FFF4D6;
	--hz-yellow-text: #9A7400;
	--hz-bg: #F5F5F7;
	--hz-card: #FFFFFF;
	--hz-text: #16161D;
	--hz-muted: #6E6E7A;
	--hz-border: #E8E8EE;
	--hz-radius: 16px;
	--hz-radius-sm: 12px;
	--hz-shadow: 0 8px 28px rgba(22, 22, 29, 0.07);
	--hz-shadow-lg: 0 18px 48px rgba(22, 22, 29, 0.12);
	--hz-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--hz-sans: 'Outfit', system-ui, -apple-system, sans-serif;
	--hz-max: 1180px;
	font-family: var(--hz-sans) !important;
	color: var(--hz-text);
	background: var(--hz-bg);
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0 0 72px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

.horizon_theme *,
.horizon_theme *::before,
.horizon_theme *::after {
	box-sizing: border-box;
}

.horizon_theme img {
	max-width: 100%;
	height: auto;
	display: block;
}

.horizon_theme a {
	text-decoration: none;
	color: inherit;
}

.horizon_theme h1,
.horizon_theme h2,
.horizon_theme h3,
.horizon_theme .horizon_section_title {
	font-family: var(--hz-serif) !important;
	font-weight: 700 !important;
	color: var(--hz-text) !important;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0;
}

.horizon_theme .horizon_section_title {
	font-size: 1.75rem !important;
	margin: 0 0 20px !important;
}

.horizon_theme .horizon_shell {
	max-width: 1340px;
	margin: 90px auto;
	padding: 0 24px;
	width: 100%;
	box-sizing: border-box;
}

/* Hide leftover default title/slider chrome */
.horizon_theme > .mpwem_tile,
.horizon_theme .mpwem_slider_area {
	display: none !important;
}

/* ========== HERO ========== */
.horizon_theme .horizon_hero {
	position: relative;
	isolation: isolate;
	width: calc(100% - 48px);
	max-width: none;
	margin: 24px auto 56px;
	min-height: 520px;
	border-radius: 28px;
	overflow: visible;
	display: flex;
	align-items: flex-end;
	padding: 0;
}

.horizon_theme .horizon_hero_media {
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: 28px;
	overflow: hidden;
	background-color: #1a1228;
	background-image:
		linear-gradient(90deg, rgba(10, 8, 20, 0.72) 0%, rgba(10, 8, 20, 0.35) 48%, rgba(10, 8, 20, 0.15) 100%),
		linear-gradient(180deg, rgba(10, 8, 20, 0.15) 0%, rgba(10, 8, 20, 0.55) 100%),
		var(--horizon-hero-image, none);
	background-size: cover;
	background-position: center;
}

.horizon_theme .horizon_hero_shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: 28px;
	overflow: hidden;
	pointer-events: none;
	background: radial-gradient(ellipse at 20% 70%, rgba(123, 97, 255, 0.18), transparent 50%);
}

.horizon_theme .horizon_hero_inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 48px 44px 0;
	display: flex;
	flex-direction: column;
	gap: 28px;
	animation: hzFadeUp 0.65s ease both;
}

.horizon_theme .horizon_hero_content {
	max-width: 640px;
	padding-bottom: 8px;
}

.horizon_theme .horizon_hero_badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--hz-purple);
	color: #fff;
	font-family: var(--hz-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 8px 16px 8px 12px;
	border-radius: 999px;
	margin-bottom: 18px;
	line-height: 1;
}

.horizon_theme .horizon_hero_live {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #39E37A;
	box-shadow: 0 0 0 4px rgba(57, 227, 122, 0.28);
	flex-shrink: 0;
	animation: hzLivePulse 1.8s ease-in-out infinite;
}

.horizon_theme .horizon_hero_title {
	font-family: var(--hz-serif) !important;
	font-size: clamp(2.4rem, 5vw, 3.75rem) !important;
	line-height: 1.08 !important;
	color: #fff !important;
	margin: 0 0 14px !important;
	max-width: 12ch;
	font-weight: 700 !important;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.horizon_theme .horizon_hero_desc_wrap {
	display: flex;
	align-items: baseline;
	gap: 10px;
	max-width: 560px;
	width: 100%;
}

.horizon_theme .horizon_hero_desc {
	margin: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 16px;
	line-height: 1.55;
	font-weight: 400;
	min-width: 0;
}

.horizon_theme .horizon_hero_desc_wrap.is-collapsed .horizon_hero_desc {
	flex: 1 1 auto;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.horizon_theme .horizon_hero_desc_wrap:not(.is-collapsed) {
	flex-wrap: wrap;
	align-items: flex-start;
}

.horizon_theme .horizon_hero_desc_wrap:not(.is-collapsed) .horizon_hero_desc {
	flex: 1 1 100%;
	white-space: normal;
}

.horizon_theme .horizon_hero_desc_more {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-family: var(--hz-sans);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
	white-space: nowrap;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.horizon_theme .horizon_hero_desc_more:hover {
	color: rgba(255, 255, 255, 0.85);
}

.horizon_theme .horizon_hero_cards > .horizon_modal {
	position: fixed;
}

/* Cards straddle the hero bottom edge */
.horizon_theme .horizon_hero_cards {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
	width: auto;
	max-width: 100%;
	position: relative;
	z-index: 3;
	margin: 12px 0 -48px;
}

.horizon_theme .horizon_info_card {
	background: #F7F7F9;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 18px;
	padding: 18px 20px;
	min-width: 190px;
	width: auto;
	flex: 0 1 auto;
	box-shadow: 0 16px 40px rgba(12, 10, 28, 0.18);
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	animation: hzFadeUp 0.55s ease both;
}

.horizon_theme .horizon_info_card:nth-child(2) { animation-delay: 0.08s; }
.horizon_theme .horizon_info_card:nth-child(3) { animation-delay: 0.16s; }

.horizon_theme .horizon_info_label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hz-purple);
	line-height: 1;
}

.horizon_theme .horizon_info_icon {
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--hz-purple);
	font-size: 14px;
}

.horizon_theme .horizon_info_value {
	font-family: var(--hz-sans) !important;
	font-size: 15px;
	font-weight: 700;
	color: var(--hz-text);
	line-height: 1.3;
}

.horizon_theme .horizon_info_card_location {
	min-width: 210px;
	max-width: 280px;
}

.horizon_theme .horizon_info_card_location .horizon_info_value_row {
	display: flex;
	align-items: baseline;
	gap: 6px;
	min-width: 0;
	width: 100%;
}

.horizon_theme .horizon_info_card_location .horizon_info_value {
	flex: 1 1 auto;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: normal;
}

.horizon_theme .horizon_location_more {
	flex: 0 0 auto;
	align-self: baseline;
	margin-top: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--hz-purple);
	font-family: var(--hz-sans);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.horizon_theme .horizon_location_more:hover {
	color: var(--hz-purple-dark);
}

/* Location modal */
.horizon_theme .horizon_modal[hidden] {
	display: none !important;
}

.horizon_theme .horizon_modal {
	position: fixed;
	inset: 0;
	z-index: 100050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.horizon_theme .horizon_modal_backdrop {
	position: absolute;
	inset: 0;
	background: rgba(16, 14, 28, 0.55);
	backdrop-filter: blur(2px);
}

.horizon_theme .horizon_modal_dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 440px;
	background: #fff;
	border-radius: 18px;
	padding: 24px 22px 20px;
	box-shadow: 0 24px 60px rgba(12, 10, 28, 0.28);
	animation: hzFadeUp 0.25s ease both;
}

.horizon_theme .horizon_modal_close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: #F0F0F4;
	color: #5B5B66;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.horizon_theme .horizon_modal_close:hover {
	background: var(--hz-purple-soft);
	color: var(--hz-purple);
}

.horizon_theme .horizon_modal_title {
	font-family: var(--hz-serif) !important;
	font-size: 1.25rem !important;
	margin: 0 0 12px !important;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-right: 28px;
}

.horizon_theme .horizon_modal_title .fas {
	color: var(--hz-purple);
	font-size: 16px;
}

.horizon_theme .horizon_modal_text {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.65;
	color: var(--hz-muted);
}

.horizon_theme .horizon_modal_map_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background: var(--hz-purple);
	color: #fff !important;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 16px;
	border-radius: 12px;
	text-decoration: none !important;
	transition: background 0.2s ease;
}

.horizon_theme .horizon_modal_map_btn:hover {
	background: var(--hz-purple-dark);
	color: #fff !important;
}

body.horizon-modal-open {
	overflow: hidden;
}

@keyframes hzLivePulse {
	0%, 100% { box-shadow: 0 0 0 3px rgba(57, 227, 122, 0.22); }
	50% { box-shadow: 0 0 0 6px rgba(57, 227, 122, 0.08); }
}

/* ========== ORGANIZER CARD ========== */
.horizon_theme .horizon_organizer_card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: #fff;
	border: 1px solid #ECECF2;
	border-radius: 22px;
	padding: 22px 24px;
	box-shadow: 0 8px 28px rgba(22, 22, 29, 0.05);
	margin: 20px 0px;
	animation: hzFadeUp 0.5s ease both;
}

.horizon_theme .horizon_organizer_info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
}

.horizon_theme .horizon_organizer_identity {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.horizon_theme .horizon_organizer_avatar {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	overflow: hidden;
	background: var(--hz-purple-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.horizon_theme .horizon_organizer_avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.horizon_theme .horizon_organizer_initial {
	font-weight: 700;
	color: var(--hz-purple);
	font-size: 20px;
}

.horizon_theme .horizon_organizer_meta {
	min-width: 0;
}

.horizon_theme .horizon_organizer_meta small {
	display: block;
	font-family: var(--hz-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #A0A0AB;
	margin-bottom: 4px;
	line-height: 1;
}

.horizon_theme .horizon_organizer_name {
	display: block;
	font-family: var(--hz-sans) !important;
	font-weight: 700 !important;
	font-size: 18px !important;
	line-height: 1.25 !important;
	color: #16161D !important;
	text-decoration: none !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.horizon_theme .horizon_organizer_name:hover {
	color: var(--hz-purple) !important;
}

.horizon_theme .horizon_follow_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #F2F2F5;
	color: #3A3A46 !important;
	font-family: var(--hz-sans);
	font-size: 14px;
	font-weight: 600;
	padding: 10px 22px;
	border-radius: 12px;
	border: 0;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.horizon_theme .horizon_follow_btn:hover {
	background: #E8E8EE;
	color: #16161D !important;
	transform: translateY(-1px);
}

.horizon_theme .horizon_organizer_stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
}

.horizon_theme .horizon_stat {
	min-width: 0;
	padding: 16px 18px;
	border-radius: 14px;
	text-align: left;
}

.horizon_theme .horizon_stat strong {
	display: block;
	font-family: var(--hz-sans);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 6px;
	letter-spacing: -0.02em;
}

.horizon_theme .horizon_stat span {
	display: block;
	font-family: var(--hz-sans);
	font-size: 13px;
	font-weight: 500;
	color: #6B6B78;
	line-height: 1.2;
}

.horizon_theme .horizon_stat_purple {
	background: #F1EDFF;
}

.horizon_theme .horizon_stat_purple strong {
	color: #7B61FF;
}

.horizon_theme .horizon_stat_green {
	background: #E8F8EF;
}

.horizon_theme .horizon_stat_green strong {
	color: #1B9A55;
}

.horizon_theme .horizon_stat_yellow {
	background: #FFF6DF;
}

.horizon_theme .horizon_stat_yellow strong {
	color: #C9891A;
}

/* ========== TWO COLUMN BODY ========== */
.horizon_theme .horizon_body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 40px;
	align-items: start;
}

.horizon_theme .horizon_main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.horizon_theme .horizon_section {
	width: 100%;
}

/* ========== ABOUT ========== */
.horizon_theme .horizon_about_content,
.horizon_theme .horizon_about_content p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--hz-muted);
	text-align: justify;
}

.horizon_theme .horizon_about_content p + p {
	margin-top: 14px;
}

.horizon_theme .horizon_about_content p:first-child {
	margin-top: 0;
}

/* ========== GALLERY ========== */
.horizon_theme .horizon_gallery_grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 0.95fr;
	grid-template-rows: 150px 150px;
	gap: 12px;
}

.horizon_theme .horizon_gallery_item {
	margin: 0;
	border-radius: var(--hz-radius-sm);
	overflow: hidden;
	background: #d9d9e0;
	position: relative;
}

.horizon_theme .horizon_gallery_zoom {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
	position: relative;
	overflow: hidden;
}

.horizon_theme .horizon_gallery_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
	display: block;
	pointer-events: none;
}

.horizon_theme .horizon_gallery_zoom_icon {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: rgba(17, 17, 19, 0.55);
	backdrop-filter: blur(6px);
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
	pointer-events: none;
}

.horizon_theme .horizon_gallery_item:hover img,
.horizon_theme .horizon_gallery_zoom:focus img {
	transform: scale(1.05);
}

.horizon_theme .horizon_gallery_item:hover .horizon_gallery_zoom_icon,
.horizon_theme .horizon_gallery_zoom:focus .horizon_gallery_zoom_icon {
	opacity: 1;
	transform: translateY(0);
}

.horizon_theme .horizon_gallery_zoom:focus {
	outline: none;
}

.horizon_theme .horizon_gallery_zoom:focus-visible {
	outline: 2px solid var(--hz-purple, #6c5ce7);
	outline-offset: -2px;
}

.horizon_theme .horizon_gallery_item:hover .horizon_gallery_zoom_icon {
	background: rgba(17, 17, 19, 0.72);
}

.horizon_theme .horizon_gallery_item_1 {
	grid-column: 1;
	grid-row: 1 / 3;
}

.horizon_theme .horizon_gallery_item_2 {
	grid-column: 2;
	grid-row: 1;
}

.horizon_theme .horizon_gallery_item_3 {
	grid-column: 2;
	grid-row: 2;
}

.horizon_theme .horizon_gallery_item_4 {
	grid-column: 3;
	grid-row: 1 / 3;
}

/* Gallery zoom lightbox */
.horizon_gallery_lightbox[hidden] {
	display: none !important;
}

.horizon_gallery_lightbox {
	position: fixed;
	inset: 0;
	z-index: 100050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
}

.horizon_gallery_lightbox__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	margin: 0;
	padding: 0;
	background: rgba(10, 10, 14, 0.86);
	cursor: zoom-out;
}

.horizon_gallery_lightbox__panel {
	position: relative;
	z-index: 1;
	width: min(1100px, 100%);
	max-height: calc(100vh - 48px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.horizon_gallery_lightbox__figure {
	margin: 0;
	max-width: 100%;
	max-height: calc(100vh - 48px);
	border-radius: 16px;
	overflow: hidden;
	background: #111;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.horizon_gallery_lightbox__figure img {
	display: block;
	max-width: min(1100px, 92vw);
	max-height: calc(100vh - 48px);
	width: auto;
	height: auto;
	object-fit: contain;
}

.horizon_gallery_lightbox__close,
.horizon_gallery_lightbox__nav {
	position: absolute;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}

.horizon_gallery_lightbox__close:hover,
.horizon_gallery_lightbox__nav:hover,
.horizon_gallery_lightbox__close:focus-visible,
.horizon_gallery_lightbox__nav:focus-visible {
	background: rgba(255, 255, 255, 0.22);
	outline: none;
}

.horizon_gallery_lightbox__close {
	top: -8px;
	right: -8px;
}

.horizon_gallery_lightbox__prev {
	left: 8px;
}

.horizon_gallery_lightbox__next {
	right: 8px;
}

.horizon_gallery_lightbox__nav[hidden] {
	display: none !important;
}

.horizon_gallery_lightbox__counter {
	position: absolute;
	left: 50%;
	bottom: -36px;
	transform: translateX(-50%);
	margin: 0;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.horizon_gallery_lightbox__counter[hidden] {
	display: none !important;
}

body.horizon-gallery-lightbox-open {
	overflow: hidden;
}

@media (max-width: 640px) {
	.horizon_gallery_lightbox {
		padding: 16px;
	}

	.horizon_gallery_lightbox__prev {
		left: 0;
	}

	.horizon_gallery_lightbox__next {
		right: 0;
	}

	.horizon_gallery_lightbox__close {
		top: -4px;
		right: 0;
	}

	.horizon_theme .horizon_gallery_zoom_icon {
		opacity: 1;
		transform: none;
	}
}

.horizon_theme .horizon_gallery_count_1 {
	grid-template-columns: 1fr;
	grid-template-rows: 280px;
}
.horizon_theme .horizon_gallery_count_1 .horizon_gallery_item_1 {
	grid-column: 1;
	grid-row: 1;
}

.horizon_theme .horizon_gallery_count_2 {
	grid-template-columns: 1.2fr 1fr;
	grid-template-rows: 280px;
}
.horizon_theme .horizon_gallery_count_2 .horizon_gallery_item_1,
.horizon_theme .horizon_gallery_count_2 .horizon_gallery_item_2 {
	grid-row: 1;
}
.horizon_theme .horizon_gallery_count_2 .horizon_gallery_item_2 {
	grid-column: 2;
}

.horizon_theme .horizon_gallery_count_3 {
	grid-template-columns: 1.35fr 1fr;
	grid-template-rows: 140px 140px;
}
.horizon_theme .horizon_gallery_count_3 .horizon_gallery_item_2 {
	grid-column: 2;
	grid-row: 1;
}
.horizon_theme .horizon_gallery_count_3 .horizon_gallery_item_3 {
	grid-column: 2;
	grid-row: 2;
}

/* ========== ARTISTS ========== */
.horizon_theme .horizon_artists_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.horizon_theme .horizon_artist_card {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: var(--hz-card);
	border: 1px solid var(--hz-border);
	border-radius: var(--hz-radius);
	padding: 16px;
	box-shadow: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.horizon_theme .horizon_artist_card:hover {
	transform: translateY(-2px);
	box-shadow: var(--hz-shadow);
}

.horizon_theme .horizon_artist_media {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--hz-purple-soft);
	display: flex;
	align-items: center;
	justify-content: center;
}

.horizon_theme .horizon_artist_media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.horizon_theme .horizon_artist_placeholder {
	font-weight: 700;
	color: var(--hz-purple);
	font-size: 22px;
}

.horizon_theme .horizon_artist_name {
	font-family: var(--hz-sans) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	margin: 0 0 4px !important;
}

.horizon_theme .horizon_artist_name a {
	color: var(--hz-text) !important;
}

.horizon_theme .horizon_artist_role {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--hz-purple);
	margin-bottom: 6px;
}

.horizon_theme .horizon_artist_bio {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--hz-muted);
}

/* ========== TIMELINE ========== */
.horizon_theme .horizon_timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding-left: 28px;
}

.horizon_theme .horizon_timeline::before {
	content: '';
	position: absolute;
	left: 7px;
	top: 10px;
	bottom: 10px;
	width: 2px;
	background: var(--hz-border);
}

.horizon_theme .horizon_timeline_item {
	position: relative;
}

.horizon_theme .horizon_timeline_dot {
	position: absolute;
	left: -28px;
	top: 22px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #C8C8D2;
	box-sizing: border-box;
	z-index: 1;
}

.horizon_theme .horizon_timeline_item.is-active .horizon_timeline_dot {
	background: var(--hz-purple);
	border-color: var(--hz-purple);
	box-shadow: 0 0 0 4px var(--hz-purple-soft);
}

.horizon_theme .horizon_timeline_card {
	background: var(--hz-card);
	border: 1px solid var(--hz-border);
	border-radius: var(--hz-radius-sm);
	padding: 16px 18px;
}

.horizon_theme .horizon_timeline_time {
	display: inline-flex;
	align-items: center;
	background: var(--hz-purple-soft);
	color: var(--hz-purple);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 8px;
}

.horizon_theme .horizon_timeline_title {
	font-family: var(--hz-sans) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	margin: 0 0 6px !important;
}

.horizon_theme .horizon_timeline_desc {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: var(--hz-muted);
}

/* ========== DATES (circular) ========== */
.horizon_theme .horizon_dates_row {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding: 4px 2px 8px;
	scrollbar-width: thin;
}

.horizon_theme .horizon_date_card {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--hz-card);
	border: 1px solid var(--hz-border);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	color: var(--hz-muted);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.horizon_theme .horizon_date_card:hover {
	transform: translateY(-2px);
	border-color: var(--hz-purple-mid);
	color: var(--hz-text);
}

.horizon_theme .horizon_date_card.is-active {
	background: var(--hz-purple);
	border-color: var(--hz-purple);
	color: #fff;
	box-shadow: 0 10px 22px rgba(123, 97, 255, 0.35);
}

.horizon_theme .horizon_date_day {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	opacity: 0.8;
}

.horizon_theme .horizon_date_num {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

/* ========== FAQ ========== */
.horizon_theme .horizon_faq_intro {
	color: var(--hz-muted);
	font-size: 14px;
	margin: -8px 0 16px;
}

.horizon_theme .horizon_faq_list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.horizon_theme .horizon_faq_item {
	background: var(--hz-card);
	border: 1px solid var(--hz-border);
	border-radius: var(--hz-radius-sm);
	overflow: hidden;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.horizon_theme .horizon_faq_item.is-open {
	background: var(--hz-purple-soft);
	border-color: var(--hz-purple-mid);
}

.horizon_theme .horizon_faq_trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	font-family: var(--hz-sans);
}

.horizon_theme .horizon_faq_q {
	font-size: 15px;
	font-weight: 600;
	color: var(--hz-text);
	line-height: 1.35;
}

.horizon_theme .horizon_faq_icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--hz-border);
	position: relative;
	flex-shrink: 0;
}

.horizon_theme .horizon_faq_icon::before,
.horizon_theme .horizon_faq_icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--hz-purple);
	transform: translate(-50%, -50%);
}

.horizon_theme .horizon_faq_icon::before {
	width: 10px;
	height: 2px;
}

.horizon_theme .horizon_faq_icon::after {
	width: 2px;
	height: 10px;
}

.horizon_theme .horizon_faq_item.is-open .horizon_faq_icon {
	background: var(--hz-purple);
	border-color: var(--hz-purple);
}

.horizon_theme .horizon_faq_item.is-open .horizon_faq_icon::before,
.horizon_theme .horizon_faq_item.is-open .horizon_faq_icon::after {
	background: #fff;
}

.horizon_theme .horizon_faq_item.is-open .horizon_faq_icon::after {
	display: none;
}

.horizon_theme .horizon_faq_answer {
	padding: 0 18px 16px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--hz-muted);
}

.horizon_theme .horizon_faq_answer p {
	margin: 0 0 8px;
}

.horizon_theme .horizon_faq_answer p:last-child {
	margin-bottom: 0;
}

/* ========== STICKY TICKET SIDEBAR ========== */
.horizon_theme .horizon_sidebar {
	position: sticky;
	top: 24px;
	align-self: start;
	z-index: 5;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.horizon_theme .horizon_ticket_card {
	background: var(--hz-card);
	border-radius: 22px;
	box-shadow: 0 18px 48px rgba(22, 22, 29, 0.1);
	border: 1px solid var(--hz-border);
	overflow: hidden;
	padding: 0;
	animation: hzFadeUp 0.55s ease 0.08s both;
}

/* Header */
.horizon_theme .horizon_ticket_head {
	background: linear-gradient(180deg, #F4F0FF 0%, #FAF8FF 100%);
	padding: 22px 22px 18px;
	border-bottom: 1px solid #EDE8FF;
}

.horizon_theme .horizon_ticket_eyebrow {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hz-purple);
	margin-bottom: 8px;
}

.horizon_theme .horizon_ticket_title {
	font-family: var(--hz-serif) !important;
	font-size: 1.45rem !important;
	line-height: 1.25 !important;
	margin: 0 0 10px !important;
	color: var(--hz-text) !important;
}

.horizon_theme .horizon_ticket_location {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	color: var(--hz-muted);
	margin: 0;
	line-height: 1.4;
}

.horizon_theme .horizon_ticket_location .fas {
	color: var(--hz-purple);
	margin-top: 3px;
	flex-shrink: 0;
}

.horizon_theme .horizon_ticket_body {
	padding: 18px 22px 8px;
}

.horizon_theme .horizon_ticket_body .mpwem_style,
.horizon_theme .horizon_ticket_body .mpwem_registration_area,
.horizon_theme .horizon_ticket_body .mpwem_booking_panel,
.horizon_theme .horizon_ticket_body .mpwem_ticket_type,
.horizon_theme .horizon_ticket_body .card-body,
.horizon_theme .horizon_ticket_body .mpwem_ex_service {
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body,
body.mep-horizon-active .horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body {
	padding: 0 !important;
}

.horizon_theme .horizon_ticket_body .card-header {
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #9A9AA8 !important;
	background: transparent !important;
	border: 0 !important;
	padding: 14px 0 10px !important;
	margin: 0 !important;
}

/* Date / Time — soft gray pill dropdowns */
.horizon_theme .horizon_ticket_body .date-time-header {
	margin: 0 0 18px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	position: relative;
	z-index: 2;
}

.horizon_theme .horizon_ticket_body .mpwem_booking_panel {
	position: relative;
	z-index: 1;
	margin-top: 4px;
	clear: both;
}

.horizon_theme .horizon_ticket_body .ticket-title {
	display: none !important;
}

.horizon_theme .horizon_ticket_body .date-time-area,
.horizon_theme .horizon_ticket_body .horizon_dt_grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	align-items: stretch;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_single {
	grid-template-columns: 1fr !important;
}

.horizon_theme .horizon_ticket_body .date-time-area .mpwem_time_area {
	display: block !important;
	width: 100% !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
}

.horizon_theme .horizon_ticket_body .date-time-area select[name="mpwem_date_time"][aria-hidden="true"],
.horizon_theme .horizon_ticket_body .date-time-area select#mpwem_date_time[aria-hidden="true"] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	min-height: 0 !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	border: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.horizon_theme .horizon_ticket_body .date-time-area label,
.horizon_theme .horizon_ticket_body .date-time-area > label,
.horizon_theme .horizon_ticket_body .horizon_dt_date,
.horizon_theme .horizon_ticket_body .horizon_dt_time,
.horizon_theme .mpwem_registration_area .date-time-area label {
	display: flex !important;
	flex-direction: column !important;
	align-items: unset !important;
	gap: 8px !important;
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
	min-width: 0;
	width: 100% !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.horizon_theme .horizon_ticket_body .date-time-area label::before,
.horizon_theme .horizon_ticket_body .date-time-area label::after,
.horizon_theme .horizon_ticket_body .date-time-area > label::after {
	display: none !important;
	content: none !important;
}

.horizon_theme .horizon_ticket_body .date-time-area label > span:not(.horizon_dt_icon) {
	display: block;
	font-family: var(--hz-sans) !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #A0A0AB !important;
	line-height: 1;
	margin: 0 !important;
	padding: 0 !important;
}

.horizon_theme .horizon_ticket_body .date-time-area .formControl,
.horizon_theme .horizon_ticket_body .date-time-area select,
.horizon_theme .horizon_ticket_body .date-time-area select.formControl,
.horizon_theme .horizon_ticket_body .date-time-area input[type="text"],
.horizon_theme .horizon_ticket_body .horizon_dt_fake {
	width: 100% !important;
	max-width: 100% !important;
	height: 48px !important;
	min-height: 48px !important;
	border: 1px solid #E6E6EE !important;
	border-radius: 14px !important;
	background-color: #F6F6F8 !important;
	padding: 0 40px 0 16px !important;
	font-family: var(--hz-sans) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 48px !important;
	color: #1A1A22 !important;
	box-shadow: none !important;
	outline: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%2322222A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1.5 1.75 6 6.25l4.5-4.5'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 16px center !important;
	background-size: 12px 8px !important;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.horizon_theme .horizon_ticket_body .date-time-area .formControl:hover,
.horizon_theme .horizon_ticket_body .date-time-area select:hover,
.horizon_theme .horizon_ticket_body .date-time-area input[type="text"]:hover,
.horizon_theme .horizon_ticket_body .horizon_dt_fake:hover {
	border-color: #D8D8E2 !important;
	background-color: #F2F2F5 !important;
}

.horizon_theme .horizon_ticket_body .date-time-area .formControl:focus,
.horizon_theme .horizon_ticket_body .date-time-area select:focus,
.horizon_theme .horizon_ticket_body .date-time-area input[type="text"]:focus {
	border-color: #C8C0F0 !important;
	background-color: #fff !important;
	box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.12) !important;
}

.horizon_theme .horizon_ticket_body .horizon_dt_fake {
	display: flex !important;
	align-items: center !important;
	line-height: 1.2 !important;
	box-sizing: border-box;
	pointer-events: none;
	user-select: none;
}

.horizon_theme .horizon_ticket_body .date-time-area i,
.horizon_theme .horizon_ticket_body .date-time-area label > i {
	display: none !important;
}

/* Datepicker card — calendar icon + full-width field */
.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker .horizon_dt_picker_label,
.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker .mpwem_time_area label {
	display: grid !important;
	grid-template-columns: 48px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 14px;
	row-gap: 4px !important;
	align-items: center;
	padding: 14px 16px !important;
	border: 1px solid #E8E4F6 !important;
	border-radius: 16px !important;
	background: linear-gradient(180deg, #FBF9FF 0%, #F7F5FC 100%) !important;
	box-shadow: 0 6px 18px rgba(22, 22, 29, 0.04) !important;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker .horizon_dt_picker_label:hover,
.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker .mpwem_time_area label:hover {
	border-color: #D7CFF5 !important;
	box-shadow: 0 10px 24px rgba(123, 97, 255, 0.08) !important;
	background: #fff !important;
}

.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker .horizon_dt_icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #E8E4F6;
	box-shadow: 0 4px 12px rgba(123, 97, 255, 0.08);
	color: var(--hz-purple);
	flex-shrink: 0;
}

.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker .horizon_dt_icon i {
	display: inline-block !important;
	font-size: 18px;
	line-height: 1;
	color: var(--hz-purple);
}

.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker label > span:not(.horizon_dt_icon) {
	grid-column: 2;
	grid-row: 1;
	margin: 0 !important;
	color: #8B86A8 !important;
}

.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker input[type="hidden"] {
	display: none !important;
}

.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker input#mpwem_date_time,
.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker input[type="text"].formControl,
.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker select.formControl,
.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker #mpwem_time {
	grid-column: 2;
	grid-row: 2;
	height: auto !important;
	min-height: 0 !important;
	line-height: 1.35 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	color: var(--hz-text) !important;
	letter-spacing: -0.01em;
}

.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker input#mpwem_date_time:hover,
.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker input#mpwem_date_time:focus,
.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker select.formControl:hover,
.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker select.formControl:focus,
.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker #mpwem_time:hover,
.horizon_theme .horizon_ticket_body .date-time-area.horizon_dt_picker #mpwem_time:focus {
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

/* jQuery UI datepicker — modern Horizon skin
   Must beat #ui-datepicker-div rules from mpwem_global.css (ID specificity). */
body.mep-horizon-active #ui-datepicker-div,
body.mep-horizon-active #ui-datepicker-div.ui-datepicker,
body.mep-horizon-active #ui-datepicker-div.horizon_datepicker {
	font-family: var(--hz-sans, 'Outfit', sans-serif) !important;
	box-sizing: border-box !important;
	width: 320px !important;
	max-width: calc(100vw - 24px) !important;
	padding: 16px !important;
	border: 1px solid #E8E4F6 !important;
	border-radius: 20px !important;
	background: #fff !important;
	background-color: #fff !important;
	background-image: none !important;
	box-shadow: 0 24px 64px rgba(22, 22, 29, 0.18), 0 2px 8px rgba(123, 97, 255, 0.06) !important;
	z-index: 100050 !important;
	color: #1A1A22 !important;
	line-height: 1.3 !important;
}

body.mep-horizon-active #ui-datepicker-div *,
body.mep-horizon-active #ui-datepicker-div *::before,
body.mep-horizon-active #ui-datepicker-div *::after {
	box-sizing: border-box;
	font-family: inherit !important;
}

/* Kill jQuery UI clearfix pseudo nodes that break grid/flex headers */
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header.ui-helper-clearfix::before,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header.ui-helper-clearfix::after {
	content: none !important;
	display: none !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header {
	display: grid !important;
	grid-template-columns: 36px minmax(0, 1fr) 36px !important;
	grid-template-rows: 36px !important;
	align-items: center !important;
	justify-content: stretch !important;
	column-gap: 8px !important;
	row-gap: 0 !important;
	position: relative !important;
	background: #F7F4FF !important;
	background-color: #F7F4FF !important;
	background-image: none !important;
	border: 1px solid #E8E4F6 !important;
	border-color: #E8E4F6 !important;
	border-radius: 14px !important;
	padding: 10px !important;
	margin: 0 0 14px !important;
	color: #1A1A22 !important;
	min-height: 56px !important;
	height: auto !important;
	font-size: 13px !important;
	overflow: hidden;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header .ui-icon {
	display: none !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-title {
	grid-column: 2 !important;
	grid-row: 1 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #1A1A22 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	position: relative !important;
	z-index: 1;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-title select,
body.mep-horizon-active #ui-datepicker-div select.ui-datepicker-month,
body.mep-horizon-active #ui-datepicker-div select.ui-datepicker-year {
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	float: none !important;
	display: inline-block !important;
	height: 34px !important;
	min-height: 34px !important;
	min-width: 0 !important;
	max-width: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 26px 0 10px !important;
	border: 1px solid #E0DBF2 !important;
	border-radius: 10px !important;
	background-color: #fff !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' viewBox='0 0 10 6'%3E%3Cpath stroke='%235B5675' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='m1 1 4 4 4-4'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 9px center !important;
	background-size: 10px 6px !important;
	color: #1A1A22 !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 34px !important;
	text-align: left !important;
	visibility: visible !important;
	cursor: pointer !important;
	outline: none !important;
	box-shadow: none !important;
}

body.mep-horizon-active #ui-datepicker-div select.ui-datepicker-month {
	flex: 1 1 auto !important;
	width: 100% !important;
	max-width: 108px !important;
}

body.mep-horizon-active #ui-datepicker-div select.ui-datepicker-year {
	flex: 0 0 auto !important;
	width: 82px !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-title select:hover,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-title select:focus {
	border-color: #C8BFF3 !important;
	box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.12) !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-prev,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-next,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	float: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 36px !important;
	height: 36px !important;
	min-width: 36px !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 10px !important;
	border: 1px solid #E0DBF2 !important;
	border-color: #E0DBF2 !important;
	background: #fff !important;
	background-color: #fff !important;
	background-image: none !important;
	color: #5B5675 !important;
	cursor: pointer !important;
	text-indent: 0 !important;
	overflow: hidden !important;
	box-shadow: none !important;
	outline: none !important;
	z-index: 2 !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-prev,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev {
	grid-column: 1 !important;
	grid-row: 1 !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-next,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next {
	grid-column: 3 !important;
	grid-row: 1 !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-prev:hover,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-prev:focus,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-next:hover,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-next:focus,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header .ui-state-hover {
	background: #EFEAFF !important;
	background-color: #EFEAFF !important;
	background-image: none !important;
	border-color: #C8BFF3 !important;
	box-shadow: none !important;
	outline: none !important;
	color: var(--hz-purple, #7B61FF) !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-prev.ui-state-disabled,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-next.ui-state-disabled {
	opacity: 0.35 !important;
	cursor: default !important;
	pointer-events: none !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-prev span,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-next span {
	display: none !important;
}

/* Neutralize global "<" / ">" ::before arrows from mpwem_global.css */
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev::before,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next::before {
	content: none !important;
	display: none !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-prev::after,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-next::after,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev::after,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next::after {
	content: '' !important;
	display: block !important;
	position: static !important;
	top: auto !important;
	left: auto !important;
	width: 7px !important;
	height: 7px !important;
	margin: 0 !important;
	border: 0 !important;
	border-left: 2px solid currentColor !important;
	border-bottom: 2px solid currentColor !important;
	background: none !important;
	font-size: 0 !important;
	line-height: 0 !important;
	color: #5B5675 !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-prev::after,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev::after {
	transform: rotate(45deg) !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-next::after,
body.mep-horizon-active #ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next::after {
	transform: rotate(-135deg) !important;
}

body.mep-horizon-active #ui-datepicker-div table.ui-datepicker-calendar {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	border-collapse: separate !important;
	border-spacing: 4px !important;
	table-layout: fixed !important;
	font-size: 13px !important;
}

body.mep-horizon-active #ui-datepicker-div th {
	color: #9A95B0 !important;
	font-weight: 700 !important;
	font-size: 11px !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0 0 6px !important;
	border: 0 !important;
	background: transparent !important;
}

body.mep-horizon-active #ui-datepicker-div th span {
	display: block;
	text-align: center;
}

body.mep-horizon-active #ui-datepicker-div.ui-datepicker td,
body.mep-horizon-active #ui-datepicker-div td {
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
}

body.mep-horizon-active #ui-datepicker-div td span,
body.mep-horizon-active #ui-datepicker-div td a,
body.mep-horizon-active #ui-datepicker-div .ui-state-default {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-width: 0 !important;
	height: auto !important;
	min-height: 36px !important;
	padding: 0 !important;
	border-radius: 11px !important;
	border: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	color: #1A1A22 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-align: center !important;
	text-decoration: none !important;
	transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

body.mep-horizon-active #ui-datepicker-div td[title="Available"] a,
body.mep-horizon-active #ui-datepicker-div td:not(.ui-datepicker-unselectable) a {
	background: #F4F0FF !important;
	background-color: #F4F0FF !important;
	color: var(--hz-purple, #7B61FF) !important;
	font-weight: 700 !important;
}

body.mep-horizon-active #ui-datepicker-div a.ui-state-default:hover,
body.mep-horizon-active #ui-datepicker-div td a:hover {
	background: var(--hz-purple, #7B61FF) !important;
	background-color: var(--hz-purple, #7B61FF) !important;
	color: #fff !important;
	box-shadow: 0 8px 18px rgba(123, 97, 255, 0.28);
}

body.mep-horizon-active #ui-datepicker-div td.ui-datepicker-today a,
body.mep-horizon-active #ui-datepicker-div td.ui-datepicker-today span {
	box-shadow: inset 0 0 0 1.5px #C8BFF3;
}

body.mep-horizon-active #ui-datepicker-div td.ui-datepicker-current-day a,
body.mep-horizon-active #ui-datepicker-div td .ui-state-active,
body.mep-horizon-active #ui-datepicker-div .ui-state-active {
	background: var(--hz-purple, #7B61FF) !important;
	background-color: var(--hz-purple, #7B61FF) !important;
	color: #fff !important;
	box-shadow: 0 8px 18px rgba(123, 97, 255, 0.28) !important;
}

body.mep-horizon-active #ui-datepicker-div td.ui-datepicker-unselectable span,
body.mep-horizon-active #ui-datepicker-div td.ui-state-disabled span,
body.mep-horizon-active #ui-datepicker-div td[title="Unavailable"] span {
	color: #C9C5D8 !important;
	background: transparent !important;
	opacity: 1 !important;
	font-weight: 500 !important;
	cursor: default;
}

body.mep-horizon-active #ui-datepicker-div td.ui-datepicker-other-month span {
	opacity: 0 !important;
}

body.mep-horizon-active #ui-datepicker-div .ui-datepicker-buttonpane {
	display: none !important;
}

/* Select2 (if present) — match soft gray pills */
.horizon_theme .horizon_ticket_body .date-time-area .select2-container,
.horizon_theme .horizon_ticket_body .date-time-area .select2-container .select2-selection--single {
	height: 48px !important;
	border: 1px solid #E6E6EE !important;
	border-radius: 14px !important;
	background: #F6F6F8 !important;
	box-shadow: none !important;
}

.horizon_theme .horizon_ticket_body .date-time-area .select2-container .select2-selection__rendered {
	line-height: 46px !important;
	padding-left: 16px !important;
	padding-right: 40px !important;
	font-family: var(--hz-sans) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: #1A1A22 !important;
}

.horizon_theme .horizon_ticket_body .date-time-area .select2-container .select2-selection__arrow {
	height: 46px !important;
	right: 12px !important;
}

/* Ticket cards — match attachment */
.horizon_theme .horizon_ticket_body .mep_ticket_item,
.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item {
	border: 1px solid #EDE9F8 !important;
	border-radius: 18px !important;
	padding: 0 !important;
	margin: 0 0 10px 0 !important;
	background: #F8F7FC !important;
	box-shadow: none;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.horizon_theme .horizon_ticket_body .mep_ticket_item:hover,
.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item:hover,
.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item:hover {
	border-color: #DED5FF !important;
	background: #F5F3FB !important;
}

.horizon_theme .horizon_ticket_body .mep_ticket_item.is-selected,
.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item.is-selected,
.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item.is-selected,
body.mep-horizon-active .horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item.is-selected,
body.mep-horizon-active .horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ex_service .card-body .mep_ticket_item.is-selected {
	border: 1.5px solid var(--hz-purple) !important;
	box-shadow: 0 8px 22px rgba(123, 97, 255, 0.12);
	background: #F3F0FF !important;
	padding: 0 !important;
}

.horizon_theme .horizon_ticket_body .mep_ticket_item .ticket-data {
	display: flex !important;
	flex-direction: column !important;
	gap: 5px !important;
	padding: 0 !important;
	border: 0 !important;
	width: 100% !important;
	background: transparent !important;
}

/* Fallback when AJAX HTML has not been enhanced yet */
.horizon_theme .horizon_ticket_body .mep_ticket_item .ticket-data:not(:has(.horizon_ticket_top)) {
	padding: 18px 20px !important;
	gap: 12px !important;
	box-sizing: border-box;
}

.horizon_theme .horizon_ticket_body .mep_ticket_item .ticket-data:not(:has(.horizon_ticket_top)) > .quantity-control,
.horizon_theme .horizon_ticket_body .mep_ticket_item .ticket-data:not(:has(.horizon_ticket_top)) > .ticket-price {
	align-self: flex-end;
}

.horizon_theme .horizon_ticket_body .horizon_ticket_top {
	display: flex;
	align-items: flex-start;
	padding: 20px 20px 0 20px;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	box-sizing: border-box;
}

.horizon_theme .horizon_ticket_body .ticket-info {
	flex: 1 1 auto !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	text-align: left !important;
}

.horizon_theme .horizon_ticket_body .ticket-name {
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #1A1A2E !important;
	margin: 0 0 6px !important;
	line-height: 1.25 !important;
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start !important;
	gap: 8px;
	text-align: left !important;
}

.horizon_theme .horizon_ticket_body .ticket-name .horizon_ticket_label {
	font-family: var(--hz-sans);
	font-size: 16px;
	font-weight: 700;
	color: #1A1A2E;
	text-align: left !important;
}

.horizon_theme .horizon_ticket_body .ticket-name .mep-ticket-mode-badge,
.horizon_theme .mep-ticket-mode-badge {
	display: none !important;
}

.horizon_theme .horizon_ticket_body .ticket-description {
	font-family: var(--hz-sans);
	font-size: 13px !important;
	font-weight: 400 !important;
	color: #9CA3AF !important;
	line-height: 1.4 !important;
	margin: 0 !important;
	text-align: left !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.horizon_theme .horizon_ticket_body .ticket-remaining,
.horizon_theme .horizon_ticket_body .mep-low-stock-warning {
	display: none !important;
}

.horizon_theme .horizon_ticket_body .ticket-price {
	font-family: var(--hz-sans) !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	color: var(--hz-purple) !important;
	white-space: nowrap !important;
	margin: 0 !important;
	padding: 0 !important;
	text-align: right !important;
	flex: 0 0 auto !important;
	line-height: 1.2 !important;
	letter-spacing: -0.02em;
}

.horizon_theme .horizon_ticket_body .ticket-price *,
.horizon_theme .horizon_ticket_body .ticket-price .amount,
.horizon_theme .horizon_ticket_body .ticket-price .woocommerce-Price-amount,
.horizon_theme .horizon_ticket_body .ticket-price bdi {
	font-family: var(--hz-sans) !important;
	font-size: 22px !important;
	font-weight: 700 !important;
	color: var(--hz-purple) !important;
	line-height: 1.2 !important;
}

.horizon_theme .horizon_ticket_body .horizon_ticket_bottom {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	width: 100% !important;
	padding: 0 20px 20px 20px !important;
	box-sizing: border-box;
}

.horizon_theme .horizon_available {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	flex: 0 1 auto;
	margin: 0 !important;
	margin-right: auto !important;
	font-family: var(--hz-sans);
	font-size: 14px;
	font-weight: 600;
	color: #10B981;
	white-space: nowrap;
	order: 1;
}

.horizon_theme .horizon_available_dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #10B981;
	box-shadow: none;
	flex-shrink: 0;
}

.horizon_theme .horizon_ticket_body .horizon_ticket_bottom .quantity-control {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-end !important;
	flex: 0 0 auto !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 0 0 auto !important;
	padding: 0 !important;
	order: 2;
}

.horizon_theme .horizon_ticket_body .qtyIncDec {
	display: inline-flex !important;
	align-items: center !important;
	gap: 4px !important;
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: none !important;
	height: auto !important;
}

.horizon_theme .horizon_ticket_body .qtyIncDec .decQty,
.horizon_theme .horizon_ticket_body .qtyIncDec .incQty {
	width: 32px !important;
	height: 32px !important;
	min-width: 32px !important;
	border-radius: 10px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	border: 0 !important;
	font-size: 12px !important;
	padding: 0 !important;
	line-height: 1 !important;
	transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

.horizon_theme .horizon_ticket_body .qtyIncDec .decQty {
	background: #E8E8EE !important;
	color: #4B4B57 !important;
	box-shadow: none !important;
}

.horizon_theme .horizon_ticket_body .qtyIncDec .decQty:hover {
	background: #DDDDE5 !important;
}

.horizon_theme .horizon_ticket_body .qtyIncDec .incQty {
	background: var(--hz-purple) !important;
	color: #fff !important;
	box-shadow: 0 6px 14px rgba(123, 97, 255, 0.32) !important;
}

.horizon_theme .horizon_ticket_body .qtyIncDec .incQty:hover {
	background: var(--hz-purple-dark) !important;
	transform: translateY(-1px);
}

.horizon_theme .horizon_ticket_body .qtyIncDec .decQty.mpDisabled,
.horizon_theme .horizon_ticket_body .qtyIncDec .incQty.mpDisabled {
	opacity: 0.45;
	cursor: default !important;
	transform: none !important;
	box-shadow: none !important;
}

.horizon_theme .horizon_ticket_body .qtyIncDec label {
	margin: 0 !important;
	padding: 0 !important;
	min-width: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.horizon_theme .horizon_ticket_body .qtyIncDec .formControl,
.horizon_theme .horizon_ticket_body .qtyIncDec input {
	width: 20px !important;
	min-width: 20px !important;
	text-align: center !important;
	border: 0 !important;
	background: transparent !important;
	font-family: var(--hz-sans) !important;
	font-weight: 700 !important;
	font-size: 16px !important;
	padding: 0 !important;
	box-shadow: none !important;
	height: auto !important;
	color: #1A1A2E !important;
	line-height: 1 !important;
}

/* Summary + Reserve CTA */
.horizon_theme .horizon_ticket_body .mpwem_form_submit_area,
.horizon_theme .horizon_ticket_body .mpwem_summery {
	margin-top: 14px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 14px !important;
	width: 100% !important;
}

.horizon_theme .horizon_summary_box {
	background: #F6F6F8;
	border: 1px solid #E8E8EE;
	border-radius: 16px;
	padding: 16px 18px;
	width: 100%;
	box-sizing: border-box;
}

.horizon_theme .horizon_summary_lines {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 12px;
}

.horizon_theme .horizon_summary_row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-family: var(--hz-sans);
	font-size: 14px;
	font-weight: 500;
	color: #6B6B78;
	line-height: 1.3;
}

.horizon_theme .horizon_summary_row strong {
	font-weight: 600;
	color: #4B4B57;
	white-space: nowrap;
}

.horizon_theme .horizon_summary_row--muted {
	color: #9A9AA8;
	font-size: 13px;
	font-weight: 400;
}

.horizon_theme .horizon_summary_row--muted strong {
	color: #9A9AA8;
	font-weight: 500;
}

.horizon_theme .horizon_summary_divider {
	height: 1px;
	background: #E4E4EC;
	margin: 2px 0 12px;
	border: 0;
}

.horizon_theme .horizon_ticket_body .mpwem_summery .total {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 12px !important;
	font-family: var(--hz-sans) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #1A1A2E !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	line-height: 1.2 !important;
}

.horizon_theme .horizon_ticket_body .mpwem_summery .total .horizon_total_label {
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #1A1A2E !important;
}

.horizon_theme .horizon_ticket_body .mpwem_summery .total .mpwem_total,
.horizon_theme .horizon_ticket_body .mpwem_summery .total .mpwem_total *,
.horizon_theme .horizon_ticket_body .mpwem_summery .total .mpwem_total .amount,
.horizon_theme .horizon_ticket_body .mpwem_summery .total .mpwem_total bdi {
	font-family: var(--hz-sans) !important;
	font-size: 24px !important;
	font-weight: 700 !important;
	color: var(--hz-purple) !important;
	line-height: 1.1 !important;
	letter-spacing: -0.02em;
}

.horizon_theme .horizon_ticket_body .mpwem_book_now,
.horizon_theme .horizon_ticket_body button._button_theme,
.horizon_theme .horizon_ticket_body ._button_theme.mpwem_book_now {
	width: 100% !important;
	background: var(--hz-purple) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 14px !important;
	padding: 16px 20px !important;
	font-family: var(--hz-sans) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	cursor: pointer !important;
	box-shadow: none !important;
	transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	line-height: 1.2 !important;
	height: auto !important;
	min-height: 52px !important;
}

.horizon_theme .horizon_ticket_body .mpwem_book_now:hover:not([disabled]),
.horizon_theme .horizon_ticket_body button._button_theme:hover:not([disabled]) {
	background: var(--hz-purple-dark) !important;
	transform: translateY(-1px);
	color: #fff !important;
}

.horizon_theme .horizon_ticket_body .mpwem_book_now[disabled],
.horizon_theme .horizon_ticket_body button._button_theme[disabled] {
	opacity: 0.55;
	cursor: not-allowed !important;
	box-shadow: none !important;
	transform: none !important;
}

.horizon_theme .horizon_ticket_body .mpwem_book_now i,
.horizon_theme .horizon_ticket_body button._button_theme i {
	display: none !important;
}

.horizon_theme .horizon_ticket_body .mep_attendee_info,
.horizon_theme .horizon_ticket_body .mep_attendee_info_hidden {
	margin-top: 12px;
}

.horizon_theme .horizon_ticket_body .mep_form_item,
.horizon_theme .horizon_ticket_body .horizon_attendee_block {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px 14px;
	align-items: start;
	background: #F8F7FC;
	border: 1px solid #E8E4F5;
	border-radius: 14px;
	padding: 14px;
	margin: 10px 0 0 !important;
}

.horizon_theme .horizon_ticket_body .mep_form_item.mep-form--cols-2,
.horizon_theme .horizon_ticket_body .mep_form_item:has(> .mp_form_item:nth-of-type(5)),
.horizon_theme .horizon_ticket_body .horizon_attendee_block.mep-form--cols-2,
.horizon_theme .horizon_ticket_body .horizon_attendee_block:has(> .mp_form_item:nth-of-type(5)) {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.horizon_theme .horizon_ticket_body .mep_form_item > h6,
.horizon_theme .horizon_ticket_body .horizon_attendee_block > h6 {
	grid-column: 1 / -1;
	font-family: var(--hz-sans) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	color: var(--hz-text) !important;
	margin: 0 !important;
}

.horizon_theme .horizon_ticket_body .mp_form_item {
	margin: 0 !important;
	min-width: 0;
}

.horizon_theme .horizon_ticket_body .mep_form_item.mep-form--cols-2 > .mp_form_item:has(textarea),
.horizon_theme .horizon_ticket_body .mep_form_item:has(> .mp_form_item:nth-of-type(5)) > .mp_form_item:has(textarea),
.horizon_theme .horizon_ticket_body .mep_form_item.mep-form--cols-2 > .mp_form_item:has(select[multiple]),
.horizon_theme .horizon_ticket_body .mep_form_item:has(> .mp_form_item:nth-of-type(5)) > .mp_form_item:has(select[multiple]),
.horizon_theme .horizon_ticket_body .mep_form_item.mep-form--cols-2 > .mp_form_item.mep_checkbox_item,
.horizon_theme .horizon_ticket_body .mep_form_item:has(> .mp_form_item:nth-of-type(5)) > .mp_form_item.mep_checkbox_item,
.horizon_theme .horizon_ticket_body .mep_form_item.mep-form--cols-2 > .mp_form_item.mep_radio_item,
.horizon_theme .horizon_ticket_body .mep_form_item:has(> .mp_form_item:nth-of-type(5)) > .mp_form_item.mep_radio_item,
.horizon_theme .horizon_ticket_body .mep_form_item.mep-form--cols-2 > .mp_form_item.mep_file_item,
.horizon_theme .horizon_ticket_body .mep_form_item:has(> .mp_form_item:nth-of-type(5)) > .mp_form_item.mep_file_item {
	grid-column: 1 / -1;
}

.horizon_theme .horizon_ticket_body .mp_form_item:last-child {
	margin-bottom: 0 !important;
}

.horizon_theme .horizon_ticket_body .mp_form_item label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0 !important;
}

.horizon_theme .horizon_ticket_body .mp_form_item label > span {
	font-size: 12px;
	font-weight: 600;
	color: #5B5B66;
}

.horizon_theme .horizon_ticket_body .mp_form_item .formControl,
.horizon_theme .horizon_ticket_body .mp_form_item input,
.horizon_theme .horizon_ticket_body .mp_form_item select,
.horizon_theme .horizon_ticket_body .mp_form_item textarea {
	width: 100% !important;
	border: 1px solid #E4E4EC !important;
	border-radius: 10px !important;
	background: #fff !important;
	padding: 10px 12px !important;
	font-size: 13px !important;
	color: var(--hz-text) !important;
	box-shadow: none !important;
	min-height: 42px;
}

.horizon_theme .horizon_ticket_body .mp_form_item textarea {
	min-height: 84px;
	resize: vertical;
}

.horizon_theme .horizon_ticket_body .textRequired {
	color: #EF4444;
	margin-left: 2px;
}

.horizon_theme .horizon_ticket_body .mpwem_ex_service {
	margin-top: 6px !important;
}

.horizon_theme .horizon_ticket_body .mpwem_ex_service .mep_ticket_item {
	background: #FAFAFC !important;
}

.horizon_theme .horizon_ticket_body .reg_close_msg,
.horizon_theme .horizon_ticket_body .mpwem_registration_area_show_msg {
	font-size: 13px;
	color: var(--hz-muted);
	line-height: 1.5;
	background: #F8F7FC;
	border-radius: 12px;
	padding: 12px 14px;
}

/* Footer: share + calendar */
/* Ticket footer — Share + Calendar */
.horizon_theme .horizon_ticket_foot {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 18px 22px 20px;
	border-top: 1px solid #ECECF2;
	background: linear-gradient(180deg, #FBFBFD 0%, #fff 100%);
}

.horizon_theme .horizon_ticket_foot_row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	width: 100%;
}

.horizon_theme .horizon_ticket_share {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	min-width: 0;
}

.horizon_theme .horizon_ticket_share_label {
	font-family: var(--hz-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #9A9AA8;
	line-height: 1;
}

.horizon_theme .horizon_ticket_share .share_widgets {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.horizon_theme .horizon_ticket_share .share_widgets_title {
	display: none !important;
}

.horizon_theme .horizon_ticket_share .share_widgets_list {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	flex-wrap: wrap;
}

.horizon_theme .horizon_ticket_share .share_widgets_list li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.horizon_theme .horizon_ticket_share .share_widgets_list li a {
	width: 36px !important;
	height: 36px !important;
	border-radius: 12px !important;
	background: #fff !important;
	border: 1px solid #E8E8EE !important;
	color: #333 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 14px !important;
	line-height: 1 !important;
	text-align: center !important;
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: 0 2px 8px rgba(22, 22, 29, 0.04);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.horizon_theme .horizon_ticket_share .share_widgets_list li a i {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 1em !important;
	height: 1em !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
	font-size: inherit !important;
	text-align: center !important;
	position: relative;
	top: 0;
	left: 0;
}

.horizon_theme .horizon_ticket_share .share_widgets_list li a:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(22, 22, 29, 0.08);
}

.horizon_theme .horizon_ticket_share .share_widgets_list li a.facebook:hover {
	background: #1877F2 !important;
	border-color: #1877F2 !important;
	color: #fff !important;
}

.horizon_theme .horizon_ticket_share .share_widgets_list li a.twitter:hover {
	background: #111 !important;
	border-color: #111 !important;
	color: #fff !important;
}

.horizon_theme .horizon_ticket_share .share_widgets_list li a.linkedin:hover {
	background: #0A66C2 !important;
	border-color: #0A66C2 !important;
	color: #fff !important;
}

.horizon_theme .horizon_ticket_share .share_widgets_list li a.whatsapp:hover {
	background: #25D366 !important;
	border-color: #25D366 !important;
	color: #fff !important;
}

.horizon_theme .horizon_ticket_share .share_widgets_list li a.email:hover {
	background: var(--hz-purple) !important;
	border-color: var(--hz-purple) !important;
	color: #fff !important;
}

.horizon_theme .horizon_ticket_calendar {
	width: 100%;
}

.horizon_theme .horizon_ticket_calendar .mpwem_calender_area {
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
	width: 100% !important;
	position: relative;
}

.horizon_theme .horizon_ticket_calendar .horizon_cal_btn,
.horizon_theme .horizon_ticket_calendar .mpwem_calender_area > button {
	width: 100% !important;
	background: linear-gradient(180deg, #FFFFFF 0%, #F8F7FC 100%) !important;
	color: #333 !important;
	border: 1px solid #E4E0F5 !important;
	border-radius: 14px !important;
	padding: 13px 42px !important;
	font-family: var(--hz-sans) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	box-shadow: 0 4px 14px rgba(123, 97, 255, 0.08) !important;
	min-width: 0 !important;
	height: auto !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	margin: 0 !important;
	cursor: pointer !important;
	position: relative !important;
	text-align: center !important;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

.horizon_theme .horizon_ticket_calendar .horizon_cal_btn .horizon_cal_icon,
.horizon_theme .horizon_ticket_calendar .mpwem_calender_area > button > i.fa-calendar-alt,
.horizon_theme .horizon_ticket_calendar .mpwem_calender_area > button > i.far {
	width: 28px !important;
	height: 28px !important;
	border-radius: 8px !important;
	background: #F0F0F4 !important;
	color: #333 !important;
	font-size: 13px !important;
	margin: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0;
	line-height: 1 !important;
}

.horizon_theme .horizon_ticket_calendar .horizon_cal_btn .horizon_cal_icon i,
.horizon_theme .horizon_ticket_calendar .horizon_cal_provider_icon i {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
	width: 1em !important;
	height: 1em !important;
}

.horizon_theme .horizon_ticket_calendar .horizon_cal_btn .horizon_cal_chevron {
	position: absolute !important;
	right: 16px !important;
	top: 50% !important;
	transform: translateY(-50%);
	margin: 0 !important;
	color: #333 !important;
	font-size: 12px !important;
	line-height: 1 !important;
	transition: transform 0.2s ease;
}

.horizon_theme .horizon_ticket_calendar .horizon_cal_btn.is-open .horizon_cal_chevron,
.horizon_theme .horizon_ticket_calendar .mpwem_calender_area > button[aria-expanded="true"] .horizon_cal_chevron {
	transform: translateY(-50%) rotate(180deg);
	color: #333 !important;
}

.horizon_theme .horizon_ticket_calendar .horizon_cal_btn:hover,
.horizon_theme .horizon_ticket_calendar .mpwem_calender_area > button:hover {
	background: #F3F0FF !important;
	border-color: #DED5FF !important;
	color: #333 !important;
	box-shadow: 0 8px 18px rgba(123, 97, 255, 0.12) !important;
	transform: translateY(-1px);
}

/* Kill global mpwem `_button_theme` span color override on Horizon */
@media only screen and (min-width: 10px) {
	body.mep-horizon-active div.mpwem_style [class*="_button_theme"] span,
	body.mep-horizon-active.mep-horizon-active div.mpwem_style [class*="_button_theme"] span,
	.horizon_theme div.mpwem_style [class*="_button_theme"] span,
	.horizon_theme [class*="_button_theme"] span,
	.horizon_theme .horizon_cal_btn span,
	.horizon_theme .horizon_cal_btn [data-text],
	.horizon_theme .mpwem_book_now span {
		color: #333 !important;
	}

	body.mep-horizon-active div.mpwem_style [class*="_button_theme"]:hover span,
	.horizon_theme div.mpwem_style [class*="_button_theme"]:hover span,
	.horizon_theme [class*="_button_theme"]:hover span,
	.horizon_theme .horizon_cal_btn:hover span,
	.horizon_theme .horizon_cal_btn:hover [data-text] {
		color: #333 !important;
	}

	/* Reserve CTA keeps white label text */
	.horizon_theme .horizon_ticket_body .mpwem_book_now span,
	.horizon_theme .horizon_ticket_body .mpwem_book_now:hover span,
	.horizon_theme .horizon_ticket_body ._button_theme.mpwem_book_now span {
		color: #fff !important;
	}
}

.horizon_theme .horizon_ticket_calendar [data-collapse] {
	margin-top: 10px;
	padding: 12px;
	background: #fff;
	border: 1px solid #E8E8EE;
	border-radius: 14px;
	box-shadow: 0 10px 28px rgba(22, 22, 29, 0.06);
}

.horizon_theme .horizon_ticket_calendar [data-collapse] ._mt_xs_fdColumn,
.horizon_theme .horizon_ticket_calendar [data-collapse] > div {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 8px !important;
	margin: 0 !important;
	padding: 0 !important;
	flex-direction: unset !important;
}

.horizon_theme .horizon_ticket_calendar [data-collapse] a,
.horizon_theme .horizon_ticket_calendar [data-collapse] a._button_general_mt_xs {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	margin: 0 !important;
	padding: 11px 12px !important;
	border-radius: 12px !important;
	border: 1px solid #ECECF2 !important;
	background: #F8F8FB !important;
	color: #333 !important;
	font-family: var(--hz-sans) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	min-height: 0 !important;
	height: auto !important;
	width: 100% !important;
	line-height: 1.2 !important;
	text-align: center !important;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}

.horizon_theme .horizon_ticket_calendar [data-collapse] a .horizon_cal_provider_icon {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	flex-shrink: 0;
	background: #fff;
	border: 1px solid #E8E8EE;
	line-height: 1;
	color: #333;
}

.horizon_theme .horizon_ticket_calendar [data-collapse] a.horizon_cal_google .horizon_cal_provider_icon {
	color: #EA4335;
}

.horizon_theme .horizon_ticket_calendar [data-collapse] a.horizon_cal_yahoo .horizon_cal_provider_icon {
	color: #6001D2;
}

.horizon_theme .horizon_ticket_calendar [data-collapse] a.horizon_cal_outlook .horizon_cal_provider_icon {
	color: #0078D4;
}

.horizon_theme .horizon_ticket_calendar [data-collapse] a.horizon_cal_apple .horizon_cal_provider_icon {
	color: #111;
}

.horizon_theme .horizon_ticket_calendar [data-collapse] a:hover {
	background: #fff !important;
	border-color: #DED5FF !important;
	color: #333 !important;
	transform: translateY(-1px);
}

body.mep-horizon-active .horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info,
.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info {
	flex: 1 1 auto !important;
	width: auto !important;
	max-width: none !important;
}

body.mep-horizon-active .horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data,
.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data {
	padding: 18px 20px !important;
	border-bottom: 0 !important;
	box-sizing: border-box;
}

body.mep-horizon-active .horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data:has(.horizon_ticket_top),
.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data:has(.horizon_ticket_top) {
	padding: 0 !important;
}

/* ========== REVIEWS (Horizon placement) ========== */
.horizon_theme .horizon_reviews_wrap {
	margin-top: 0;
}

.horizon_theme .horizon_reviews_wrap:empty {
	display: none;
	margin: 0;
}

.horizon_theme .mep-event-review-list-wrapper.horizon_reviews_panel {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	box-sizing: border-box;
}

.horizon_theme .horizon_reviews_head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px 24px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}

.horizon_theme .horizon_reviews_head__copy {
	min-width: 0;
	flex: 1 1 220px;
}

.horizon_theme .horizon_reviews_eyebrow {
	display: inline-block;
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hz-purple);
}

.horizon_theme .horizon_reviews_title {
	font-family: var(--hz-serif) !important;
	font-size: 1.75rem !important;
	font-weight: 700 !important;
	color: var(--hz-text) !important;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin: 0 0 8px !important;
}

.horizon_theme .horizon_reviews_meta {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 10px;
	color: var(--hz-muted);
	font-size: 0.92rem;
	font-weight: 500;
}

.horizon_theme .horizon_reviews_stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	line-height: 1;
	color: #F5B301;
	letter-spacing: 0.02em;
}

.horizon_theme .horizon_reviews_stars .is-empty {
	color: #D9D6E5;
}

.horizon_theme .horizon_reviews_count {
	color: var(--hz-muted);
}

.horizon_theme .horizon_reviews_head #give-review-btn,
.horizon_theme .horizon_reviews_panel #give-review-btn {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 12px 18px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(145deg, var(--hz-purple) 0%, var(--hz-purple-dark) 100%);
	color: #fff !important;
	font-family: var(--hz-sans) !important;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(123, 97, 255, 0.28);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
	flex: 0 0 auto;
	text-transform: none;
}

.horizon_theme .horizon_reviews_head #give-review-btn:hover,
.horizon_theme .horizon_reviews_panel #give-review-btn:hover {
	filter: brightness(1.04);
	box-shadow: 0 12px 28px rgba(123, 97, 255, 0.34);
	transform: translateY(-1px);
	text-decoration: none;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-avg {
	margin: 0 0 4px;
	padding: 20px 22px;
	background: var(--hz-card);
	border: 1px solid var(--hz-border);
	border-radius: var(--hz-radius);
	box-shadow: var(--hz-shadow);
}

.horizon_theme .horizon_reviews_panel .mep-avg-review-header {
	display: none;
}

.horizon_theme .horizon_reviews_panel .mep-avg-review-content:empty,
.horizon_theme .horizon_reviews_panel .mep-event-review-avg:not(:has(.mep-avg-review-item)) {
	display: none;
}

.horizon_theme .horizon_reviews_panel .mep-avg-review-item {
	display: grid;
	grid-template-columns: 84px minmax(0, 1fr) 44px;
	gap: 12px;
	align-items: center;
	margin: 0 0 10px;
}

.horizon_theme .horizon_reviews_panel .mep-avg-review-item:last-child {
	margin-bottom: 0;
}

.horizon_theme .horizon_reviews_panel .mep-avg-review-item .rating-text {
	flex: none;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--hz-muted);
}

.horizon_theme .horizon_reviews_panel .mep-avg-review-item .rating-bar {
	flex: none;
	width: 100%;
	height: 8px;
	background: var(--hz-purple-soft);
	border-radius: 999px;
	box-shadow: none;
	overflow: hidden;
}

.horizon_theme .horizon_reviews_panel .mep-avg-review-item .rating-bar span {
	background: linear-gradient(90deg, var(--hz-purple) 0%, var(--hz-purple-dark) 100%);
	border-radius: 999px;
}

.horizon_theme .horizon_reviews_panel .mep-avg-review-item.r-1 .rating-bar span,
.horizon_theme .horizon_reviews_panel .mep-avg-review-item.r-2 .rating-bar span,
.horizon_theme .horizon_reviews_panel .mep-avg-review-item.r-3 .rating-bar span,
.horizon_theme .horizon_reviews_panel .mep-avg-review-item.r-4 .rating-bar span,
.horizon_theme .horizon_reviews_panel .mep-avg-review-item.r-5 .rating-bar span {
	background: linear-gradient(90deg, var(--hz-purple) 0%, var(--hz-purple-dark) 100%);
}

.horizon_theme .horizon_reviews_panel .mep-avg-review-item .rating-percent {
	flex: none;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--hz-text);
	text-align: right;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-item {
	display: block;
	margin: 0;
	padding: 20px 22px;
	background: var(--hz-card);
	border: 1px solid var(--hz-border);
	border-radius: var(--hz-radius);
	box-shadow: var(--hz-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-item:hover {
	transform: translateY(-2px);
	box-shadow: var(--hz-shadow-lg);
}

.horizon_theme .horizon_review_card__top {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-img {
	display: contents;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-img > img,
.horizon_theme .horizon_review_avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	margin: 0;
	flex: 0 0 auto;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px var(--hz-purple-mid);
}

.horizon_theme .horizon_review_meta {
	min-width: 0;
	flex: 1 1 auto;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-name,
.horizon_theme .horizon_review_name {
	font-size: 0.98rem;
	font-weight: 700;
	color: var(--hz-text);
	line-height: 1.3;
	margin: 0 0 2px;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-date,
.horizon_theme .horizon_review_date {
	display: block;
	color: var(--hz-muted);
	font-size: 0.82rem;
	font-weight: 500;
	margin: 0;
}

.horizon_theme .horizon_review_card__top .horizon_reviews_stars {
	flex: 0 0 auto;
	margin-left: auto;
	font-size: 1rem;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-rating {
	display: none;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-info {
	min-width: 0;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-info .mep-review-title {
	margin: 0 0 8px;
	font-family: var(--hz-serif) !important;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--hz-text);
	letter-spacing: -0.01em;
}

.horizon_theme .horizon_reviews_panel .mep-event-review-info .mep-event-review-content,
.horizon_theme .horizon_reviews_panel .mep-event-review-info .mep-event-review-content p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--hz-muted);
}

.horizon_theme .horizon_reviews_panel .mep-event-review-info .mep-event-review-content p + p {
	margin-top: 8px;
}

.horizon_theme .horizon_reviews_empty,
.horizon_theme .mep_reviews_empty {
	display: none;
}

.horizon_theme .mep_reviews_panel--empty,
.horizon_theme .horizon_reviews_panel.mep_reviews_panel--empty {
	margin: 0;
	padding: 18px 20px;
	background: var(--hz-card);
	border: 1px solid var(--hz-border);
	border-radius: var(--hz-radius);
	box-shadow: var(--hz-shadow);
}

.horizon_theme .mep_reviews_panel--empty .horizon_reviews_head,
.horizon_theme .mep_reviews_panel--empty .mep_reviews_head {
	margin: 0;
	align-items: center;
}

.horizon_theme .mep_reviews_panel--empty .horizon_reviews_title,
.horizon_theme .mep_reviews_panel--empty .mep_reviews_title {
	font-family: var(--hz-serif) !important;
	font-size: 1.25rem !important;
	margin: 0 0 4px !important;
}

.horizon_theme .mep_reviews_panel--empty .horizon_reviews_meta,
.horizon_theme .mep_reviews_panel--empty .mep_reviews_meta {
	margin: 0;
	font-size: 0.9rem;
	color: var(--hz-muted);
}

.horizon_theme .mep_reviews_panel--empty #give-review-btn {
	padding: 10px 16px;
	font-size: 0.88rem;
	box-shadow: none;
}

@media (max-width: 640px) {
	.horizon_theme .horizon_reviews_head {
		flex-direction: column;
		align-items: stretch;
	}

	.horizon_theme .horizon_reviews_head #give-review-btn,
	.horizon_theme .horizon_reviews_panel #give-review-btn {
		width: 100%;
	}

	.horizon_theme .horizon_reviews_title {
		font-size: 1.45rem !important;
	}

	.horizon_theme .horizon_reviews_panel .mep-event-review-item {
		padding: 16px;
	}

	.horizon_theme .horizon_review_card__top {
		flex-wrap: wrap;
	}

	.horizon_theme .horizon_review_card__top .horizon_reviews_stars {
		width: 100%;
		margin-left: 66px;
		margin-top: -4px;
	}

	.horizon_theme .horizon_reviews_panel .mep-avg-review-item {
		grid-template-columns: 72px minmax(0, 1fr) 40px;
		gap: 8px;
	}
}

/* ========== RELATED ========== */
.horizon_theme .horizon_related_wrap {
	margin-top: 0;
}

.horizon_theme .horizon_related_grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.horizon_theme .horizon_related_card {
	background: var(--hz-card);
	border-radius: var(--hz-radius);
	overflow: hidden;
	box-shadow: var(--hz-shadow);
	display: flex;
	flex-direction: column;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.horizon_theme .horizon_related_card:hover {
	transform: translateY(-3px);
	box-shadow: var(--hz-shadow-lg);
}

.horizon_theme .horizon_related_media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #ddd;
}

.horizon_theme .horizon_related_media img,
.horizon_theme .horizon_related_placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.horizon_theme .horizon_related_placeholder {
	display: block;
	background: linear-gradient(135deg, #d9d4f5, #f0eef8);
}

.horizon_theme .horizon_related_badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--hz-purple);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 5px 10px;
	border-radius: 999px;
}

.horizon_theme .horizon_related_body {
	padding: 16px 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.horizon_theme .horizon_related_title {
	font-family: var(--hz-sans) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	margin: 0 !important;
	line-height: 1.3 !important;
}

.horizon_theme .horizon_related_title a {
	color: var(--hz-text) !important;
}

.horizon_theme .horizon_related_meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 12px;
	color: var(--hz-muted);
}

.horizon_theme .horizon_related_meta i {
	color: var(--hz-purple);
	width: 14px;
	margin-right: 4px;
}

.horizon_theme .horizon_related_foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid #EEEAF8;
}

.horizon_theme .horizon_related_price_wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 6px;
	min-width: 0;
}

.horizon_theme .horizon_related_price_label {
	display: inline-block;
	font-family: var(--hz-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #A09BB5;
	line-height: 1;
	white-space: nowrap;
}

.horizon_theme .horizon_related_price,
.horizon_theme .horizon_related_price * {
	display: inline !important;
	font-family: var(--hz-sans) !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	color: var(--hz-text) !important;
	letter-spacing: -0.02em;
	white-space: nowrap;
	vertical-align: baseline;
}

.horizon_theme .horizon_related_price .woocommerce-Price-amount,
.horizon_theme .horizon_related_price .amount {
	display: inline !important;
	white-space: nowrap !important;
}

.horizon_theme .horizon_related_price .woocommerce-Price-currencySymbol {
	display: inline !important;
	font-size: 0.85em !important;
	font-weight: 700 !important;
	margin-right: 1px;
	color: var(--hz-purple) !important;
}

.horizon_theme .horizon_related_price--empty {
	font-size: 13px !important;
	font-weight: 600 !important;
	color: var(--hz-muted) !important;
	letter-spacing: 0 !important;
}

.horizon_theme .horizon_related_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-shrink: 0;
	background: var(--hz-purple);
	color: #fff !important;
	font-family: var(--hz-sans);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	padding: 11px 14px;
	border-radius: 12px;
	text-transform: none;
	letter-spacing: 0;
	box-shadow: 0 8px 18px rgba(123, 97, 255, 0.22);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.horizon_theme .horizon_related_btn i {
	font-size: 11px;
	line-height: 1;
	transition: transform 0.2s ease;
}

.horizon_theme .horizon_related_btn:hover {
	background: var(--hz-purple-dark, #6548f0);
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 12px 22px rgba(123, 97, 255, 0.28);
}

.horizon_theme .horizon_related_btn:hover i {
	transform: translateX(2px);
}

.horizon_theme .horizon_related_card:hover .horizon_related_btn {
	background: var(--hz-purple-dark, #6548f0);
}

/* Hide default related carousel chrome if fallback used */
.horizon_theme .mpwem_related_area .related_navigation {
	display: none !important;
}

/* Force ticket row layout even against .mpwem_registration_area rules */
body.mep-horizon-active .horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info,
.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data .ticket-info {
	flex: 1 1 auto !important;
	flex-basis: auto !important;
	width: auto !important;
	max-width: none !important;
	text-align: left !important;
	margin: 0 !important;
}

body.mep-horizon-active .horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data,
.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data {
	padding: 18px 20px !important;
	border-bottom: 0 !important;
	align-items: stretch !important;
	flex-wrap: nowrap !important;
	box-sizing: border-box;
}

body.mep-horizon-active .horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data:has(.horizon_ticket_top),
.horizon_theme .mpwem_registration_area .mpwem_booking_panel .mpwem_ticket_type .card-body .mep_ticket_item .ticket-data:has(.horizon_ticket_top) {
	padding: 0 !important;
}

.horizon_theme .horizon_ticket_body .mep_ticket_item .horizon_ticket_top,
.horizon_theme .horizon_ticket_body .mep_ticket_item .horizon_ticket_bottom {
	width: 100% !important;
	align-self: stretch !important;
}

.horizon_theme .horizon_ticket_body .mep_attendee_info:empty,
.horizon_theme .horizon_ticket_body .horizon_attendee_block:empty {
	display: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

@media (max-width: 640px) {
	.horizon_theme .horizon_ticket_body .mep_ticket_item .ticket-data {
		flex-wrap: wrap !important;
	}
	.horizon_theme .horizon_ticket_body .ticket-info {
		flex: 1 1 100% !important;
		max-width: 100% !important;
	}
}

/* ========== ANIMATIONS ========== */
@keyframes hzFadeUp {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
	.horizon_theme .horizon_shell {
		margin: 64px auto;
		padding: 0 20px;
	}

	.horizon_theme .horizon_body {
		gap: 40px;
	}

	.horizon_theme .horizon_hero {
		width: calc(100% - 40px);
		min-height: 480px;
		margin: 20px auto 64px;
	}
}

@media (max-width: 1100px) {
	.horizon_theme .horizon_body {
		grid-template-columns: minmax(0, 1fr) 300px;
		gap: 28px;
	}

	.horizon_theme .horizon_ticket_title {
		font-size: 1.3rem !important;
	}

	.horizon_theme .horizon_ticket_body,
	.horizon_theme .horizon_ticket_head {
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media (max-width: 960px) {
	.horizon_theme .horizon_shell {
		margin: 40px auto;
		padding: 0 18px;
	}

	.horizon_theme .horizon_main {
		gap: 32px;
	}

	.horizon_theme .horizon_body {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.horizon_theme .horizon_sidebar {
		position: static;
		order: -1;
		width: 100%;
		max-width: 560px;
		margin: 0 auto;
	}

	.horizon_theme .horizon_ticket_card {
		width: 100%;
	}

	.horizon_theme .horizon_hero {
		width: calc(100% - 36px);
		min-height: 460px;
		margin: 18px auto 56px;
		border-radius: 24px;
	}

	.horizon_theme .horizon_hero_media,
	.horizon_theme .horizon_hero_shade {
		border-radius: 24px;
	}

	.horizon_theme .horizon_hero_inner {
		padding: 40px 28px 0;
	}

	.horizon_theme .horizon_hero_cards {
		flex-wrap: wrap;
		gap: 12px;
	}

	.horizon_theme .horizon_info_card {
		min-width: 0;
		flex: 1 1 180px;
	}

	.horizon_theme .horizon_gallery_grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 160px 160px;
	}

	.horizon_theme .horizon_gallery_item_1 {
		grid-column: 1 / 3;
		grid-row: 1;
	}

	.horizon_theme .horizon_gallery_item_2 {
		grid-column: 1;
		grid-row: 2;
	}

	.horizon_theme .horizon_gallery_item_3 {
		grid-column: 2;
		grid-row: 2;
	}

	.horizon_theme .horizon_gallery_item_4 {
		display: none;
	}

	.horizon_theme .horizon_related_grid {
		grid-template-columns: 1fr 1fr;
	}

	.horizon_theme .horizon_artists_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.horizon_theme .horizon_reviews_wrap,
	.horizon_theme .horizon_related_wrap {
		margin-top: 0;
	}
}

@media (max-width: 768px) {
	.horizon_theme .horizon_shell {
		padding: 0 16px;
		margin: 32px auto;
	}

	.horizon_theme .horizon_organizer_card {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.horizon_theme .horizon_organizer_stats {
		width: 100%;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.horizon_theme .horizon_ticket_body .date-time-area,
	.horizon_theme .horizon_ticket_body .horizon_dt_grid {
		gap: 10px;
	}

	.horizon_theme .horizon_ticket_body .horizon_ticket_bottom {
		flex-wrap: wrap;
		gap: 10px !important;
		padding: 0 16px 16px !important;
	}

	.horizon_theme .horizon_ticket_body .horizon_ticket_top {
		padding: 16px 16px 0;
		gap: 10px;
	}

	.horizon_theme .horizon_ticket_body .ticket-price {
		font-size: 20px !important;
	}

	.horizon_theme .horizon_ticket_foot {
		padding: 16px;
	}

	.horizon_theme .horizon_ticket_foot_row {
		flex-direction: column;
		align-items: stretch;
	}

	.horizon_theme .horizon_attendee_status {
		margin-left: 16px;
		margin-right: 16px;
	}

	.horizon_theme .horizon_summary_box {
		padding: 14px;
	}

	.horizon_theme .horizon_faq_trigger {
		padding: 14px 16px;
	}

	.horizon_theme .horizon_faq_q {
		font-size: 14px;
	}
}

@media (max-width: 640px) {
	.horizon_theme {
		padding-bottom: 48px;
	}

	.horizon_theme .horizon_shell {
		padding: 0 14px;
		margin: 24px auto;
	}

	.horizon_theme .horizon_hero {
		width: calc(100% - 28px);
		min-height: 400px;
		border-radius: 20px;
		margin: 14px auto 64px;
	}

	.horizon_theme .horizon_hero_media,
	.horizon_theme .horizon_hero_shade {
		border-radius: 20px;
	}

	.horizon_theme .horizon_hero_inner {
		padding: 28px 18px 0;
		gap: 18px;
	}

	.horizon_theme .horizon_hero_title {
		max-width: none;
		font-size: clamp(1.85rem, 8.5vw, 2.45rem) !important;
	}

	.horizon_theme .horizon_hero_desc {
		font-size: 14px;
	}

	.horizon_theme .horizon_hero_desc_wrap {
		max-width: 100%;
		flex-wrap: wrap;
	}

	.horizon_theme .horizon_hero_desc_more {
		font-size: 13px;
	}

	.horizon_theme .horizon_hero_cards {
		flex-direction: column;
		gap: 10px;
		margin: 8px 0 -36px;
		width: 100%;
	}

	.horizon_theme .horizon_info_card {
		min-width: 0;
		width: 100%;
		max-width: none;
		padding: 16px 18px;
		flex: 1 1 auto;
	}

	.horizon_theme .horizon_info_card_location {
		max-width: none;
	}

	.horizon_theme .horizon_sidebar {
		max-width: none;
	}

	.horizon_theme .horizon_ticket_head {
		padding: 18px 16px 16px;
	}

	.horizon_theme .horizon_ticket_body {
		padding: 14px 16px 8px;
	}

	.horizon_theme .horizon_ticket_title {
		font-size: 1.25rem !important;
	}

	.horizon_theme .horizon_ticket_body .date-time-area,
	.horizon_theme .horizon_ticket_body .horizon_dt_grid {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	.horizon_theme .horizon_ticket_body .date-time-area .formControl,
	.horizon_theme .horizon_ticket_body .date-time-area select,
	.horizon_theme .horizon_ticket_body .date-time-area input[type="text"],
	.horizon_theme .horizon_ticket_body .horizon_dt_fake {
		height: 44px !important;
		min-height: 44px !important;
		line-height: 44px !important;
		padding: 0 34px 0 12px !important;
		font-size: 13px !important;
		border-radius: 12px !important;
	}

	.horizon_theme .horizon_ticket_body .mep_ticket_item .ticket-data {
		flex-wrap: wrap !important;
	}

	.horizon_theme .horizon_ticket_body .ticket-info {
		flex: 1 1 100% !important;
		max-width: 100% !important;
	}

	.horizon_theme .horizon_ticket_body .horizon_available {
		width: 100%;
		margin-right: 0 !important;
	}

	.horizon_theme .horizon_ticket_body .horizon_ticket_bottom .quantity-control {
		margin-left: 0 !important;
	}

	.horizon_theme .horizon_ticket_body .ticket-price {
		font-size: 18px !important;
	}

	.horizon_theme .horizon_ticket_body .mpwem_book_now,
	.horizon_theme .horizon_ticket_body ._button_theme.mpwem_book_now {
		width: 100% !important;
		justify-content: center;
		min-height: 48px;
	}

	.horizon_theme .horizon_organizer_card {
		padding: 16px;
		border-radius: 18px;
		gap: 14px;
	}

	.horizon_theme .horizon_organizer_info {
		flex-wrap: wrap;
	}

	.horizon_theme .horizon_follow_btn {
		margin-left: auto;
	}

	.horizon_theme .horizon_organizer_stats {
		gap: 8px;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.horizon_theme .horizon_stat {
		padding: 12px 8px;
		text-align: center;
	}

	.horizon_theme .horizon_stat strong {
		font-size: 17px;
	}

	.horizon_theme .horizon_stat span {
		font-size: 11px;
	}

	.horizon_theme .horizon_artists_grid,
	.horizon_theme .horizon_related_grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.horizon_theme .horizon_gallery_grid {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		gap: 10px;
	}

	.horizon_theme .horizon_gallery_item,
	.horizon_theme .horizon_gallery_item_1,
	.horizon_theme .horizon_gallery_item_2,
	.horizon_theme .horizon_gallery_item_3,
	.horizon_theme .horizon_gallery_item_4 {
		grid-column: 1 !important;
		grid-row: auto !important;
		min-height: 180px;
		display: block;
	}

	.horizon_theme .horizon_section_title {
		font-size: 1.4rem !important;
		margin-bottom: 16px !important;
	}

	.horizon_theme .horizon_about_content,
	.horizon_theme .horizon_about_content p {
		font-size: 14px;
		text-align: left;
	}

	.horizon_theme .horizon_reviews_wrap,
	.horizon_theme .horizon_related_wrap {
		margin-top: 0;
	}

	.horizon_theme .horizon_review_card__top .horizon_reviews_stars {
		margin-left: 0;
		width: auto;
	}
}

@media (max-width: 420px) {
	.horizon_theme .horizon_shell {
		padding: 0 12px;
	}

	.horizon_theme .horizon_hero {
		width: calc(100% - 24px);
		min-height: 360px;
		margin: 12px auto 56px;
		border-radius: 16px;
	}

	.horizon_theme .horizon_hero_media,
	.horizon_theme .horizon_hero_shade {
		border-radius: 16px;
	}

	.horizon_theme .horizon_hero_inner {
		padding: 24px 14px 0;
	}

	.horizon_theme .horizon_ticket_body .date-time-area,
	.horizon_theme .horizon_ticket_body .horizon_dt_grid {
		grid-template-columns: 1fr;
	}

	.horizon_theme .horizon_organizer_stats {
		grid-template-columns: 1fr;
	}

	.horizon_theme .horizon_ticket_body .qtyIncDec .decQty,
	.horizon_theme .horizon_ticket_body .qtyIncDec .incQty {
		width: 36px !important;
		height: 36px !important;
		min-width: 36px !important;
	}

	.horizon_theme .horizon_faq_trigger {
		gap: 10px;
		padding: 12px 14px;
	}

	.horizon_theme .mep-event-review-list-wrapper.horizon_reviews_panel,
	.horizon_theme .horizon_reviews_panel .mep-event-review-item {
		padding: 14px;
	}
}

/* ========== ATTENDEE DRAWER ========== */
.horizon_theme .horizon_ticket_body .hz-attendee-home {
	display: none !important;
}

/* Keep sidebar compact while forms are briefly restored for qty cloning */
.horizon_theme .horizon_ticket_body .mep_ticket_item > .mep_attendee_info,
.horizon_theme .horizon_ticket_body .mpwem_booking_panel > .mep_attendee_info {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	border: 0 !important;
	visibility: hidden !important;
}

/* Per-ticket attendee status (under each ticket type) */
.horizon_theme .horizon_attendee_status {
	display: none;
	align-items: center;
	gap: 10px;
	width: 100%;
	margin: 0 20px 10px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid #E8E4F5;
	background: #F8F7FC;
	font-family: var(--hz-sans);
	box-sizing: border-box;
}

.horizon_theme .horizon_attendee_status.is-visible {
	display: flex;
}

.horizon_theme .horizon_attendee_status.is-incomplete {
	border-color: #E8B4B4;
	background: #FFF8F8;
	cursor: pointer;
}

.horizon_theme .horizon_attendee_status.is-complete {
	border-color: #B9E4C9;
	background: #F3FBF6;
}

.horizon_theme .horizon_attendee_status__icon {
	width: 20px;
	height: 20px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--hz-purple);
	border: 1px solid #E8E4F5;
	flex-shrink: 0;
	font-size: 12px;
}

.horizon_theme .horizon_attendee_status.is-complete .horizon_attendee_status__icon {
	color: #1F7A45;
	border-color: #CDEAD7;
}

.horizon_theme .horizon_attendee_status.is-incomplete .horizon_attendee_status__icon {
	color: #C24141;
	border-color: #F0CACA;
}

.horizon_theme .horizon_attendee_status__icon .fa-user-check,
.horizon_theme .horizon_attendee_status.is-incomplete .horizon_attendee_status__icon .fa-user-check {
	display: inline-block;
}

.horizon_theme .horizon_attendee_status__text {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 12px;
	font-weight: 700;
	color: var(--hz-text);
	line-height: 1.35;
}

.horizon_theme .horizon_attendee_status__edit {
	flex-shrink: 0;
	border: 0;
	background: transparent;
	color: var(--hz-purple);
	font-size: 12px;
	font-weight: 700;
	font-family: var(--hz-sans);
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.horizon_theme .horizon_attendee_status.is-incomplete .horizon_attendee_status__edit {
	color: #C24141;
	text-decoration: none;
}

.horizon_theme .mpwem_form_submit_area > .horizon_attendee_status,
.horizon_theme .mpwem_booking_panel > .horizon_attendee_status {
	margin: 0 0 12px;
}

.horizon_theme .mep_ticket_item > .horizon_attendee_status {
	position: relative;
	visibility: visible;
	width: auto;
	height: auto;
	clip: auto;
	overflow: visible;
}

.horizon_theme > .horizon_attendee_drawer[hidden],
.horizon_theme .horizon_attendee_drawer[hidden] {
	display: none !important;
}

.horizon_theme > .horizon_attendee_drawer,
.horizon_theme .horizon_attendee_drawer {
	position: fixed;
	inset: 0;
	z-index: 100060;
	display: flex;
	justify-content: flex-end;
	align-items: stretch;
	width: 100%;
	height: 100%;
	max-height: 100dvh;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

.horizon_theme > .horizon_attendee_drawer:not([hidden]),
.horizon_theme .horizon_attendee_drawer:not([hidden]) {
	pointer-events: auto;
}

.horizon_theme .horizon_attendee_drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(16, 14, 28, 0.5);
	backdrop-filter: blur(2px);
	border: 0;
	padding: 0;
	cursor: pointer;
}

.horizon_theme .horizon_attendee_drawer__panel {
	position: relative;
	z-index: 1;
	width: min(480px, 100%);
	max-width: 100%;
	height: 100%;
	max-height: 100dvh;
	max-height: 100vh;
	background: #fff;
	box-shadow: -18px 0 48px rgba(12, 10, 28, 0.22);
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
	animation: hzDrawerIn 0.28s ease both;
}

@keyframes hzDrawerIn {
	from { transform: translateX(18px); opacity: 0.7; }
	to { transform: translateX(0); opacity: 1; }
}

.horizon_theme .horizon_attendee_drawer__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 22px 22px 16px;
	border-bottom: 1px solid #EEEAF8;
	background: linear-gradient(180deg, #F4F0FF 0%, #FAF8FF 100%);
	flex: 0 0 auto;
}

.horizon_theme .horizon_attendee_drawer__eyebrow {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hz-purple);
	margin-bottom: 6px;
}

.horizon_theme .horizon_attendee_drawer__title {
	font-family: var(--hz-serif) !important;
	font-size: 1.35rem !important;
	line-height: 1.25 !important;
	margin: 0 0 6px !important;
	color: var(--hz-text) !important;
}

.horizon_theme .horizon_attendee_drawer__help {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: var(--hz-muted);
}

.horizon_theme .horizon_attendee_drawer__close {
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #5B5B66;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid #E8E4F5;
}

.horizon_theme .horizon_attendee_drawer__close:hover {
	background: var(--hz-purple-soft);
	color: var(--hz-purple);
}

.horizon_theme .horizon_attendee_drawer__body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 18px 20px 28px;
	background:
		radial-gradient(120% 80% at 100% 0%, rgba(123, 97, 255, 0.06), transparent 55%),
		#F7F6FB;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info,
.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info_hidden {
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 14px !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info:empty,
.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info_hidden:empty {
	display: none !important;
}

/* One attendee = one modern card (1 col by default; 2 cols when >4 fields) */
.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .mep_form_item,
.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .horizon_attendee_block.mep_form_item {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr);
	gap: 14px 12px;
	align-items: start;
	margin: 0 !important;
	padding: 16px 16px 18px !important;
	background: #fff !important;
	border: 1px solid #EAE7F4 !important;
	border-radius: 16px !important;
	box-shadow: 0 10px 28px rgba(22, 22, 29, 0.05) !important;
}

.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .mep_form_item.mep-form--cols-2,
.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .mep_form_item:has(> .mp_form_item:nth-of-type(5)),
.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .horizon_attendee_block.mep_form_item.mep-form--cols-2,
.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .horizon_attendee_block.mep_form_item:has(> .mp_form_item:nth-of-type(5)) {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .mep_form_item > h6,
.horizon_theme .horizon_attendee_drawer__body .horizon_attendee_card__head {
	grid-column: 1 / -1;
	display: flex !important;
	align-items: center;
	gap: 12px;
	margin: 0 0 4px !important;
	padding: 0 0 14px !important;
	border-bottom: 1px solid #F0EDF8 !important;
	font-family: var(--hz-sans) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	color: var(--hz-text) !important;
	background: transparent !important;
}

.horizon_theme .horizon_attendee_drawer__body .horizon_attendee_card__index {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(145deg, var(--hz-purple) 0%, var(--hz-purple-dark) 100%);
	box-shadow: 0 8px 16px rgba(123, 97, 255, 0.28);
}

.horizon_theme .horizon_attendee_drawer__body .horizon_attendee_card__meta {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.horizon_theme .horizon_attendee_drawer__body .horizon_attendee_card__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hz-muted);
}

.horizon_theme .horizon_attendee_drawer__body .horizon_attendee_card__ticket {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	font-size: 14px;
	font-weight: 700;
	color: var(--hz-text);
}

.horizon_theme .horizon_attendee_drawer__body .horizon_attendee_card__ticket-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.horizon_theme .horizon_attendee_drawer__body .horizon_attendee_card__pill {
	flex: 0 0 auto;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	color: var(--hz-purple);
	background: var(--hz-purple-soft);
}

.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .mep_form_item > h6 .mpwem_ticket_name {
	display: inline-block;
	margin-left: 4px;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: var(--hz-purple);
	background: var(--hz-purple-soft);
}

.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .mep_form_item > h6 .mpwem_ticket_count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	margin-left: 6px;
	padding: 0 6px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: var(--hz-purple);
}

.horizon_theme .horizon_attendee_drawer__body .mp_form_item,
.horizon_theme .mep_attendee_info .mp_form_item {
	margin: 0 !important;
	min-width: 0;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.horizon_theme .horizon_attendee_drawer__body .mp_form_item:has(textarea),
.horizon_theme .horizon_attendee_drawer__body .mp_form_item:has(select[multiple]),
.horizon_theme .horizon_attendee_drawer__body .mp_form_item.mep_checkbox_item,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item.mep_radio_item,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item.mep_file_item {
	grid-column: 1 / -1;
}

@media (max-width: 640px) {
	.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .mep_form_item.mep-form--cols-2,
	.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .mep_form_item:has(> .mp_form_item:nth-of-type(5)),
	.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .horizon_attendee_block.mep_form_item.mep-form--cols-2,
	.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .horizon_attendee_block.mep_form_item:has(> .mp_form_item:nth-of-type(5)),
	.horizon_theme .horizon_ticket_body .mep_form_item.mep-form--cols-2,
	.horizon_theme .horizon_ticket_body .mep_form_item:has(> .mp_form_item:nth-of-type(5)) {
		grid-template-columns: minmax(0, 1fr) !important;
	}
}

.horizon_theme .horizon_attendee_drawer__body .mp_form_item label {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0 !important;
	width: 100%;
}

.horizon_theme .horizon_attendee_drawer__body .mp_form_item label > span {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #4F4F5C;
}

.horizon_theme .horizon_attendee_drawer__body .mp_form_item label > span .textRequired,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item .textRequired {
	color: #E11D48 !important;
	margin-left: 2px;
	font-weight: 700;
}

.horizon_theme .horizon_attendee_drawer__body .mp_form_item .formControl,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item input,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item select,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item textarea {
	width: 100% !important;
	max-width: 100% !important;
	border: 1px solid #E4E1EF !important;
	border-radius: 11px !important;
	background: #FBFBFD !important;
	padding: 11px 12px !important;
	font-family: var(--hz-sans) !important;
	font-size: 13.5px !important;
	line-height: 1.4 !important;
	color: var(--hz-text) !important;
	box-shadow: none !important;
	min-height: 44px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.horizon_theme .horizon_attendee_drawer__body .mp_form_item .formControl:hover,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item input:hover,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item select:hover,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item textarea:hover {
	border-color: #D4CFE8 !important;
	background: #fff !important;
}

.horizon_theme .horizon_attendee_drawer__body .mp_form_item .formControl:focus,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item input:focus,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item select:focus,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item textarea:focus {
	outline: none !important;
	border-color: var(--hz-purple) !important;
	background: #fff !important;
	box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.16) !important;
}

.horizon_theme .horizon_attendee_drawer__body .mp_form_item select.formControl,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236E6E7A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 12px center !important;
	background-color: #FBFBFD !important;
	padding-right: 34px !important;
}

.horizon_theme .horizon_attendee_drawer__body .mp_form_item textarea {
	min-height: 88px;
	resize: vertical;
}

.horizon_theme .horizon_attendee_drawer__body .mp_form_item .formControl.is-hz-invalid,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item input.is-hz-invalid,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item select.is-hz-invalid,
.horizon_theme .horizon_attendee_drawer__body .mp_form_item textarea.is-hz-invalid {
	border-color: #EF4444 !important;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
	background: #FFF8F8 !important;
}

.horizon_theme .horizon_attendee_drawer__body .mep_checkbox_item,
.horizon_theme .horizon_attendee_drawer__body .mep_radio_item {
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px 14px;
	padding: 10px 12px !important;
	border-radius: 12px !important;
	background: #F8F7FC !important;
	border: 1px solid #EEEAF8 !important;
}

.horizon_theme .horizon_attendee_drawer__foot {
	padding: 14px 20px calc(18px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid #EEEAF8;
	background: #fff;
	flex: 0 0 auto;
}

.horizon_theme .horizon_attendee_drawer__continue {
	width: 100%;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(145deg, var(--hz-purple) 0%, var(--hz-purple-dark) 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 14px 16px;
	cursor: pointer;
	font-family: var(--hz-sans);
	box-shadow: 0 10px 22px rgba(123, 97, 255, 0.28);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.horizon_theme .horizon_attendee_drawer__continue:hover {
	filter: brightness(1.03);
	box-shadow: 0 12px 26px rgba(123, 97, 255, 0.34);
}

.horizon_theme .horizon_attendee_drawer__continue:active {
	transform: translateY(1px);
}

body.horizon-attendee-drawer-open {
	overflow: hidden;
}

@media (max-width: 640px) {
	.horizon_theme .horizon_attendee_drawer__panel {
		width: 100%;
	}

	.horizon_theme .horizon_attendee_drawer__head,
	.horizon_theme .horizon_attendee_drawer__body,
	.horizon_theme .horizon_attendee_drawer__foot {
		padding-left: 14px;
		padding-right: 14px;
	}

	.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .mep_form_item,
	.horizon_theme .horizon_attendee_drawer__body .mep_attendee_info > .horizon_attendee_block.mep_form_item {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 14px !important;
		border-radius: 14px !important;
	}

	.horizon_theme .horizon_attendee_drawer__body .mp_form_item:has(textarea),
	.horizon_theme .horizon_attendee_drawer__body .mp_form_item:has(select[multiple]),
	.horizon_theme .horizon_attendee_drawer__body .mp_form_item.mep_checkbox_item,
	.horizon_theme .horizon_attendee_drawer__body .mp_form_item.mep_radio_item,
	.horizon_theme .horizon_attendee_drawer__body .mp_form_item.mep_file_item {
		grid-column: 1;
	}
}

/* =========================================================
   Horizon-only: review modal redesign (does not affect other templates)
   ========================================================= */

body.mep-horizon-active .mage-modal {
    display: none;
    position: fixed;
    z-index: 100080;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 32px 16px;
    box-sizing: border-box;
}
body.mep-horizon-active .mage-modal.is-open,
body.mep-horizon-active .mage-modal[style*="display: block"],
body.mep-horizon-active .mage-modal[style*="display:block"] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
body.mep-horizon-active .mage-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(16, 14, 28, 0.55);
    backdrop-filter: blur(3px);
    z-index: 0;
}
body.mep-horizon-active .mage-modal-content {
    position: relative;
    z-index: 1;
    background: #fff;
    margin: auto;
    padding: 0;
    border: 1px solid #EAE7F4;
    width: min(640px, 100%);
    max-width: 640px;
    max-height: calc(100vh - 64px);
    overflow: auto;
    border-radius: 18px;
    box-shadow: 0 28px 64px rgba(16, 14, 28, 0.28);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.28s;
    animation-name: animatetop;
    animation-duration: 0.28s;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        transform: translateY(16px) scale(0.98);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes animatetop {
    from {
        transform: translateY(16px) scale(0.98);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

body.mep-horizon-active .mage-modal-header .close,
body.mep-horizon-active .mage-modal-close {
    color: #5B5B66;
    float: none;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    width: 36px;
    height: 36px;
    border: 1px solid #E8E4F5;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

body.mep-horizon-active .mage-modal-header .close:hover,
body.mep-horizon-active .mage-modal-header .close:focus,
body.mep-horizon-active .mage-modal-close:hover,
body.mep-horizon-active .mage-modal-close:focus {
    color: #16161D;
    background: #F4F0FF;
    border-color: #DED5FF;
    text-decoration: none;
}

body.mep-horizon-active .mage-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px 16px;
    color: #16161D;
    border-bottom: 1px solid #EEEAF8;
    background: linear-gradient(180deg, #F7F4FF 0%, #FFFFFF 100%);
}
body.mep-horizon-active .mage-modal-eyebrow {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7B61FF;
}
body.mep-horizon-active .mage-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
    color: #16161D;
}

body.mep-horizon-active .mage-modal-body {
    padding: 8px 22px 22px;
}

body.mep-horizon-active .mage-modal-footer {
    padding: 12px 22px;
    color: #565656;
    border-top: 1px solid #EEEAF8;
}
body.mep-horizon-active .mage-modal-footer h3 {
    font-size: 1em;
}
/* Mage Modal form */
body.mep-horizon-active .mep-event-review-form .group {
    margin-bottom: 18px;
}
body.mep-horizon-active .mep-event-review-form .group.col-tow {
    display: flex;
    width: 100%;
    gap: 14px;
    justify-content: space-between;
}
body.mep-horizon-active .mep-event-review-form .group.col-tow > div {
    flex: 1 1 0;
    min-width: 0;
}
body.mep-horizon-active .mep-event-review-form .group::after {
    display: none;
}
body.mep-horizon-active .mep-event-review-form p {
    margin-bottom: 10px;
}
body.mep-horizon-active .mep-event-review-form .mep-event-review-heading {
    margin: 8px 0 22px;
}
body.mep-horizon-active .mep-event-review-form .mep-event-review-heading h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #16161D;
}
body.mep-horizon-active .mep-event-review-form .mep-event-review-heading p {
    margin: 0;
    font-size: 0.92em;
    line-height: 1.5;
    color: #6E6E7A;
}
body.mep-horizon-active .mep-event-review-form .label {
    font-weight: 600;
    font-size: 0.86em;
    display: block;
    margin-bottom: 8px;
    color: #3F3F4A;
}
body.mep-horizon-active .mep-event-review-form--content {
    width: 100%;
}
body.mep-horizon-active .mep-event-review-form input[type="text"],
body.mep-horizon-active .mep-event-review-form input[type="email"],
body.mep-horizon-active .mage-modal #mep-event-review-form--title,
body.mep-horizon-active .mage-modal #mep-event-review-form--name,
body.mep-horizon-active .mage-modal #mep-event-review-form--email {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    border: 1px solid #E4E1EF !important;
    border-radius: 11px !important;
    background: #FBFBFD !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    color: #16161D !important;
    min-height: 46px !important;
    height: auto !important;
    margin: 0 !important;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
body.mep-horizon-active .mep-event-review-form input[type="text"]:focus,
body.mep-horizon-active .mep-event-review-form input[type="email"]:focus {
    outline: none;
    border-color: #7B61FF;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(123, 97, 255, 0.16);
}
body.mep-horizon-active .mep-event-review-form .radio-inline {
    display: none;
}
body.mep-horizon-active .mep-review-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}
body.mep-horizon-active .mep-review-star {
    position: relative;
    cursor: pointer;
    margin: 0;
}
body.mep-horizon-active .mep-review-star input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
body.mep-horizon-active .mep-review-star__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 24px;
    line-height: 1;
    color: #D8D5E8;
    background: #F7F6FB;
    border: 1px solid #EEEAF8;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
body.mep-horizon-active .mep-review-star:hover .mep-review-star__icon,
body.mep-horizon-active .mep-review-star:hover ~ .mep-review-star .mep-review-star__icon {
	color: #F5A524;
	background: #FFF8E8;
	border-color: #F6E0A8;
}
body.mep-horizon-active .mep-review-star:has(input:checked) .mep-review-star__icon,
body.mep-horizon-active .mep-review-star:has(input:checked) ~ .mep-review-star .mep-review-star__icon {
	color: #F5A524;
	background: #FFF8E8;
	border-color: #F6E0A8;
}
body.mep-horizon-active .mep-review-star:hover .mep-review-star__icon {
	transform: translateY(-1px);
}
body.mep-horizon-active body.mage-modal-open {
	overflow: hidden;
}
body.mep-horizon-active .mep-review-comments-group .wp-editor-wrap,
body.mep-horizon-active .mep-review-comments-group .wp-editor-container,
body.mep-horizon-active .mep-review-comments-group .mce-tinymce {
    border-radius: 12px !important;
    overflow: hidden;
}
body.mep-horizon-active .mep-review-comments-group .wp-editor-container {
    border: 1px solid #E4E1EF !important;
}
body.mep-horizon-active .mep-review-comments-group .wp-editor-tools {
    margin-bottom: 8px;
}
body.mep-horizon-active .mep-review-comments-group .wp-switch-editor {
    border-radius: 8px 8px 0 0 !important;
}
body.mep-horizon-active .mep-review-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    padding-top: 8px;
}
body.mep-horizon-active .mep-review-cancel {
    border: 1px solid #E4E1EF;
    background: #fff;
    color: #4F4F5C;
    border-radius: 11px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    min-height: 46px;
}
body.mep-horizon-active .mep-review-cancel:hover {
    background: #F7F6FB;
    color: #16161D;
}
body.mep-horizon-active .mep-event-review-form input[type="submit"],
body.mep-horizon-active .mep-event-review-form button[type="submit"] {
    background: linear-gradient(145deg, #7B61FF 0%, #6548f0 100%);
    padding: 12px 20px;
    text-transform: none;
    color: #fff;
    border: none;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    min-height: 46px;
    box-shadow: 0 10px 22px rgba(123, 97, 255, 0.28);
    transition: filter 0.15s ease, box-shadow 0.15s ease;
}
body.mep-horizon-active .mep-event-review-form input[type="submit"]:hover,
body.mep-horizon-active .mep-event-review-form button[type="submit"]:hover {
    text-decoration: none;
    filter: brightness(1.04);
    box-shadow: 0 12px 26px rgba(123, 97, 255, 0.34);
}
body.mep-horizon-active .mep-event-review-form {
    width: 100%;
    margin: 0 auto;
    padding: 4px 0 8px;
}
body.mep-horizon-active .screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
body.mep-horizon-active .review_form_error {
    color: #cd2653;
    font-size: .7em;
    margin-top: 5px!important;
    display: block;
}
body.mep-horizon-active .mce-widget.mce-btn {
    display: inline-block;
}

@media only screen and (max-width: 1199px) {
body.mep-horizon-active .mep-event-review-form {
        width: 100%;
        padding: 0;
    }
}

@media only screen and (max-width: 768px) {
body.mep-horizon-active .mage-modal {
        padding: 16px 10px;
    }
body.mep-horizon-active .mage-modal-content {
        max-height: calc(100vh - 32px);
        border-radius: 14px;
    }
body.mep-horizon-active .mage-modal-header,
body.mep-horizon-active .mage-modal-body {
        padding-left: 16px;
        padding-right: 16px;
    }
body.mep-horizon-active .mep-event-review-form .group.col-tow {
        flex-direction: column;
        gap: 18px;
    }
body.mep-horizon-active .mep-review-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
}
