/* ============================================================
   SAWI Hero Slider (Loop Edition) — Base Styles
   ============================================================ */
.sawi-premium-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.sawi-premium-slider .swiper-slide {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* 
 * NOTE: The background image, overlay, typography, and buttons 
 * are now handled by the Elementor Template that you design.
 * This CSS file ONLY handles the Slider Engine and SAWI Navigation.
 */

/* ============================================================
   Bottom Navigation & Pagination
   ============================================================ */
.sawi-slider-bottom {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	max-width: 1200px;
}

.sawi-pagination-wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* Dashes */
.swiper-pagination.sawi-dashes {
	position: relative !important;
	bottom: auto !important;
	left: auto !important;
	right: auto !important;
	width: auto !important;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	margin: 0 !important;
	padding: 0 !important;
	transform: none !important;
	gap: 5px;
}

.swiper-pagination.sawi-dashes .swiper-pagination-bullet {
	width: 20px;
	height: 3px;
	border-radius: 0;
	background-color: rgba(255,255,255,0.3);
	opacity: 1;
	margin: 0 !important;
	transform: none !important;
	display: block !important;
	transition: all 0.3s ease;
	cursor: pointer;
}

.swiper-pagination.sawi-dashes .swiper-pagination-bullet-active {
	width: 40px;
	background-color: #ff9900;
}

/* Fraction */
.sawi-fraction {
	color: #888;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	line-height: 1 !important;
	display: flex !important;
	align-items: center !important;
	margin: 0 !important;
	padding: 0 !important;
}

.sawi-fraction .sawi-current {
	color: #fff;
}

/* Arrows */
.sawi-navigation {
	display: flex;
	gap: 10px;
}

.sawi-nav-btn {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: rgba(0,0,0,0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.sawi-nav-btn:hover {
	background-color: rgba(0,0,0,0.8);
}

.sawi-nav-btn svg {
	stroke: #ffffff;
}

/* Progress Bar */
.sawi-autoplay-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: rgba(255,255,255,0.2);
	z-index: 20;
	display: none;
}

.sawi-show-progress .sawi-autoplay-progress {
	display: block !important;
}

.sawi-progress-bar {
	height: 100%;
	width: 0%;
	background-color: #ff9900;
	transition: width linear;
}

/* ============================================================
   Visibility Toggles
   ============================================================ */
.sawi-hide-dashes .sawi-dashes {
	display: none !important;
}

.sawi-hide-fraction .sawi-fraction {
	display: none !important;
}

.sawi-hide-arrows .sawi-navigation {
	display: none !important;
}

/* ============================================================
   Mobile Responsive
   ============================================================ */
@media (max-width: 768px) {
	.sawi-slider-bottom {
		padding: 0 20px;
	}
}
