/* =====================================================================
   SAVANNALUX HEADER ENHANCEMENTS — v2
   Targets Hello Elementor's default header:
       <header id="site-header" class="site-header">
         <div class="site-branding">...logo...</div>
         <nav class="site-navigation">...menu...</nav>
       </header>
   ===================================================================== */

:root {
	--slh-gold: #c9a24a;
	--slh-gold-hover: #b6903c;
	--slh-dark: #14110f;
	--slh-pink: #d6336c;
	--slh-topbar-offset: 76px; /* fallback; JS measures the real combined height */
}

* { box-sizing: border-box; }

/* ---------- 1. ANNOUNCEMENT BAR ---------- */
.slh-announcement {
	background: var(--slh-dark);
	color: #f4e9d8;
	font-size: 13px;
	position: relative;
	z-index: 1002;
}

.slh-announcement-inner {
	max-width: 1560px;
	margin: 0 auto;
	padding: 8px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.slh-announcement-track {
	position: relative;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.slh-announcement-msg {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease;
}

.slh-announcement-msg.is-active {
	opacity: 1;
	visibility: visible;
}

.slh-announcement a {
	color: var(--slh-gold);
	text-decoration: none;
}

.slh-announcement-close {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #f4e9d8;
	opacity: 0.6;
	cursor: pointer;
	width: 20px;
	height: 20px;
	padding: 0;
	transition: opacity 0.2s ease;
}

.slh-announcement-close:hover { opacity: 1; }
.slh-announcement-close svg { width: 100%; height: 100%; }
.slh-announcement.is-dismissed { display: none; }

/* ---------- 2. TOP BAR ---------- */
.slh-topbar {
	background: #1e1a17;
	color: #d9cfc4;
	font-size: 13px;
	position: relative;
	z-index: 1001;
	max-width: 1560px;
	margin: 0 auto;
	padding: 9px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.slh-topbar-left,
.slh-topbar-right {
	display: flex;
	align-items: center;
	gap: 22px;
}

.slh-topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #d9cfc4;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.slh-topbar-item:hover { color: var(--slh-gold); }

.slh-topbar-item svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: var(--slh-gold);
}

.slh-social {
	display: flex;
	align-items: center;
	gap: 14px;
}

.slh-social a {
	color: #d9cfc4;
	width: 16px;
	height: 16px;
	display: flex;
	transition: color 0.2s ease, transform 0.2s ease;
}

.slh-social a:hover {
	color: var(--slh-gold);
	transform: translateY(-1px);
}

.slh-social svg { width: 100%; height: 100%; }

.slh-divider {
	width: 1px;
	height: 16px;
	background: rgba(217, 207, 196, 0.25);
}

/* Dropdowns (language / currency) */
.slh-dropdown {
	position: relative;
}

.slh-dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	color: #d9cfc4;
	font-size: 13px;
	cursor: pointer;
	padding: 4px 2px;
}

.slh-dropdown-toggle svg:first-child {
	width: 14px;
	height: 14px;
	color: var(--slh-gold);
}

.slh-dropdown-toggle svg:last-child {
	width: 11px;
	height: 11px;
	transition: transform 0.2s ease;
}

.slh-dropdown.is-open .slh-dropdown-toggle svg:last-child {
	transform: rotate(180deg);
}

.slh-dropdown-menu {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	background: #ffffff;
	color: #1e1a17;
	list-style: none;
	margin: 0;
	padding: 6px;
	min-width: 110px;
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.slh-dropdown.is-open .slh-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.slh-dropdown-menu li a,
.slh-dropdown-menu li button {
	display: block;
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 8px 10px;
	font-size: 13px;
	color: #1e1a17;
	text-decoration: none;
	border-radius: 5px;
	cursor: pointer;
}

.slh-dropdown-menu li a:hover,
.slh-dropdown-menu li button:hover {
	background: #f4ede1;
}

.slh-dropdown-menu li a.is-current {
	color: var(--slh-gold-hover);
	font-weight: 700;
}

/* ---------- 3. MAIN HEADER — beautified ---------- */
#site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 24px;
	max-width: 1560px;
	margin: 0 auto;
	width: 100%;
	padding: 10px 40px;
	background: var(--slh-header-bg, #ffffff);
	position: relative;
	z-index: 900;
	transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-branding,
.site-branding a {
	display: flex;
	align-items: center;
}

.site-branding img,
.site-branding .custom-logo {
	max-height: 82px;
	width: auto;
	height: auto;
	transition: max-height 0.3s ease;
}

.site-navigation {
	display: flex;
	flex: 1 1 auto;
	justify-content: flex-end;
	align-items: center;
}

.site-navigation ul.menu,
.site-navigation ul {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-wrap: wrap;
}

.site-navigation ul.menu li,
.site-navigation ul li {
	margin: 0;
	position: relative;
}

/* Dropdown submenus (e.g. Destinations > Kenyan / Tanzania / Mauritius) */
.site-navigation .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #ffffff;
	min-width: 220px;
	margin: 0;
	padding: 8px;
	list-style: none;
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
	z-index: 999;
	flex-direction: column;
	gap: 0;
}

.site-navigation li.menu-item-has-children > a::before {
	content: '▾';
	display: inline-block;
	margin-left: 6px;
	font-size: 11px;
	transform: translateY(-1px);
}

.site-navigation li:hover > .sub-menu,
.site-navigation li:focus-within > .sub-menu {
	display: flex;
}

.site-navigation .sub-menu li {
	width: 100%;
}

.site-navigation .sub-menu li a {
	display: block;
	width: 100%;
	padding: 10px 14px;
	color: #1e1a17 !important;
	font-size: 14px;
}

.site-navigation .sub-menu li a::after {
	display: none;
}

.site-navigation .sub-menu li a:hover {
	background: #f4ede1;
}

/* On the mobile slide-in panel, submenus should stay in normal flow, not
   float as an absolute dropdown. */
@media (max-width: 900px) {
	.site-navigation .sub-menu {
		position: static;
		box-shadow: none;
		border-radius: 0;
		padding-left: 16px;
		display: none;
	}
	.site-navigation li.menu-item-has-children.slh-submenu-open > .sub-menu {
		display: flex;
	}
}

.site-navigation ul.menu li a,
.site-navigation ul li a {
	display: inline-block;
	padding: 10px 14px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.2px;
	text-decoration: none;
	position: relative;
	transition: color 0.2s ease;
}

/* Elegant underline hover animation */
.site-navigation ul.menu li a::after,
.site-navigation ul li a::after {
	content: '';
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 6px;
	height: 2px;
	background: var(--slh-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.site-navigation ul.menu li a:hover::after,
.site-navigation ul li a:hover::after {
	transform: scaleX(1);
}

/* CTA button */
.slh-cta-item {
	margin-left: 10px;
	list-style: none;
}

.slh-cta-item::after { display: none !important; content: none !important; }

.slh-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--slh-gold), var(--slh-gold-hover));
	color: #1e1a17 !important;
	font-weight: 700;
	text-decoration: none !important;
	padding: 12px 26px;
	border-radius: 999px;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(201, 162, 74, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slh-cta-button::after { display: none !important; }

.slh-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(201, 162, 74, 0.45);
}

/* ---------- 4. TRANSPARENT / OVERLAY HEADER — HOME PAGE ONLY ---------- */
/* Transparency-on-home was disabled per request — header now stays solid
   white on every page, including the home page, so the logo stays visible. */
.home #site-header {
	position: relative;
	background: var(--slh-header-bg, #ffffff);
}

/* NOTE: to bring the transparent-over-hero effect back later, restore the
   position:absolute + background:transparent + white-text rules here. */

.home #site-header.slh-scrolled {
	position: fixed;
	top: 0;
	background: var(--slh-header-bg, #ffffff);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding-top: 6px;
	padding-bottom: 6px;
}

/* Offset below the WP admin toolbar so it doesn't clip the sticky
   header — only relevant for logged-in users, who see that black bar. */
body.admin-bar .home #site-header.slh-scrolled {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .home #site-header.slh-scrolled {
		top: 46px;
	}
}

.home #site-header.slh-scrolled,
.home #site-header.slh-scrolled .site-title,
.home #site-header.slh-scrolled .site-description {
	color: #1e1a17;
}

.home #site-header.slh-scrolled .site-navigation ul.menu li a,
.home #site-header.slh-scrolled .site-navigation ul li a {
	color: #1e1a17;
}

.home #site-header.slh-scrolled .site-branding img,
.home #site-header.slh-scrolled .site-branding .custom-logo {
	max-height: 60px;
}

/* ---------- 5. MOBILE MENU ---------- */
.slh-mobile-toggle {
	display: none !important;
	background: none;
	border: none;
	width: 30px;
	height: 30px;
	padding: 0;
	cursor: pointer;
	color: inherit;
	position: relative;
	z-index: 950;
}

.slh-mobile-toggle svg { width: 100%; height: 100%; }
.slh-mobile-toggle-icon-close { display: none; }
.slh-mobile-toggle.is-active .slh-mobile-toggle-icon-open { display: none; }
.slh-mobile-toggle.is-active .slh-mobile-toggle-icon-close { display: block; }

@media (max-width: 900px) {
	.slh-topbar-left .slh-topbar-item:first-child { display: none; }

	#site-header { padding: 12px 20px; gap: 12px; }
	.slh-topbar, .slh-announcement-inner { padding-left: 20px; padding-right: 20px; }

	.slh-mobile-toggle { display: block !important; }

	#site-header .elementor-hidden-tablet,
	#site-header .elementor-hidden-mobile,
	#site-header [class*="elementor-hidden"] {
		display: flex !important;
	}

	.site-navigation {
		display: flex !important;
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		width: min(320px, 82vw);
		background: #ffffff;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 90px 28px 28px;
		transform: translateX(100%);
		transition: transform 0.35s ease;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
		z-index: 940;
	}

	.site-navigation.slh-nav-open {
		transform: translateX(0);
	}

	.site-navigation ul.menu,
	.site-navigation ul {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 2px;
	}

	.site-navigation ul.menu li,
	.site-navigation ul li {
		width: 100%;
	}

	.site-navigation ul.menu li a,
	.site-navigation ul li a,
	.home .site-navigation ul.menu li a,
	.home .site-navigation ul li a {
		width: 100%;
		padding: 14px 4px;
		color: #1e1a17 !important;
	}

	.slh-cta-item {
		margin-left: 0;
		margin-top: 12px;
		width: 100%;
	}

	.slh-cta-button {
		width: 100%;
		justify-content: center;
	}

	.slh-nav-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.4);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
		z-index: 930;
	}

	.slh-nav-overlay.is-visible {
		opacity: 1;
		visibility: visible;
	}
}

@media (max-width: 600px) {
	.slh-topbar-right .slh-social { display: none; }
	.slh-announcement-inner { font-size: 12px; }
}

/* ---------- 6. GOOGLE TRANSLATE — hide its own UI, we drive it with ours ---------- */
.goog-te-banner-frame,
.skiptranslate > iframe,
.goog-te-gadget,
.goog-te-gadget-icon,
select.goog-te-combo,
.goog-te-combo,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	width: 0 !important;
}
body {
	top: 0 !important;
	position: static !important;
}
#google_translate_element {
	display: none !important;
}

/* ---------- 7. CONVERTED PRICE SPANS ---------- */
.slh-price {
	white-space: nowrap;
}

/* ---------- 8. FOOTER ---------- */
.slh-footer {
	background: var(--slh-footer-bg, #1e1a17);
	color: var(--slh-footer-text, #d9cfc4);
	padding: 60px 40px 0;
	position: relative;
}

.slh-footer.slh-footer-has-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 0;
}

/* Breaks the footer out of Elementor's boxed container so it spans the
   full browser width. */
.slh-footer-full-width {
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.slh-footer-overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.slh-footer-inner {
	position: relative;
	z-index: 1;
}

.slh-footer.slh-footer-has-bg .slh-footer-inner {
	padding-top: 60px;
}

.slh-footer-columns {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	padding-bottom: 40px;
}

.slh-footer-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.slh-footer-logo {
	height: auto;
	margin-bottom: 4px;
}

.slh-footer-blurb {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--slh-footer-text, #d9cfc4);
	opacity: 0.9;
}

.slh-footer-heading {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	position: relative;
	padding-bottom: 12px;
}

.slh-footer-heading::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: var(--slh-footer-heading, #c9a24a);
}

.slh-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.slh-footer-links li {
	font-size: 14px;
	color: var(--slh-footer-text, #d9cfc4);
}

.slh-footer-links a {
	color: var(--slh-footer-text, #d9cfc4);
	text-decoration: none;
	transition: color 0.2s ease;
}

.slh-footer-links a:hover {
	color: var(--slh-footer-heading, #c9a24a);
}

.slh-footer-copyright {
	max-width: 1400px;
	margin: 0 auto;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 22px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.slh-footer-copyright-text {
	font-size: 13px;
	color: var(--slh-footer-text, #d9cfc4);
	opacity: 0.85;
}

.slh-footer-copyright-social {
	display: flex;
	align-items: center;
	gap: 16px;
}

.slh-footer-copyright-social a {
	width: 18px;
	height: 18px;
	display: flex;
	color: var(--slh-footer-text, #d9cfc4);
	transition: color 0.2s ease, transform 0.2s ease;
}

.slh-footer-copyright-social a:hover {
	color: var(--slh-footer-heading, #c9a24a);
	transform: translateY(-1px);
}

.slh-footer-copyright-social svg {
	width: 100%;
	height: 100%;
}

@media (max-width: 900px) {
	.slh-footer-columns {
		grid-template-columns: repeat(2, 1fr);
	}
	.slh-footer {
		padding: 40px 24px 0;
	}
}

@media (max-width: 560px) {
	.slh-footer-columns {
		grid-template-columns: 1fr;
	}
	.slh-footer-copyright {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ---------- 9. TESTIMONIALS ---------- */
.slh-testimonial-card {
	background: var(--slh-test-card-bg, #fff);
	color: var(--slh-test-text, #1e1a17);
	border-radius: 12px;
	padding: 32px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	height: 100%;
	box-sizing: border-box;
}

.slh-testimonial-stars {
	display: flex;
	gap: 4px;
	color: var(--slh-test-accent, #c9a24a);
	margin-bottom: 16px;
}

.slh-testimonial-stars svg {
	width: 18px;
	height: 18px;
}

.slh-testimonial-quote {
	font-size: 16px;
	line-height: 1.7;
	margin: 0 0 24px;
}

.slh-testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.slh-testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.slh-testimonial-name {
	font-weight: 700;
}

.slh-testimonial-role {
	font-size: 13px;
	opacity: 0.7;
}

/* Grid layout */
.slh-testimonials-grid {
	display: grid;
	gap: 28px;
}

.slh-testimonials-cols-2 { grid-template-columns: repeat(2, 1fr); }
.slh-testimonials-cols-3 { grid-template-columns: repeat(3, 1fr); }
.slh-testimonials-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Slider layout */
.slh-testimonials-slider {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
}

.slh-testimonials-track {
	position: relative;
	min-height: 260px;
}

.slh-testimonial-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease;
}

.slh-testimonial-slide.is-active {
	opacity: 1;
	visibility: visible;
	position: relative;
}

.slh-testimonials-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--slh-test-card-bg, #fff);
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 22px;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
	z-index: 2;
}

.slh-testimonials-prev { left: -60px; }
.slh-testimonials-next { right: -60px; }

.slh-testimonials-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.slh-testimonials-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 2px solid var(--slh-test-accent, #c9a24a);
	background: transparent;
	cursor: pointer;
	padding: 0;
}

.slh-testimonials-dot.is-active {
	background: var(--slh-test-accent, #c9a24a);
}

@media (max-width: 900px) {
	.slh-testimonials-cols-3, .slh-testimonials-cols-4 { grid-template-columns: repeat(2, 1fr); }
	.slh-testimonials-prev { left: 0; }
	.slh-testimonials-next { right: 0; }
}

@media (max-width: 600px) {
	.slh-testimonials-cols-2, .slh-testimonials-cols-3, .slh-testimonials-cols-4 { grid-template-columns: 1fr; }
}

/* Auto-scrolling marquee */
.slh-testimonials-marquee {
	overflow: hidden;
	width: 100%;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.slh-testimonials-marquee-track {
	display: flex;
	gap: 28px;
	width: max-content;
	animation-name: slh-marquee-scroll;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.slh-marquee-pause-hover:hover .slh-testimonials-marquee-track {
	animation-play-state: paused;
}

.slh-marquee-card {
	flex-shrink: 0;
}

.slh-marquee-card .slh-testimonial-card {
	height: 100%;
}

@keyframes slh-marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ---------- 10. STANDALONE SLIDER ---------- */
.slh-standalone-slider {
	position: relative;
	width: 100%;
	min-height: 480px;
	overflow: hidden;
	background: #1e1a17; /* visible fallback color if no image is set yet */
}

/* Breaks the slider out of Elementor's boxed container so it spans the
   full browser width, regardless of column/content-width settings. */
.slh-standalone-full-width {
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.slh-standalone-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.slh-standalone-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slh-standalone-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.slh-standalone-overlay {
	position: absolute;
	inset: 0;
}

.slh-standalone-slide-content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	padding: 0 24px;
	color: #fff;
	text-align: center;
	margin: 0 auto;
}

.slh-standalone-slide-content h2 {
	font-size: clamp(28px, 5vw, 52px);
	margin: 0 0 16px;
}

.slh-standalone-slide-content p {
	font-size: clamp(15px, 2vw, 19px);
	margin: 0 0 24px;
}

.slh-standalone-btn {
	display: inline-block;
	background: #c9a24a;
	color: #1e1a17;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 32px;
	border-radius: 4px;
	transition: transform 0.2s ease;
}

.slh-standalone-btn:hover {
	transform: translateY(-2px);
}

.slh-standalone-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: none;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
}

.slh-standalone-prev { left: 24px; }
.slh-standalone-next { right: 24px; }

.slh-standalone-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 10px;
}

.slh-standalone-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: transparent;
	cursor: pointer;
	padding: 0;
}

.slh-standalone-dot.is-active {
	background: #fff;
}
