/* ============================================================
 * OSNOVNA SWIPER LAYOUT PRAVILA
 * ------------------------------------------------------------
 * Elementor učitava samo Swiper JS biblioteku (handle "swiper"),
 * ali ne garantuje da će i Swiper-ov osnovni CSS (flex layout
 * slajdova) uvek biti dostupan na stranici. Bez ovih par pravila
 * .swiper-wrapper nije flex kontejner, pa se svi slajdovi
 * preklapaju jedan preko drugog i "slides_to_show" izgleda kao
 * da ne radi. Ovo su isključivo layout pravila (nema dizajna),
 * pa ne predstavljaju dodatnu eksternu biblioteku.
 * ============================================================ */
.mos-swiper.swiper {
	position: relative;
	width: 100%;
	overflow: hidden;
	list-style: none;
	padding: 0;
	margin: 0;
	z-index: 1;
}

.mos-swiper .swiper-wrapper {
	position: relative;
	width: 100%;
	z-index: 1;
	display: flex;
	align-items: stretch;
	box-sizing: content-box;
	transition-property: transform;
}

.mos-swiper .swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: auto;
	position: relative;
	transition-property: transform;
}

.mos-slider-wrapper {
	position: relative;
	width: 100%;
}

.mos-slide {
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;
	border-radius: 8px;
}

.mos-slide-image,
.mos-slide-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mos-slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	opacity: 0.4;
	z-index: 1;
}

.mos-slide-content {
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 40px;
	box-sizing: border-box;
}

/* Pozicioniranje sadržaja preko slike */
.mos-content-top-left {
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
}
.mos-content-top-center {
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}
.mos-content-center-center {
	justify-content: center;
	align-items: center;
	text-align: center;
}
.mos-content-bottom-left {
	justify-content: flex-end;
	align-items: flex-start;
	text-align: left;
}
.mos-content-bottom-center {
	justify-content: flex-end;
	align-items: center;
	text-align: center;
}

.mos-slide-title {
	margin: 0 0 15px;
	font-size: 32px;
	line-height: 1.3;
	color: #ffffff;
	max-width: 700px;
}

.mos-slide-description {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.6;
	color: #f1f1f1;
	max-width: 600px;
}

.mos-slide-description p {
	margin: 0 0 10px;
}

.mos-slide-description p:last-child {
	margin-bottom: 0;
}

.mos-slide-button {
	display: inline-block;
	padding: 12px 28px;
	background-color: #e91e63;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.mos-slide-button:hover {
	opacity: 0.85;
	transform: translateY(-2px);
	color: #ffffff;
}

/* Strelice / PREV-NEXT tekst (potpuno editabilne iz Elementora) */
.mos-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 22px;
	cursor: pointer;
	user-select: none;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	transition: background 0.3s ease;
}

.mos-arrow:hover {
	background: rgba(0, 0, 0, 0.55);
}

.mos-arrow-prev {
	left: 16px;
}

.mos-arrow-next {
	right: 16px;
}

.mos-arrow.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}

/* Tačkice */
.mos-swiper .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.6;
	width: 10px;
	height: 10px;
}

.mos-swiper .swiper-pagination-bullet-active {
	opacity: 1;
}

/* Mobilni prikaz */
@media (max-width: 767px) {
	.mos-slide-title {
		font-size: 22px;
	}
	.mos-slide-description {
		font-size: 14px;
	}
	.mos-slide-content {
		padding: 20px;
	}
	.mos-arrow {
		min-width: 34px;
		height: 34px;
		font-size: 13px;
		padding: 0 10px;
	}
}
