/* ==========================================================================
   SavannaLux Package Details & Booking — Frontend Styles
   Developed by SavannaLux Adventures
   ========================================================================== */

/* --------------------------------------------------------------------------
   Brand palette — sampled directly from the SavannaLux Adventures logo
   (black, gold ring/wordmark, cream/white background). Change these once
   here and every component below updates automatically.
   -------------------------------------------------------------------------- */

:root {
	--slpd-black:        #0d0d0d; /* Logo silhouette / wordmark black */
	--slpd-black-soft:   #1a1a1a; /* Slightly softer black for large surfaces */
	--slpd-gold:         #af791c; /* Primary gold — k-means sampled from the ring's dominant tone */
	--slpd-gold-light:   #d5a445; /* Lighter gold highlight, sampled from the logo */
	--slpd-cream:        #f8f4ec; /* Off-white background, matches logo backdrop */
	--slpd-border:       #f3eadc; /* Gold-tinted neutral for borders (replaces generic grey) */
	--slpd-hover-tint:   #ebddc6; /* Gold-tinted neutral for hover backgrounds */
	--slpd-white:        #ffffff;
	--slpd-text:         #262220; /* Warm charcoal, ties into the gold/black palette */
	--slpd-text-muted:   #7a6a4d; /* Warm muted brown-gold for secondary text */
}

/* --------------------------------------------------------------------------
   Tabs widget shell
   -------------------------------------------------------------------------- */

.slpd-tabs-widget {
	display: flex;
	gap: 28px;
	width: 100%;
	box-sizing: border-box;
}

@media (max-width: 700px) {
	.slpd-tabs-widget {
		flex-direction: column;
	}
}

.slpd-tabs-nav {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex-shrink: 0;
	width: 180px;
}

@media (max-width: 700px) {
	.slpd-tabs-nav {
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
	}
}

.slpd-tab-btn {
	text-align: left;
	background: var(--slpd-cream);
	border: 1px solid transparent;
	color: var(--slpd-text);
	font-family: 'Poppins', sans-serif;
	font-size: 0.9em;
	font-weight: 600;
	padding: 12px 16px;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.slpd-tab-btn:hover {
	background: var(--slpd-hover-tint);
	transform: translateX(2px);
}

.slpd-tab-btn.is-active {
	background: var(--slpd-black);
	border-color: var(--slpd-black);
	color: var(--slpd-white);
}

.slpd-tabs-panels {
	flex: 1;
	min-width: 0;
}

.slpd-tab-panel {
	display: none;
}

.slpd-tab-panel.is-active {
	display: block;
	animation: slpd-fade-in 0.4s ease;
}

@keyframes slpd-fade-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.slpd-tab-panel.is-active {
		animation: none;
	}
}

.slpd-empty-tab {
	color: var(--slpd-text-muted);
	font-style: italic;
}

/* --------------------------------------------------------------------------
   Stacked content sections (Highlights, Gallery, Itinerary, Inclusions,
   Exclusions, Things To Do, FAQs, Reviews) — the left column of the
   single package layout. Each section flows continuously rather than
   being tab-switched.
   -------------------------------------------------------------------------- */

.slpd-content-stack {
	display: flex;
	flex-direction: column;
}

.slpd-stack-section {
	padding: 32px 0;
	border-bottom: 1px solid var(--slpd-border);
}

.slpd-stack-section:first-child {
	padding-top: 0;
}

.slpd-stack-section:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

/* --------------------------------------------------------------------------
   Itinerary timeline (tab content)
   -------------------------------------------------------------------------- */

.slpd-itinerary-timeline {
	position: relative;
}

.slpd-itinerary-day {
	position: relative;
	display: flex;
	gap: 18px;
	padding: 16px 0;
}

.slpd-itinerary-day:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 56px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--slpd-border), transparent);
}

.slpd-itinerary-day-marker {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--slpd-gold);
	color: var(--slpd-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.slpd-itinerary-day-content h3 {
	margin: 4px 0 6px;
	font-size: 1.05em;
	font-weight: 700;
	color: var(--slpd-black);
}

.slpd-itinerary-day-content p {
	margin: 0;
	font-size: 0.94em;
	line-height: 1.6;
	color: var(--slpd-text);
}

/* --------------------------------------------------------------------------
   Gallery (tab content)
   -------------------------------------------------------------------------- */

.slpd-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

@media (max-width: 500px) {
	.slpd-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.slpd-gallery-img-link {
	display: block;
	aspect-ratio: 1/1;
	overflow: hidden;
	border-radius: 8px;
}

.slpd-gallery-img-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.slpd-gallery-img-link:hover img {
	transform: scale(1.06);
}

/* Lightbox overlay */

.slpd-lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	padding: 30px;
	box-sizing: border-box;
}

.slpd-lightbox-overlay img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.slpd-lightbox-close {
	position: absolute;
	top: 20px;
	right: 26px;
	color: var(--slpd-white);
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	background: none;
	border: none;
}

/* --------------------------------------------------------------------------
   FAQs accordion (tab content)
   -------------------------------------------------------------------------- */

.slpd-faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.slpd-faq-item {
	border: 1px solid var(--slpd-border);
	border-radius: 8px;
	overflow: hidden;
}

.slpd-faq-question {
	width: 100%;
	text-align: left;
	background: var(--slpd-cream);
	border: none;
	padding: 14px 16px;
	font-size: 0.95em;
	font-weight: 600;
	color: var(--slpd-black);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.slpd-faq-icon {
	font-size: 1.2em;
	transition: transform 0.2s ease;
}

.slpd-faq-item.is-open .slpd-faq-icon {
	transform: rotate(45deg);
}

.slpd-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
	background: var(--slpd-white);
}

.slpd-faq-item.is-open .slpd-faq-answer {
	max-height: 600px;
}

.slpd-faq-answer p {
	margin: 0;
	padding: 14px 16px;
	font-size: 0.92em;
	line-height: 1.6;
	color: var(--slpd-text);
}

/* --------------------------------------------------------------------------
   Reviews (tab content)
   -------------------------------------------------------------------------- */

.slpd-reviews-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 26px;
}

.slpd-review-item {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--slpd-border);
}

.slpd-review-stars {
	margin-bottom: 6px;
}

.slpd-star {
	color: var(--slpd-border);
	font-size: 1em;
}

.slpd-star.is-filled {
	color: var(--slpd-gold);
}

.slpd-review-comment {
	margin: 0 0 8px;
	font-size: 0.94em;
	line-height: 1.6;
	color: var(--slpd-text);
}

.slpd-review-author {
	margin: 0;
	font-size: 0.85em;
	font-weight: 600;
	color: var(--slpd-text-muted);
}

.slpd-review-date {
	font-weight: 400;
	color: var(--slpd-text-muted);
	margin-left: 6px;
}

.slpd-review-form-wrap {
	padding-top: 16px;
	border-top: 1px solid var(--slpd-border);
}

.slpd-review-form-wrap h4 {
	margin: 0 0 12px;
	font-size: 1em;
	font-weight: 700;
	color: var(--slpd-black);
}

.slpd-review-stars-input {
	display: flex;
	flex-direction: row-reverse;
	gap: 4px;
	margin-bottom: 14px;
	width: fit-content;
}

.slpd-review-stars-input input {
	display: none;
}

.slpd-review-stars-input label {
	font-size: 1.6em;
	color: var(--slpd-border);
	cursor: pointer;
	transition: color 0.15s ease;
}

.slpd-review-stars-input input:checked ~ label,
.slpd-review-stars-input label:hover,
.slpd-review-stars-input label:hover ~ label {
	color: var(--slpd-gold);
}

.slpd-submit-review-btn {
	background: var(--slpd-black);
	color: var(--slpd-white);
	border: none;
	padding: 10px 22px;
	border-radius: 6px;
	font-size: 0.9em;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.slpd-submit-review-btn:hover {
	opacity: 1;
	background: var(--slpd-gold-light);
}

.slpd-submit-review-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   Booking form widget
   -------------------------------------------------------------------------- */

.slpd-booking-form-widget {
	background: var(--slpd-cream);
	border-radius: 14px;
	padding: 28px;
	box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.3s ease;
	scroll-margin-top: 24px;
}

.slpd-booking-form-widget:hover {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.slpd-booking-form-title {
	margin: 0 0 6px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.25em;
	font-weight: 700;
	color: var(--slpd-black);
}

.slpd-booking-package-name {
	margin: 0 0 20px;
	font-size: 0.92em;
	color: var(--slpd-text-muted);
}

.slpd-date-row {
	display: flex;
	gap: 14px;
}

.slpd-date-row > div {
	flex: 1;
	min-width: 0;
}

@media (max-width: 380px) {
	.slpd-date-row {
		flex-direction: column;
		gap: 0;
	}
}

.slpd-booking-form p {
	margin: 0 0 14px;
}

.slpd-booking-form label {
	display: block;
	font-size: 0.86em;
	font-weight: 600;
	color: var(--slpd-text);
	margin-bottom: 5px;
}

.slpd-required {
	color: #a23b3b;
}

.slpd-input {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 14px;
	border: 1px solid var(--slpd-border);
	border-radius: 7px;
	font-size: 0.93em;
	background: var(--slpd-white);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.slpd-input:focus {
	outline: none;
	border-color: var(--slpd-gold);
	box-shadow: 0 0 0 3px rgba(175, 121, 28, 0.15);
}

.slpd-input.slpd-input-error {
	border-color: #a23b3b;
	box-shadow: 0 0 0 3px rgba(162, 59, 59, 0.12);
}

textarea.slpd-input {
	resize: vertical;
}

.slpd-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.slpd-booking-submit-btn {
	width: 100%;
	background: var(--slpd-gold);
	color: var(--slpd-white);
	border: none;
	padding: 14px 20px;
	border-radius: 8px;
	font-family: 'Poppins', sans-serif;
	font-size: 1em;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.slpd-booking-submit-btn:hover {
	background: var(--slpd-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(175, 121, 28, 0.35);
}

.slpd-booking-submit-btn:active {
	transform: translateY(0);
}

.slpd-booking-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.slpd-booking-form-message {
	margin: 10px 0 0;
	font-size: 0.88em;
	font-weight: 600;
	min-height: 1.2em;
}

.slpd-booking-form-message.is-success {
	color: #2f7a4f;
}

.slpd-booking-form-message.is-error {
	color: #a23b3b;
}

.slpd-review-form-message.is-success {
	color: #2f7a4f;
	font-weight: 600;
}

.slpd-review-form-message.is-error {
	color: #a23b3b;
	font-weight: 600;
}


/* ==========================================================================
   Auto-generated Package Detail Page layout (v2)
   ========================================================================== */

/* ── Page wrapper ─────────────────────────────────────────────────────────── */

.slpd-page-wrap {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

/* Scroll-reveal: sections start slightly lower and faded; JS adds
   .is-visible via IntersectionObserver as each scrolls into view. */
.slpd-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.slpd-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.slpd-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ── Hero banner ──────────────────────────────────────────────────────────── */

.slpd-hero {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: flex-end;
	background-color: var(--slpd-black);
	overflow: hidden;
}

@media (max-width: 700px) {
	.slpd-hero {
		min-height: 340px;
	}
}

/* Animated "Ken Burns" background layer — slow continuous zoom + drift,
   kept on its own element so the transform doesn't fight with
   background-position and stays smooth (GPU-accelerated). Starts already
   slightly scaled so there's never an empty edge, and the swing is large
   enough (1.06 → 1.22) to actually read as movement rather than a static
   image, even on a big hero. */
.slpd-hero-bg {
	position: absolute;
	inset: -10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	animation: slpd-ken-burns 14s ease-in-out infinite alternate;
	will-change: transform;
	transform-origin: center;
}

@keyframes slpd-ken-burns {
	0% {
		transform: scale(1.06) translate(0, 0);
	}
	100% {
		transform: scale(1.22) translate(-3%, -2%);
	}
}

/* Respect users who've asked for reduced motion. */
@media (prefers-reduced-motion: reduce) {
	.slpd-hero-bg {
		animation: none;
		transform: scale(1.06);
	}
}

.slpd-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.72) 100%);
}

.slpd-hero-content {
	position: relative;
	z-index: 1;
	padding: 40px 48px;
	color: var(--slpd-white);
	max-width: 820px;
	animation: slpd-fade-in-up 0.9s ease both;
}

@keyframes slpd-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.slpd-hero-content {
		animation: none;
	}
}

@media (max-width: 700px) {
	.slpd-hero-content {
		padding: 24px 20px;
	}
}

.slpd-hero-badge {
	display: inline-block;
	background: var(--slpd-gold);
	color: var(--slpd-white);
	font-family: 'Poppins', sans-serif;
	font-size: 0.76em;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 13px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.slpd-hero-destination {
	margin: 0 0 6px;
	font-family: 'Poppins', sans-serif;
	font-size: 0.84em;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--slpd-gold-light);
}

.slpd-hero-title {
	margin: 0 0 10px;
	font-family: 'Poppins', sans-serif;
	font-size: clamp(1.5em, 2.6vw, 2.15em);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--slpd-white);
}

.slpd-hero-tagline {
	margin: 0 0 18px;
	padding-top: 12px;
	border-top: 1px solid rgba(255,255,255,0.25);
	font-family: 'Poppins', sans-serif;
	font-size: 1.02em;
	font-weight: 300;
	letter-spacing: 0.01em;
	color: rgba(255,255,255,0.88);
	line-height: 1.6;
	max-width: 620px;
}

.slpd-hero-meta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	align-items: center;
}

.slpd-hero-price {
	background: rgba(255,255,255,0.18);
	border: 1px solid rgba(255,255,255,0.35);
	color: var(--slpd-white);
	font-size: 0.95em;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 6px;
	backdrop-filter: blur(4px);
}

.slpd-hero-duration {
	font-size: 0.9em;
	opacity: 0.85;
	font-weight: 600;
}

.slpd-rating-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(255,255,255,0.18);
	border: 1px solid rgba(255,255,255,0.35);
	color: var(--slpd-white);
	font-size: 0.9em;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 6px;
	backdrop-filter: blur(4px);
}

.slpd-rating-star {
	color: var(--slpd-gold-light);
}

.slpd-rating-count {
	font-weight: 400;
	opacity: 0.85;
	font-size: 0.92em;
}

.slpd-hero-book-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
	background: var(--slpd-gold);
	color: var(--slpd-white);
	font-family: 'Poppins', sans-serif;
	font-size: 0.98em;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 8px;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.slpd-hero-book-btn::after {
	content: '→';
	transition: transform 0.2s ease;
}

.slpd-hero-book-btn:hover {
	background: var(--slpd-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(175, 121, 28, 0.4);
}

.slpd-hero-book-btn:hover::after {
	transform: translateX(3px);
}

@media (max-width: 700px) {
	.slpd-hero-book-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ── Breadcrumb ────────────────────────────────────────────────────────────── */

.slpd-breadcrumb {
	padding: 14px 48px;
	font-family: 'Poppins', sans-serif;
	font-size: 0.85em;
	color: var(--slpd-text-muted);
}

@media (max-width: 700px) {
	.slpd-breadcrumb {
		padding: 12px 20px;
	}
}

.slpd-breadcrumb a {
	color: var(--slpd-text-muted);
	text-decoration: none;
	transition: color 0.15s ease;
}

.slpd-breadcrumb a:hover {
	color: var(--slpd-gold);
}

.slpd-breadcrumb-sep {
	margin: 0 8px;
	opacity: 0.5;
}

.slpd-breadcrumb-current {
	color: var(--slpd-black);
	font-weight: 600;
}

/* ── Overview text (used inside a stacked section) ────────────────────────── */

.slpd-overview-text {
	margin: 0;
	font-size: 1em;
	line-height: 1.75;
	color: var(--slpd-text);
}

/* ── Trip info grid (Duration / Email / Transport) ────────────────────────── */

.slpd-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1px;
	background: var(--slpd-border);
	border-top: 1px solid var(--slpd-border);
	border-bottom: 1px solid var(--slpd-border);
}

.slpd-info-box {
	background: var(--slpd-white);
	padding: 22px 28px;
	display: flex;
	align-items: center;
	gap: 14px;
	transition: background 0.25s ease;
}

.slpd-info-box:hover {
	background: var(--slpd-cream);
}

.slpd-info-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--slpd-black);
	color: var(--slpd-gold-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1em;
}

.slpd-info-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.slpd-info-label {
	font-family: 'Poppins', sans-serif;
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--slpd-text-muted);
	margin-bottom: 2px;
}

.slpd-info-value {
	font-family: 'Poppins', sans-serif;
	font-size: 0.95em;
	font-weight: 600;
	color: var(--slpd-black);
	text-decoration: none;
	overflow-wrap: anywhere;
}

a.slpd-info-value:hover {
	color: var(--slpd-gold);
}

/* ── Highlights ────────────────────────────────────────────────────────────── */

.slpd-section-heading {
	font-family: 'Poppins', sans-serif;
	font-size: 1.4em;
	font-weight: 700;
	color: var(--slpd-black);
	margin: 0 0 18px;
}

.slpd-section-heading.slpd-centered {
	text-align: center;
}

.slpd-highlights-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 12px 24px;
}

.slpd-highlights-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.96em;
	line-height: 1.55;
	color: var(--slpd-text);
}

.slpd-check-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--slpd-gold);
	color: var(--slpd-white);
	font-size: 0.72em;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

/* ── Inclusions / Exclusions checklist (inside tab) ───────────────────────── */

.slpd-inclusions-exclusions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
}

.slpd-checklist-heading {
	font-family: 'Poppins', sans-serif;
	font-size: 1.02em;
	font-weight: 700;
	margin: 0 0 14px;
}

.slpd-checklist-heading.is-included {
	color: var(--slpd-black);
}

.slpd-checklist-heading.is-excluded {
	color: var(--slpd-text-muted);
}

.slpd-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.slpd-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.94em;
	line-height: 1.5;
	color: var(--slpd-text);
}

.slpd-checklist.is-excluded li {
	color: var(--slpd-text-muted);
}

.slpd-cross-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--slpd-border);
	color: var(--slpd-text-muted);
	font-size: 0.66em;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

/* ── Things To Do (inside tab) ────────────────────────────────────────────── */

.slpd-things-to-do-intro {
	margin: 0 0 16px;
	color: var(--slpd-text-muted);
	font-size: 0.92em;
}

.slpd-things-to-do-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 10px 24px;
}

.slpd-things-to-do-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.94em;
	line-height: 1.5;
	color: var(--slpd-text);
}

.slpd-bullet-icon {
	flex-shrink: 0;
	color: var(--slpd-gold);
	font-size: 0.6em;
	margin-top: 6px;
}

/* ── CTA banner ────────────────────────────────────────────────────────────── */

.slpd-cta {
	background: var(--slpd-black);
	background-image: radial-gradient(circle at 20% 20%, rgba(175,121,28,0.25), transparent 55%),
		radial-gradient(circle at 80% 80%, rgba(213,164,69,0.18), transparent 50%);
	padding: 64px 48px;
	text-align: center;
}

@media (max-width: 700px) {
	.slpd-cta {
		padding: 44px 20px;
	}
}

.slpd-cta-inner {
	max-width: 640px;
	margin: 0 auto;
}

.slpd-cta-heading {
	margin: 0 0 12px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.9em;
	font-weight: 700;
	color: var(--slpd-white);
}

.slpd-cta-text {
	margin: 0 0 28px;
	color: rgba(255,255,255,0.78);
	font-size: 1.02em;
	line-height: 1.6;
}

.slpd-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.slpd-cta-btn {
	display: inline-flex;
	align-items: center;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 0.98em;
	text-decoration: none;
	padding: 14px 30px;
	border-radius: 8px;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.slpd-cta-btn-primary {
	background: var(--slpd-gold);
	color: var(--slpd-white);
}

.slpd-cta-btn-primary:hover {
	background: var(--slpd-gold-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(175, 121, 28, 0.4);
}

.slpd-cta-btn-secondary {
	background: transparent;
	color: var(--slpd-white);
	border: 1px solid rgba(255,255,255,0.4);
}

.slpd-cta-btn-secondary:hover {
	background: rgba(255,255,255,0.1);
	transform: translateY(-2px);
}

/* ── Related packages ─────────────────────────────────────────────────────── */

.slpd-related-packages {
	padding: 56px 48px;
	background: var(--slpd-cream);
	border-top: 1px solid var(--slpd-border);
}

@media (max-width: 700px) {
	.slpd-related-packages {
		padding: 36px 20px;
	}
}

.slpd-related-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.slpd-related-card {
	display: block;
	background: var(--slpd-white);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slpd-related-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.slpd-related-card-image {
	height: 170px;
	background-size: cover;
	background-position: center;
	background-color: var(--slpd-border);
	transition: transform 0.5s ease;
}

.slpd-related-card:hover .slpd-related-card-image {
	transform: scale(1.06);
}

.slpd-related-card-body {
	padding: 16px 18px 20px;
}

.slpd-related-card-body h3 {
	margin: 0 0 6px;
	font-family: 'Poppins', sans-serif;
	font-size: 1.05em;
	font-weight: 700;
	color: var(--slpd-black);
}

.slpd-related-card-duration {
	margin: 0 0 8px;
	font-size: 0.82em;
	color: var(--slpd-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.slpd-related-card-price {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color: var(--slpd-gold);
}

/* ── Main content: tabs + booking sidebar ─────────────────────────────────── */

.slpd-main-content {
	display: flex;
	gap: 36px;
	padding: 48px;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

@media (max-width: 900px) {
	.slpd-main-content {
		flex-direction: column;
		padding: 24px 20px;
	}
}

.slpd-tabs-col {
	flex: 1;
	min-width: 0;
}

.slpd-booking-col {
	flex-shrink: 0;
	width: 320px;
	position: sticky;
	top: 24px;
}

@media (max-width: 900px) {
	.slpd-booking-col {
		width: 100%;
		position: static;
	}
}

/* ── Booking card image ───────────────────────────────────────────────────── */

.slpd-booking-card-image {
	margin: -28px -28px 20px;
	border-radius: 14px 14px 0 0;
	overflow: hidden;
	height: 180px;
}

.slpd-booking-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.slpd-booking-card-image:hover img {
	transform: scale(1.08);
}

/* ── Booking summary (price + duration pill row) ──────────────────────────── */

.slpd-booking-summary {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 12px;
}

.slpd-booking-price {
	font-size: 1em;
	font-weight: 800;
	color: var(--slpd-gold);
}

.slpd-booking-duration {
	font-size: 0.85em;
	color: var(--slpd-text-muted);
	font-weight: 600;
}
