/* ── Karplexus Depth Carousel ─────────────────────────────── */

.kdc-root {
    width: 100%;
    padding: 40px 0;
}

.kdc-outer {
    overflow: hidden;
    width: 100%;
}

.kdc-swiper {
    width: 100%;
    overflow: visible !important;
}

.kdc-swiper .swiper-wrapper {
    align-items: center;
}

.kdc-slide {
    width: 200px !important;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    will-change: transform, opacity;
	box-shadow: none !important;
}

.kdc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

.kdc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
    transition: background 0.45s ease;
}

.kdc-slide.kdc-active .kdc-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.18) 0%, transparent 40%);
}

/* Inactive label */
.kdc-label {
	position: absolute;
	bottom: 25px;
	left: 25px;
	right: 25px;
	color: #DD7351;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	transition: opacity 0.3s ease;
	background: #fff;
	letter-spacing: -0.36px;
	padding: 27px 22px;
	border-radius: 12.79px;
}

.kdc-slide.kdc-active .kdc-label {
    opacity: 0;
    pointer-events: none;
}

/* Active info card */
.kdc-card {
    display: none;
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: #fff;
    border-radius: 17.06px;
    padding: 30px;
}

.kdc-slide.kdc-active .kdc-card {
    display: block;
}

.kdc-card-icon {
    font-size: 30px;
    margin-bottom: 18px;
    color: #A463F8;
}

.kdc-card-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #A463F8;
    margin-bottom: 18px;
}

.kdc-card-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

/* Mobile */
@media (max-width: 767px) {
    .kdc-slide {
        width: 180px !important;
        height: 260px;
		max-width:100%;
    }
}


/* css added on 5-6-2026 by daksh more*/
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--e-global-color-secondary, #DD7351) !important;
}