.abcweb-feature-widgets .feature-widget-item {
    padding: 10px;
}

.abcweb-feature-widgets .feature-widget-circle-bg {
    width: 4rem;
    height: 4rem;
    background-color: #f5efe2;
    border-radius: 50%;
    margin: 0 auto;
}

.abcweb-feature-widgets .feature-widget-inner-circle {
    width: 1rem;
    height: 1rem;
    border: 2.5px solid #cc9e73;
    border-radius: 50%;
    padding: 2px;
}

/* If the image itself is the "icon", we might need to mask it or style it */
.abcweb-feature-widgets .feature-widget-inner-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Applying the color to the image if it's an SVG icon might require filter or another approach, 
       but per request, we use the color for the "inner circle" structure. */
}

.abcweb-feature-widgets .feature-widget-title {
    font-weight: 600;
    color: #333;
}

.abcweb-feature-widgets .feature-widget-description {
    font-size: 0.85rem;
    line-height: 1.2;
}

/* Swiper Navigation Styling */
.abcweb-feature-widgets .swiper-button-next,
.abcweb-feature-widgets .swiper-button-prev {
    color: #cc9e73;
    transition: all 0.3s ease;
}

.abcweb-feature-widgets .swiper-button-next:after,
.abcweb-feature-widgets .swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.abcweb-feature-widgets .swiper-button-next:hover,
.abcweb-feature-widgets .swiper-button-prev:hover {
    color: #b38a64;
}

.abcweb-feature-widgets .abcweb-features-prev {
    left: -30px;
}

.abcweb-feature-widgets .abcweb-features-next {
    right: -30px;
}

/* Ensure container has enough padding on sides for arrows on desktop */
@media (min-width: 1200px) {
    .abcweb-feature-widgets .container.position-relative {
        padding-left: 40px;
        padding-right: 40px;
    }

    .abcweb-feature-widgets .abcweb-features-prev {
        left: 0;
    }

    .abcweb-feature-widgets .abcweb-features-next {
        right: 0;
    }
}

/* Pagination Styling */
.abcweb-feature-widgets .abcweb-features-pagination {
    /* Hidden on PC/Tablet */
    display: none;

    bottom: 0.2rem;
}

.abcweb-feature-widgets .swiper-pagination-bullet {
    background: #cc9e73;
    opacity: 0.4;
}

.abcweb-feature-widgets .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Visibility: Mobile only (< 768px) */
@media (max-width: 767px) {
    .abcweb-feature-widgets .abcweb-features-pagination {
        display: block;
    }

    .abcweb-feature-widgets .container.position-relative {
        padding-bottom: 1.5rem;
    }
}

/* Hide arrows on mobile/tablet (< 1024px) */
@media (max-width: 1023px) {

    .abcweb-feature-widgets .abcweb-features-prev,
    .abcweb-feature-widgets .abcweb-features-next {
        display: none;
    }
}