/* ==========================================
   Sellaty Homepage Slider
   ========================================== */

.sellaty-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #111;
}

.sellaty-slider__track {
	position: relative;
	width: 100%;
}

/* Slide */
.sellaty-slider__slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 450px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	z-index: 1;
}

.sellaty-slider__slide.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* Background Image */
.sellaty-slider__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Overlay */
.sellaty-slider__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

/* Content */
.sellaty-slider__content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 3;
	padding: 40px 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.sellaty-slider__title {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.4);
	line-height: 1.3;
}

.sellaty-slider__subtitle {
	font-size: 16px;
	color: rgba(255,255,255,0.9);
	margin: 0 0 16px;
	text-shadow: 0 1px 4px rgba(0,0,0,0.3);
	max-width: 600px;
}

.sellaty-slider__btn {
	display: inline-block;
	padding: 10px 28px;
	background: #c2f720;
	color: #111;
	font-size: 14px;
	font-weight: 700;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
}

.sellaty-slider__btn:hover {
	background: #fff;
	color: #111;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Arrows */
.sellaty-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	padding: 0;
	opacity: 0;
}

.sellaty-slider:hover .sellaty-slider__arrow {
	opacity: 1;
}

.sellaty-slider__arrow:hover {
	background: rgba(255,255,255,0.3);
	transform: translateY(-50%) scale(1.1);
}

.sellaty-slider__arrow--prev {
	right: 20px;
}

.sellaty-slider__arrow--next {
	left: 20px;
}

/* Dots */
.sellaty-slider__dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 8px;
	align-items: center;
}

.sellaty-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}

.sellaty-slider__dot.is-active {
	background: #c2f720;
	width: 28px;
	border-radius: 5px;
}

.sellaty-slider__dot:hover {
	background: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 768px) {
	.sellaty-slider__slide {
		height: 280px !important;
	}

	.sellaty-slider__title {
		font-size: 22px;
	}

	.sellaty-slider__subtitle {
		font-size: 14px;
	}

	.sellaty-slider__content {
		padding: 24px 0;
	}

	.sellaty-slider__arrow {
		width: 36px;
		height: 36px;
		opacity: 1;
	}

	.sellaty-slider__arrow--prev {
		right: 10px;
	}

	.sellaty-slider__arrow--next {
		left: 10px;
	}
}

@media (max-width: 480px) {
	.sellaty-slider__slide {
		height: 220px !important;
	}

	.sellaty-slider__title {
		font-size: 18px;
	}

	.sellaty-slider__btn {
		padding: 8px 20px;
		font-size: 13px;
	}

	.sellaty-slider__dots {
		bottom: 10px;
	}
}
