/* Akpe Cultural Centre — overrides on top of Wandau template */

/* Blog article content */
.blog-article-content p {
	margin-bottom: 1.25em;
}
.blog-article-content h2 {
	font-family: "Cinzel", serif;
	font-size: 1.5rem;
	margin-top: 2.5em;
	margin-bottom: 1em;
}
.blog-article-content h3 {
	font-family: "Cinzel", serif;
	font-size: 1.25rem;
	margin-top: 2em;
	margin-bottom: 0.75em;
}
.blog-article-content ul,
.blog-article-content ol {
	padding-left: 1.5em;
	margin-bottom: 1.25em;
}
.blog-article-content ul {
	list-style: disc;
}
.blog-article-content ol {
	list-style: decimal;
}
.blog-article-content blockquote {
	border-left: 4px solid #4ec081;
	padding-left: 1.25em;
	font-style: italic;
	margin: 2em 0;
}
.blog-article-content a {
	color: #4ec081;
	font-weight: 600;
}
.blog-article-content a:hover {
	text-decoration: underline;
}
.blog-article-content img {
	border-radius: 1rem;
	margin: 1.5em 0;
	width: 100%;
	height: auto;
}

/* Side widget: SVG fills full width on mobile */
@media (max-width: 640px) {
	.side-widget {
		max-width: 100vw !important;
		width: 85% !important;
		padding-right: 40px !important;
		overflow-x: hidden !important;
	}
	.side-widget svg {
		width: 120% !important;
		min-height: 130% !important;
		right: -10% !important;
	}
}

/* Navbar: fixed + white background on scroll */
.navbar {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	transition:
		background 0.3s ease,
		box-shadow 0.3s ease;
}

.navbar.is-scrolled {
	background: #fff !important;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
}
.navbar.is-scrolled .site-menu ul li a {
	color: #080808;
}
.navbar.is-scrolled .navbar-button a {
	/* color: #080808; */
	border-color: #080808;
}

/* Hide the "/" in slider fraction — show only numbers, vertically centered */
.slider .swiper-fraction {
	font-size: 0;
	color: transparent;
	display: flex;
	height: 100%;
}
.slider .swiper-fraction span {
	font-size: 14px;
	color: #080808;
	/* line-height: 1;  */
	align-self: start;
	margin-top: 3px;
}

.slider .swiper-fraction .swiper-pagination-current {
	margin-right: 134px;
}

/* ================================================================
   Navigation Dropdowns — Wandau-styled
   ================================================================ */

.navbar .site-menu {
	margin-inline: 80px auto;
}
.navbar .site-menu ul li {
	position: relative;

	& a {
		font-size: 15px;
	}
}

.navbar .site-menu ul li.has-dropdown > a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.navbar .site-menu ul li.has-dropdown > a i {
	font-size: 10px;
	transition: transform 0.25s ease;
}

.navbar .site-menu ul li.has-dropdown:hover > a i {
	transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
	position: absolute;
	top: calc(100% + 15px);
	left: 50%;
	transform: translateX(-50%) translateY(-8px);
	min-width: 220px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		visibility 0s linear 0.25s;
	z-index: 100;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* Wide dropdown (What We Offer): horizontal 3-column layout */
.nav-dropdown.nav-dropdown--wide {
	flex-direction: row;
	min-width: 520px;
}

.nav-dropdown::before {
	content: "";
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	height: 15px;
}

.navbar .site-menu ul li.has-dropdown:hover .nav-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		visibility 0s linear 0s;
}

/* Active state for nav links */
.navbar .site-menu ul li a.active {
	color: #4ec081 !important;
}

/* Burger: only on mobile */
.hamburger-menu {
	display: none !important;
}

@media (max-width: 991px) {
	.hamburger-menu {
		display: flex !important;
	}
	.nav-dropdown {
		display: none !important;
	}
	.navbar .site-menu ul li.has-dropdown > a i {
		display: none;
	}
	.slider .swiper-fraction,
	.slider .swiper-pagination {
		display: none !important;
	}
}

/* ================================================================
   Mobile Nav — Accordion open/close state (JS-toggled)
   ================================================================ */

.mobile-nav-accordion__toggle.is-open i {
	transform: rotate(180deg);
}

.mobile-nav-accordion__toggle.is-open {
	color: #4ec081;
}

.mobile-nav-accordion__panel.is-open {
	max-height: 600px;
	padding-bottom: 10px;
}

/* ======= Sheet/Drawer Modal ======= */
.sheet-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	width: 0;
	height: 0;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0);
	backdrop-filter: blur(0px);
	transition:
		background-color 0.4s ease,
		backdrop-filter 0.4s ease,
		opacity 0.4s ease,
		width 0s linear 0.4s,
		height 0s linear 0.4s;
}

.sheet-overlay.visible {
	width: 100%;
	height: 100dvh;
	opacity: 1;
	background-color: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(4px);
	transition:
		background-color 0.4s ease,
		backdrop-filter 0.4s ease,
		opacity 0.3s ease;
}

.sheet-drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100dvh;
	width: 100%;
	max-width: 960px;
	overflow: hidden;
	background-color: white;
	border-radius: 16px 0 0 16px;
	box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 992px) {
	.sheet-drawer {
		max-width: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		border-radius: 0;
	}
}

.sheet-drawer .mainModal-content {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.sheet-overlay.visible .sheet-drawer {
	transform: translateX(0);
}

/* Centered modal variant */
.sheet-overlay .sheet-center {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	width: 100%;
	max-width: 500px;
	max-height: 90dvh;
	overflow-y: auto;
	background-color: white;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transition:
		transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.3s ease;
}

@media (max-width: 540px) {
	.sheet-overlay .sheet-center {
		max-width: calc(100% - 32px);
	}
}

.sheet-overlay.visible .sheet-center {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

/* Reset wandau global input styles inside sheet & center modal */
.sheet-drawer input[type="text"],
.sheet-drawer input[type="email"],
.sheet-drawer input[type="tel"],
.sheet-drawer input[type="number"],
.sheet-drawer input[type="date"],
.sheet-drawer input[type="search"],
.sheet-drawer input[type="password"],
.sheet-drawer textarea,
.sheet-drawer select,
.sheet-center input[type="text"],
.sheet-center input[type="email"],
.sheet-center input[type="tel"],
.sheet-center input[type="number"],
.sheet-center textarea,
.sheet-center select {
	width: 100%;
	height: 42px;
	padding: 0 14px;
	border: 1px solid #d4d4d4 !important;
	border-radius: 8px !important;
	background-color: #fff;
	color: #080808;
	font-size: 14px;
	font-family: "DM Sans", sans-serif;
	outline: none;
	-webkit-appearance: none !important;
	appearance: none !important;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
	box-sizing: border-box;
}

.sheet-drawer input:focus,
.sheet-drawer textarea:focus,
.sheet-drawer select:focus,
.sheet-center input:focus,
.sheet-center textarea:focus,
.sheet-center select:focus {
	border-color: #4ec081;
	box-shadow: 0 0 0 3px rgba(78, 192, 129, 0.1);
}

.sheet-drawer input::placeholder,
.sheet-drawer textarea::placeholder {
	color: #aaa;
	font-size: 13px;
}

.sheet-drawer textarea {
	height: 100px;
	padding: 12px 14px;
}

.sheet-drawer .radio-input input[type="radio"] {
	display: none;
	width: auto;
	height: auto;
	appearance: none;
	background: none;
	border: none;
	border-radius: 20px;
	margin: 0;
	transform: none;
}

/* Sheet two-column layout */
.sheet-columns {
	display: flex;
	flex-direction: row;
	height: 100dvh;
	width: 100%;
}

.sheet-sidebar {
	order: -1;
	flex: 0 0 340px;
	width: 340px;
	height: 100%;
	overflow-y: auto;
	background: linear-gradient(180deg, #f7faf8 0%, #eef3f0 100%);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	border-right: 1px solid #e2e8e4;
}

.sheet-main {
	flex: 1;
	min-width: 0;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 1.75rem;
}

@media (max-width: 992px) {
	.sheet-columns {
		flex-direction: column;
		height: auto;
	}
	.sheet-sidebar {
		order: -1;
		flex: none;
		width: 100%;
		height: auto;
		border-right: none;
		border-bottom: 1px solid #e2e8e4;
		padding: 1.25rem;
	}

	.sheet-main {
		height: auto;
		padding: 1.25rem;
	}
}

/* Legacy modal support (donate page — remove when donate.php uses sheet pattern) */
.modalAkpe {
	max-width: 900px;
	width: 100%;
	height: 100%;
}

.modalAkpe .modalContainer {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.modalAkpe .modalContainer .content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
}

.modalAkpe .modalContainer .content .modalHeader {
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 0.7em;
	margin-bottom: 1em;
}

.modalAkpe .modalContainer .content .modalHeader h3 {
	font-size: clamp(0.85rem, 1.5vw, 1rem);
	font-weight: 600;
}

.modalAkpe .modalContainer .content .modalHeader small {
	font-size: clamp(0.68rem, 1.5vw, 0.74rem);
	color: #9c9c9c;
}

/* Legacy form inputs (donate page) */
.input__group {
	display: flex;
	flex-direction: column;
	margin-bottom: 14px;
}

.input__group label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 5px;
	color: #555;
}

.input__group .form__input {
	height: 42px;
	padding: 0 14px;
	width: 100% !important;
	border: 1px solid #d4d4d4;
	border-radius: 8px;
	background-color: #fff;
	color: #080808;
	font-size: 14px;
	font-family: "DM Sans", sans-serif;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.input__group .form__input:focus {
	border-color: #4ec081;
	box-shadow: 0 0 0 3px rgba(78, 192, 129, 0.1);
}

.input__group .form__input::placeholder {
	color: #aaa;
	font-size: 13px;
}

.input__group textarea.form__input {
	height: 100px;
	padding: 12px 14px;
}

.inputContainer {
	display: flex;
	gap: 12px;
}

@media (max-width: 518px) {
	.inputContainer {
		flex-direction: column;
		gap: 0;
	}
}

.inputContainer .input__group {
	flex: 1;
}

/* Legacy submit button (donate page) */
.submitBtn {
	width: 100%;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	border: 2px solid #080808;
	background-color: #080808;
	color: #fff;
	border-radius: 8px;
	margin-top: 12px;
	transition: all 0.25s ease;
	font-family: "DM Sans", sans-serif;
}

.submitBtn:hover {
	background-color: transparent;
	color: #080808;
}

/* Spinner */
.spinner {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-left: 8px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.spinner::before,
.spinner::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 3px solid transparent;
	border-radius: 50%;
	animation: spin var(--duration) var(--timing) infinite;
}

.spinner::before {
	border-top-color: #fff;
	--duration: 1s;
	--timing: ease-in;
}

.spinner::after {
	border-bottom-color: #4ec081;
	--duration: 1.5s;
	--timing: ease-in-out;
}

@keyframes spin {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Radio buttons for payment type */
.radio-input input {
	display: none;
}

.radio-input {
	--container_width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	background-color: #f5f5f5;
	color: #000;
	width: var(--container_width);
	overflow: hidden;
	border: 1px solid #e0dcda;
	border-radius: 10px;
}

.radio-input label {
	width: 100%;
	padding: 8px 14px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	font-weight: 600;
	font-size: 12px;
	color: #464646;
}

.selection {
	display: none;
	position: absolute;
	height: 100%;
	width: calc(var(--container_width) / 2);
	z-index: 0;
	left: 0;
	top: 0;
	transition: 0.15s ease;
	border: 2px solid white;
	border-radius: 10px;
}

.radio-input label:has(input:checked) {
	color: #247732;
}
.radio-input label:has(input:checked) ~ .selection {
	background-color: #d8eddd;
	display: inline-block;
}
.radio-input label:nth-child(1):has(input:checked) ~ .selection {
	transform: translateX(0%);
}
.radio-input label:nth-child(2):has(input:checked) ~ .selection {
	transform: translateX(100%);
}

/* Custom button on dark backgrounds */
.custom-button--on-dark {
	border-color: #fefdfb;
	color: #fefdfb;
}
.custom-button--on-dark:hover {
	background-color: #4ec081;
	border-color: #4ec081;
	color: #fefdfb;
}

/* Highlight modifier (base .highlight in tailwind.css @layer) */
.highlight {
	color: #4ec081 !important;
}
.highlight.mod {
	color: white;
	text-decoration: underline;
}

/* Notification */
.notification {
	border: 3px dotted #fff;
	background-color: rgba(168, 233, 168, 0.281);
	display: grid;
	place-items: center;
	font-size: 14px;
	font-weight: 600;
	color: rgb(80, 136, 87);
	height: 0;
	opacity: 0;
	scale: 0.5;
	transition: all 0.5s;
}

.notification.show {
	scale: 1;
	height: 50px;
	opacity: 1;
}

/* Payment section */
.payment-section {
	display: flex;
	flex-direction: column;
	gap: 0.15em;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	padding: 0.75em;
	font-size: 0.8rem;
}

.payment-section .dets {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.payment-section .dets p {
	font-size: 13px;
	font-weight: 300;
	color: rgb(128, 128, 128);
}

.payment-section .dets h3 .info {
	font-size: 15px;
	font-weight: 500;
	color: rgb(24, 24, 24);
}

.payment-section .dets h3 .depo {
	font-size: 16px;
	font-weight: 600;
	color: #4ec081;
}

.payment-section .dets.mod p {
	font-weight: 500;
	color: #4ec081;
}
.payment-section .dets.mod h3 span {
	color: #4ec081;
}
.payment-section .dets.mod h3 .info {
	font-size: 16px;
	font-weight: 600;
	color: #4ec081;
}

/* Room description box */
.roomDesc {
	width: 100%;
	border: 1px dashed #4ec081;
	padding: 1em;
}

.roomDesc.mod {
	background-color: #d8eddd;
	border: none;
}

/* Room details grid */
.roomDetailsContainer {
	width: 100%;
	border-top: 1px solid #cecece;
	border-bottom: 1px solid #cecece;
	margin-top: 15px;
	display: grid;
	padding-block: 2em;
	gap: 2em;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 518px) {
	.roomDetailsContainer {
		grid-template-columns: 1fr;
	}
}

.roomDetailsContainer .innerCard {
	display: flex;
	gap: 0.8em;
}

.roomDetailsContainer .innerCard svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

/* Book container */
.bookContainer {
	width: 100%;
	background-color: #fff;
	padding: 1.5em;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.bookContainer .price {
	display: flex;
	align-items: center;
	gap: 5px;
}

.bookContainer .price h3 {
	font-size: clamp(1rem, 1.5vw, 1.4rem);
	font-weight: 700;
}

.bookContainer .price span {
	font-size: 14px;
	font-weight: 300;
	color: rgb(128, 128, 128);
}

.bookContainer .bookBtn {
	width: 100%;
	height: 70px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #080808;
	background-color: #4ec081;
	border: 2px solid transparent;
	cursor: pointer;
	transition: 0.25s ease;
	font-family: "DM Sans", sans-serif;
}

.bookContainer .bookBtn:hover {
	background-color: transparent;
	border-color: #4ec081;
	color: #4ec081;
}

/* Cancel policy button */
.cancelPolicyBtn {
	display: block;
	margin-top: 15px;
	background: none;
	border: none;
	font-size: 14px;
	font-weight: 600;
	color: #4ec081;
	cursor: pointer;
	text-decoration: underline;
	font-family: "DM Sans", sans-serif;
}

/* Sticky sidebar for room details */
.sticky {
	align-self: flex-start;
	position: sticky;
	top: 130px;
	z-index: 1;
}

@media (max-width: 950px) {
	.sticky {
		position: relative;
		top: 0;
	}
}

/* Checkbox modifier */
.input__group.mod {
	flex-direction: row;
	align-items: center;
}

.input__group.mod > input[type="checkbox"] {
	accent-color: #4ec081;
	margin: 0;
}

.input__group.mod > label {
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	margin: 0;
	margin-left: 6px;
}

/* ================================================================
   Dining Page — Tabbed Menu Widget
   ================================================================ */

.dining-figure {
	position: sticky;
	top: 120px;
}

.dining-figure img {
	width: 100%;
	height: auto;
	display: block;
}

.dining-side h2 {
	margin-bottom: 18px;
}

.dining-side > p {
	margin-bottom: 32px;
}

.dining-tabs {
	margin-top: 10px;
}

.dining-tabs__nav {
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	border-bottom: 1px solid #e6e1d8;
}

.dining-tabs__nav li {
	margin: 0;
	padding: 0;
}

.dining-tabs__link {
	background: none;
	border: none;
	padding: 14px 22px;
	margin: 0;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #888;
	cursor: pointer;
	position: relative;
	transition: color 0.25s ease;
}

.dining-tabs__link::after {
	content: "";
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: -1px;
	height: 2px;
	background: #4ec081;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease;
}

.dining-tabs__link:hover {
	color: #080808;
}

.dining-tabs__link.is-active {
	color: #080808;
}

.dining-tabs__link.is-active::after {
	transform: scaleX(1);
}

/* Stack all panels in the same grid cell so the container's height equals
   the tallest panel — switching tabs never changes the section height,
   which keeps locomotive-scroll's virtual-scroll bounds in sync. */
.dining-tabs__panels {
	display: grid;
	grid-template-columns: 1fr;
}

.dining-tab-panel {
	grid-column: 1;
	grid-row: 1;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

/* The `hidden` attribute would collapse the panel — force it back to take space. */
.dining-tab-panel[hidden] {
	display: block;
}

.dining-tab-panel.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.dining-menu-item {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 16px;
	padding: 18px 0;
	border-bottom: 1px dashed #e6e1d8;
}

.dining-menu-item__img {
	width: 50px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
}

.dining-menu-item__img img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.dining-menu-item:last-child {
	border-bottom: none;
}

.dining-menu-item__text strong {
	display: block;
	font-family: "Eczar", serif;
	font-size: 18px;
	font-weight: 600;
	color: #080808;
	margin-bottom: 4px;
}

.dining-menu-item__text p {
	margin: 0;
	font-size: 14px;
	color: #6b6b6b;
	line-height: 1.5;
}

@media (max-width: 991px) {
	.dining-figure {
		position: static;
		margin-bottom: 30px;
	}

	.dining-tabs__nav {
		gap: 0;
	}

	.dining-tabs__link {
		padding: 12px 14px;
		font-size: 12px;
		letter-spacing: 0.08em;
	}

	.dining-tabs__link::after {
		left: 14px;
		right: 14px;
	}
}

/* ================================================================
   Full-width Tabs — shared by Travel Packages itinerary
   and Culture/Learning/Adventure excursions
   ================================================================ */

.itinerary-tabs,
.excursion-tabs {
	margin-top: 20px;
}

.itinerary-tabs__nav,
.excursion-tabs__nav {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	border-bottom: 1px solid #e6e1d8;
}

.itinerary-tabs__nav li,
.excursion-tabs__nav li {
	margin: 0;
	padding: 0;
}

.itinerary-tabs__link,
.excursion-tabs__link {
	background: none;
	border: none;
	padding: 16px 28px;
	margin: 0;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #888;
	cursor: pointer;
	position: relative;
	transition: color 0.25s ease;
}

.itinerary-tabs__link::after,
.excursion-tabs__link::after {
	content: "";
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: -1px;
	height: 2px;
	background: #4ec081;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.itinerary-tabs__link:hover,
.excursion-tabs__link:hover {
	color: #080808;
}

.itinerary-tabs__link.is-active,
.excursion-tabs__link.is-active {
	color: #080808;
}

.itinerary-tabs__link.is-active::after,
.excursion-tabs__link.is-active::after {
	transform: scaleX(1);
}

/* Stack all panels in the same grid cell — see dining-tabs comment above. */
.itinerary-tabs__panels,
.excursion-tabs__panels {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 820px;
	margin: 0 auto;
}

.itinerary-tab-panel,
.excursion-tab-panel {
	grid-column: 1;
	grid-row: 1;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.itinerary-tab-panel[hidden],
.excursion-tab-panel[hidden] {
	display: block;
}

.itinerary-tab-panel.is-active,
.excursion-tab-panel.is-active {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.itinerary-panel__subtitle {
	display: inline-block;
	font-family: "DM Sans", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #4ec081;
	background: rgba(78, 192, 129, 0.08);
	padding: 6px 14px;
	margin: 0 0 24px;
	border-radius: 2px;
}

.itinerary-item {
	display: flex;
	align-items: flex-start;
	gap: 28px;
	padding: 16px 0;
	border-bottom: 1px dashed #e6e1d8;
}

.itinerary-item:last-child {
	border-bottom: none;
}

.itinerary-item__time {
	flex: 0 0 110px;
	font-family: "DM Sans", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #080808;
	padding-top: 2px;
}

.itinerary-item__activity {
	flex: 1;
	margin: 0;
	font-size: 16px;
	color: #444;
	line-height: 1.6;
}

@media (max-width: 767px) {
	.itinerary-tabs__nav,
	.excursion-tabs__nav {
		justify-content: flex-start;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.itinerary-tabs__link,
	.excursion-tabs__link {
		padding: 14px 18px;
		font-size: 12px;
		letter-spacing: 0.1em;
		white-space: nowrap;
	}

	.itinerary-tabs__link::after,
	.excursion-tabs__link::after {
		left: 18px;
		right: 18px;
	}

	.itinerary-item {
		flex-direction: column;
		gap: 4px;
	}

	.itinerary-item__time {
		flex: none;
		color: #4ec081;
	}
}

/* ================================================================
   Room Detail Page — Airbnb-style (minimal, Tailwind handles the rest)
   ================================================================ */

/* Gallery: hide overflow images beyond 4th — still in DOM for Fancybox */
.airbnb-gallery-grid a:nth-child(n + 5) {
	display: none;
}

/* Gallery: hover zoom on images */
.airbnb-gallery-hero:hover img,
.airbnb-gallery-thumb:hover img {
	transform: scale(1.03);
}

/* Details: strip existing roomDetailsContainer borders (dividers via Tailwind) */
.details .roomDetailsContainer {
	border-top: none;
	border-bottom: none;
	margin-top: 0;
	padding-block: 0;
}

/* Details: booking card Airbnb shadow */
.details .bookContainer {
	border: 1px solid #dddddd;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.details .bookContainer button {
	border-radius: 8px;
	height: 52px;
	text-transform: none;
	letter-spacing: 0;
	font-size: 16px;
	font-weight: 600;
}

.details .bookContainer button:hover {
	background-color: #42a36e;
	border-color: transparent;
	color: #fff;
}

/* Mobile gallery: hide grid, show only hero */
@media (max-width: 950px) {
	.airbnb-gallery-grid {
		display: none;
	}
}
