/* Modern Feature Section Styles */
.new-feature-section {
    padding: 20px 0;
    /* background-color: #fff; */
    /* border-top: 1px solid #f0f0f0; */
    /* border-bottom: 1px solid #f0f0f0; */
    overflow: hidden;
    position: relative;
    /* Ensure swiper doesn't overflow */
}

.mobile-hidden-feature {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Swiper container adjustments */
.feature-swiper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.feature-swiper .swiper-wrapper {
    transition-timing-function: linear;
}

.new-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    justify-content: center;
    /* Ensure full width in slide */
    width: 100%;
    height: 100%;
}

.new-feature-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.new-feature-icon-container svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.new-feature-icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    background-color: var(--main-color-one);
}

.new-feature-content {
    display: flex;
    flex-direction: column;
}

.new-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.new-feature-subtitle {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .new-feature-section {
        padding: 15px 0;
    }

    .mobile-hidden-feature {
        opacity: 1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 85%;
        padding: 15px 0;
        background-color: var(--bg-site);
        z-index: 700;
    }

    .new-feature-item {
        padding: 0px 5px;
        /* background: #f9f9f9; */
        /* border: 1px solid #eee; */
        background: unset;
        border: none;
        flex-direction: row;
        /* Keep row on mobile for slider look */
        text-align: center;
        /* RTL support */
        gap: 10px;
        justify-content: center;
        /* Align start for better reading */
    }

    .new-feature-content {
        align-items: center;
        /* Align start for RTL */
    }

    .new-feature-icon-container {
        width: 32px;
        height: 32px;
        padding: 6px;
    }



    .new-feature-title {
        font-size: 13px;
    }

    .new-feature-subtitle {
        display: none;
        /* Show subtitle again as we have space in slider */
        font-size: 10px;
        white-space: nowrap;
        /* Prevent wrapping if it gets too tight */
    }
}