/* Smart Reviews Carousel Styles */

.smart-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.smart-reviews.layout-carousel {
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.smart-reviews.layout-carousel::-webkit-scrollbar {
    display: none;
}

.smart-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.smart-carousel-nav:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.smart-carousel-nav.prev {
    left: 8px;
}

.smart-carousel-nav.next {
    right: 8px;
}

.smart-carousel-nav .dashicons {
    font-size: 18px;
    color: #3b82f6;
    font-weight: bold;
}

.smart-carousel-nav:hover .dashicons {
    color: #ffffff;
}
