

/* Carousel slides: no overflow clip — cards animate from below (opacity 0 at start, no visible spill) */
.aol-carousel-slide {
	overflow: visible;
}

/* Carousel arrow buttons */
.aol-carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) scale(0.8);
	height: 60px;
	width: 60px;
	background-color: rgba(0,0,0,0.5);
	border: 1px solid var(--snd-banana, #f5c518);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: transform 600ms;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	z-index: 10;
}
.aol-carousel-arrow i { color: #fff; }
.aol-arrow-left  { left:  15px; }
.aol-arrow-right { right: 15px; }
.aol-carousel-arrow:not(.hidden):hover {
	transform: translateY(-50%) scale(1);
	transition: transform 600ms;
}
@media (max-width: 767px) {
	.aol-arrow-left  { left:  0; }
	.aol-arrow-right { right: 0; }
	.aol-carousel-arrow { transform: translateY(-50%) scale(0.8); }
	.aol-carousel-arrow:not(.hidden):hover { transform: translateY(-50%) scale(0.8); }
	
}

/* Small arrow buttons for the mobile carousel bottom bar (dots + pager + arrows) */
.aol-carousel-arrow-sm {
	position: static;
	width: 32px;
	height: 32px;
	background-color: rgba(0,0,0,0.5);
	border: 1px solid var(--snd-banana, #f5c518);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	flex-shrink: 0;
	transition: transform 300ms;
}
.aol-carousel-arrow-sm i { color: #fff; font-size: 12px; }
.aol-carousel-arrow-sm:not(.hidden):hover { transform: scale(1.1); }

.embed-container iframe, .embed-container object, .embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 110%;
}
#instaReelPopup {
	height: 505px;
	width: 320px;
	max-height: 65vh;
}
#instaReelPopup .embed-container {
	overflow: hidden !important;
}
/* Prevent browser image sizing from affecting lightbox animation */
.aol-expand-overlay {
	box-sizing: border-box;
	transform: translateZ(0);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.aol-expand-overlay img {
	max-width: none;
	margin: 0;
	padding: 0;
}

/* Hide WebKit scrollbar in thumbnail strip */
.aol-expand-thumbnail-strip::-webkit-scrollbar {
	display: none;
}

/*
 * Keep the carousel as the positioning context for the absolute lightbox.
 */
.aol-gallery-carousel {
	position: relative;
}

/*
 * The overlay is already clipped internally.
 * The carousel track can continue clipping off-screen slides.
 */
.aol-carousel-track {
	position: relative;
	overflow: hidden;
}