.feature-carousel-wrapper {
    position: relative;
    padding: 10px 60px;
}

.feature-carousel {
    display: flex;
    gap: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 16px 4px 24px;
    overflow: visible !important;
    transform: translateX(0);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    transition: transform 0.3s ease;
}

@media (max-width: 991px) {
    .feature-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 575px) {
    .feature-slide {
        flex: 0 0 calc(100% - 0px);
    }
    .feature-carousel-wrapper {
        padding: 10px 44px;
    }
}

.feature-slide .single-feature {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-slide .single-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: #fff;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(222,76,97,0.15);
}

.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(222,76,97,0.35);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-btn-prev { left: 0; }
.carousel-btn-next { right: 0; }

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d5d5d5;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 6px;
}
