:root{
	--dropdown-border-color: #F6A8C4;
	--dropdown-highlight-color: #F89ABA;
	--nyc-header-height: 72.67px
}

/* NEW Header CSS */

.nyc__header {
	padding: 15px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;
	background: #fff !important;
}

.nyc__header .common_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 24px 8px 32px;
	line-height: 1;
	height: 40px;
	font-size: 16px;
	border-radius: 50px;
	white-space: nowrap;
}

.header__logo {
	max-width: 110px;
	margin-right: 0;
}

/* ---------- Nav trigger links ---------- */

.nyc__header .navbar-nav {
	align-items: center;
}

.nyc__header .navbar-nav .nav-item {
	position: relative;
}

.nyc__header .navbar-nav .nav-link {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--theme-secondary-color);
	letter-spacing: 1px;
	line-height: 1.5;
	font-weight: 500;
	padding: 10px 30px;
	white-space: nowrap;
}

.nyc__header .nav-chevron {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
	stroke-width: 2;
}

.nyc__header .navbar-nav .nav-link:hover {
	background: var(--common-bg-color2);
	color: var(--theme-red);
}

/* When the panel is open, dim the trigger's own hover fill so the panel below reads as the focal element */
.nyc__header .nyc-dropdown.is-open > .nav-link:hover,
.nyc__header .nyc-dropdown.is-open > .common_btn:hover {
	background: transparent;
	color: var(--theme-secondary-color);
}

.nyc__header .nyc-dropdown.is-open > .nyc-dropdown__trigger .nav-chevron {
	transform: rotate(180deg);
}

/* ---------- Dropdown panel: trigger label lives inside it ---------- */

.nyc-dropdown {
	position: relative;
}

.nav_btn_wrapper.nyc-dropdown{
	padding: 0 10px;
}

.nyc-dropdown__panel {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-10px);
	margin-top: 8px;
	background: #fff;
	border: 2px solid var(
	--dropdown-border-color);
	border-radius: 14px;
	padding: 8px;
	box-shadow: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
	/* 	z-index: 1000; */
	width: 100%;
	padding-top: 50px;
	z-index: -1;
}

.nyc-dropdown__panel--right {
	left: auto;
	right: 0;
	transform: translateY(8px);
}

.nyc-dropdown.is-open > .nyc-dropdown__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	/* transform: translateX(-50%) translateY(0); */
}

.nyc-dropdown__panel--right.nyc-dropdown.is-open > .nyc-dropdown__panel{
	transform: translateY(0);
}

.nyc-dropdown.is-open > .nyc-dropdown__panel--right {
    transform: translateY(-20px);
	padding-top: 65px;
}

/* Label repeated at the top of the panel, matching the main nav item styling */
.nyc-dropdown__panel-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: var(--theme-secondary-color);
	margin-bottom: 16px;
}

.nyc-dropdown__panel-label .nav-chevron {
	transform: rotate(180deg);
}

.nyc-dropdown__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.nyc-dropdown__item {
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: -0.02em;
	color: var(--theme-secondary-color);
	padding: 9px 12px;
	border-radius: 8px;
	text-decoration: none;
}

.nyc-dropdown__item:hover,
.nyc-dropdown__item:focus,
.nyc-dropdown__item.active {
	background: var(--dropdown-highlight-color);
	color: var(--theme-secondary-color);
}

/* ---------- Mobile toggler ---------- */

.nyc__header .navbar-toggler {
	border: none;
	padding: 4px 6px;
	box-shadow: none !important;
}

@media (max-width: 991.98px) {
	.nyc-dropdown__panel {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: none;
		box-shadow: none;
		margin: 8px 0 4px;
	}

	.nyc-dropdown.is-open > .nyc-dropdown__panel {
		display: block;
	}

	.nyc-dropdown__panel-label {
		display: none;
	}
}

.nyc-mobile-tickets,
.nyc-toggler-custom {
	display: none;
}

@media (max-width: 574.98px) {
	.nyc-mobile-tickets {
		display: block;
	}

	.nyc-toggler-custom {
		display: block;
		line-height: 0;
	}

	.nyc__header .navbar-toggler-icon {
		display: none;
	}

	.nyc__header .nav_btn_wrapper .common_btn,
	.nyc__header .nav_btn_wrapper > .nyc-dropdown__panel {
		display: none !important;
	}

	.nav_btn_wrapper.nyc-dropdown {
		padding: 0;
		margin-left: auto;
	}

	.nyc__header .navbar {
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
	}

	.nyc__header .navbar-toggler {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		color: var(--theme-secondary-color);
	}

	.nyc-toggler-icon {
		width: 28px;
		height: 28px;
	}

	.nyc-toggler-icon--close {
		display: none;
	}

	.nyc__header.is-nav-open .nyc-toggler-icon--menu {
		display: none;
	}

	.nyc__header.is-nav-open .nyc-toggler-icon--close {
		display: block;
	}

	.nyc__header .navbar-collapse {
		display: none !important;
		position: fixed;
		top: var(--nyc-header-height, 72.67px);
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: auto !important;
		max-height: none !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		background: var(--common-bg-color2);
		border: none;
		margin: 0;
		padding: 0;
		z-index: 998;
	}

	.nyc__header.is-nav-open .navbar-collapse {
		display: flex !important;
		flex-direction: column;
	}

	body.nyc-nav-open {
		overflow: hidden;
	}

	.nyc__header .navbar-nav {
		align-items: stretch;
		flex: 1 1 auto;
		gap: 0;
		width: 100%;
		min-height: 100%;
		margin: 0;
		background: var(--common-bg-color2);
	}

	.nyc__header .navbar-nav .nav-item {
		position: static;
		width: 100%;
		border-bottom: 1px solid var(--dropdown-border-color);
		border-radius: 0;
	}
	.nyc__header .navbar-nav .nav-item.is-open{
		background: #fff;
	}

	.nyc__header .navbar-nav .nav-link {
		justify-content: space-between;
		width: 100%;
		padding: 16px 20px;
		border-radius: 0;
		background: transparent;
		color: var(--theme-secondary-color);
		text-transform: none;
		font-size: 20px;
		line-height: 2;
		padding: 12px 16px !important;
	}

	.nyc__header .navbar-nav .nav-link:hover,
	.nyc__header .navbar-nav .nav-link:focus,
	.nyc__header .nyc-dropdown.is-open > .nav-link:hover,
	.nyc__header .nyc-dropdown.is-open > .common_btn:hover {
		background: transparent;
		color: var(--theme-secondary-color);
	}

	.nyc__header .navbar-nav .nyc-mobile-tickets > .nav-link {
		background: var(--theme-red);
		color: #fff;
	}

	.nyc-mobile-tickets > .nav-link:hover,
	.nyc-mobile-tickets > .nav-link:focus {
		background: var(--theme-red);
		color: #fff;
	}

	.nyc__header .nav-chevron{
		width: 40px;
		height: 40px;
	}

	.nyc-mobile-tickets.is-open {
		background: #fff;
		border-bottom-color: var(--dropdown-border-color);
	}

	.nyc-mobile-tickets.is-open > .nav-link,
	.nyc-mobile-tickets.is-open > .nav-link:hover,
	.nyc-mobile-tickets.is-open > .nav-link:focus {
		background: #fff;
		color: var(--theme-secondary-color);
	}

	.nyc__header .nyc-dropdown__panel {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		display: none;
		margin: 0;
		padding: 0;
		width: 100%;
		border: none;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.nyc__header .nyc-dropdown.is-open > .nyc-dropdown__panel {
		display: block;
	}

	.nyc-mobile-tickets.is-open > .nyc-dropdown__panel {
		background: #fff;
	}

	.nyc__header .nyc-dropdown__item,
	.nyc__header .nyc-dropdown__item:hover,
	.nyc__header .nyc-dropdown__item:focus,
	.nyc__header .nyc-dropdown__item.active {
		border-radius: 0;
		background: transparent;
		color: var(--theme-secondary-color);
		padding: 12px 20px;
		font-size: 16px;
	}
	
	
	.nyc-dropdown__list{
		row-gap: 8px;
		padding-top: 8px;
	}
	
	
}





/* ================== Banner ================== */


/* ---------- NYC Banner 4 hero slider ---------- */

.header_offset {
	height: var(--nyc-header-height, 86px);
}

.nyc-banner-4 {
	--nyc-header-height: 86px;
	position: relative;
	width: 100%;
	height: calc(90svh - var(--nyc-header-height));
	max-height: 680px;
	overflow: hidden;
}

.nyc-banner-4__slider,
.nyc-banner-4__slider .swiper-wrapper,
.nyc-banner-4__slider .swiper-slide,
.nyc-banner-4__slide {
	height: 100%;
}

.nyc-banner-4__slide {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 24px 20px 32px;
}

.nyc-banner-4__image,
.nyc-banner-4__video,
.nyc-banner-4__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%!important;
	object-fit: cover;
	object-position: center;
}

.nyc-banner-4__pill {
	position: absolute;
	top: 24px;
	left: 24px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 50px;
	background: var(--theme-red);
	color: #fff;
	font-family: var(--theme-font);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	white-space: nowrap;
}

.nyc-banner-4__pill svg {
	flex-shrink: 0;
}

.nyc-banner-4__end {
	z-index: 2;
	width: min(900px, 100%);
	padding-top: 34px;
}

.nyc-banner-4__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 20px;
	border-radius: 40px;
	background: #fff;
	text-align: center;
}

.nyc-banner-4__content h1,
.nyc-banner-4__content h2 {
	margin: 0;
	font-family: var(--theme-font);
	font-weight: 800;
	font-size: 32px;
	line-height: 90%;
	letter-spacing: -2px;
	text-align: center;
	text-transform: uppercase;
	text-wrap: balance;
	color: var(--theme-secondary-color);
}

.nyc-banner-4__content p,
.nyc_variant_b .nyc-banner-4__content p {
	margin: 0;
	font-family: var(--theme-font);
	font-weight: 500;
	font-style: normal;
	font-size: 18px;
	line-height: 150%;
	letter-spacing: 0;
	text-align: center;
	color: var(--theme-secondary-color);
}

.nyc-banner-4__subheading,
.nyc-banner-4__content h4.nyc-banner-4__subheading {
	margin: 0;
	font-family: var(--theme-font);
	font-weight: 500;
	font-size: 25px;
	line-height: 150%;
	letter-spacing: 0;
	text-align: center;
	text-transform: none;
	color: var(--theme-red);
}

.nyc-banner-4 .nyc-banner-4__pagination.swiper-pagination-bullets,
.nyc-banner-4 .nyc-banner-4__pagination {
	position: absolute;
	left: 50%;
	bottom: auto!important;
	width: fit-content;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 6px 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	transform: translateX(-50%);
	z-index: 4;
}

.nyc-banner-4__pagination .swiper-pagination-bullet {
	width: 22px;
	height: 6px;
	margin: 0 !important;
	border-radius: 999px;
	background: rgba(142, 21, 55, 0.18);
	opacity: 1;
	transition: background 0.3s ease;
}

.nyc-banner-4__pagination .swiper-pagination-bullet-active {
	background: var(--theme-red);
}

@media (max-width: 767.98px) {
	.nyc-banner-4 {
		height: auto;
		min-height: 0;
		overflow: visible;
		background: var(--common-bg-color2);
		padding: 0 8px 16px;
		max-height: unset;
	}

	.nyc-banner-4__slider,
	.nyc-banner-4__slider .swiper-wrapper,
	.nyc-banner-4__slider .swiper-slide,
	.nyc-banner-4__slide {
		height: auto;
	}

	.nyc-banner-4__slide {
		padding: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
	}

	.nyc-banner-4__image,
	.nyc-banner-4__video,
	.nyc-banner-4__media {
		position: relative;
		inset: auto;
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
		object-fit: cover;
		object-position: center;
	}

	.nyc-banner-4__end {
		position: relative;
		width: 100%;
		padding: 36px 20px 24px;
		background: #fff;
		border-radius: 0 0 40px 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.nyc-banner-4__pill {
		position: static;
		top: auto;
		left: auto;
		margin: 0 auto;
	}

	.nyc-banner-4__pill svg {
		display: none;
	}

	.nyc-banner-4__content {
		width: 100%;
		padding: 0;
		border-radius: 0;
		background: transparent;
		gap: 16px;
	}

	.nyc-banner-4__content h1,
	.nyc-banner-4__content h2 {
		font-size: 28px;
		letter-spacing: -1px;
	}

	.nyc-banner-4__content p,
	.nyc_variant_b .nyc-banner-4__content p {
		font-size: 16px;
	}

	.nyc-banner-4__subheading,
	.nyc-banner-4__content h4.nyc-banner-4__subheading {
		font-size: 20px;
	}

	.nyc-banner-4__content .common_btn {
		width: 100%;
	}

	.nyc-banner-4 .nyc-banner-4__pagination.swiper-pagination-bullets,
	.nyc-banner-4 .nyc-banner-4__pagination {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		background: transparent;
		padding: 0;
	}

	.nyc-banner-4__pagination .swiper-pagination-bullet {
		background: var(--common-bg-color2);
	}

	.nyc-banner-4__pagination .swiper-pagination-bullet-active {
		background: var(--theme-red);
	}
}
















