.deka-auto-slider-full-wrapper {
	width: 100vw;
	height: 100vh;
	min-height: 600px;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	font-family: 'Inter', sans-serif; /* Font modern */
	overflow: hidden;
}

.deka-auto-swiper {
	width: 100%;
	height: 100%;
}

.deka-bg-image {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
	transform: scale(1.05); /* Ușor mărit pentru un efect fin la fade */
}

.deka-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
	z-index: 2;
}

.deka-content-wrapper {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	z-index: 3;
	color: #fff;
	max-width: 600px;
}

.deka-price {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	display: flex;
	align-items: baseline;
	gap: 5px;
}

.deka-price span {
	font-size: 16px;
	font-weight: 400;
	opacity: 0.8;
}

.deka-title {
	font-size: 64px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 20px 0;
	color: #fff;
}

.deka-meta-icons {
	display: flex;
	gap: 24px;
	margin-bottom: 40px;
}

.deka-meta-icons span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 500;
}

.deka-learn-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #111;
	padding: 14px 28px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s ease;
}

.deka-learn-more:hover {
	background: #f0f0f0;
	color: #000;
}

/* Navigare (Săgeți Stânga-Dreapta) */
.deka-nav-btn {
	background: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: #111;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.deka-nav-btn:hover {
	opacity: 1;
}

.deka-nav-btn::after {
	font-size: 18px !important;
	font-weight: bold;
}

.swiper-button-prev.deka-nav-btn {
	left: 40px;
}

.swiper-button-next.deka-nav-btn {
	right: 40px;
}

/* Paginare (Tabs jos) */
.deka-custom-pagination {
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	z-index: 10;
	display: flex;
	justify-content: center;
	gap: 20px;
	padding: 0 10%;
	box-sizing: border-box;
}

.deka-bullet-tab {
	flex: 1;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.5);
	font-size: 15px;
	font-weight: 500;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	text-align: left;
}

.deka-bullet-tab.swiper-pagination-bullet-active {
	color: #fff;
	border-bottom-color: #fff;
}

.deka-bullet-tab:hover {
	color: rgba(255, 255, 255, 0.8);
}

/* Responsiv */
@media (max-width: 768px) {
	.deka-title { font-size: 40px; }
	.deka-content-wrapper { left: 5%; right: 5%; }
	.deka-custom-pagination { display: none; /* Ascundem tab-urile pe mobil că sunt prea multe */ }
	.swiper-button-prev.deka-nav-btn { left: 10px; }
	.swiper-button-next.deka-nav-btn { right: 10px; }
}
