.x-carousel-slider {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.x-carousel-slider-item {
    flex: 1 0 0;
}

.x-carousel-nav {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.x-carousel-switch {
    width: 52px;
    height: 28px;
    margin: 8px;
    border-radius: 25px;
    cursor: pointer;
    user-select: none;
    color: #555;
    background: #d9d9d9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.x-carousel-switch:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    background: #ececec;
}

.x-carousel-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.x-carousel-page {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c8c8c8;
    cursor: pointer;
    transition: all 0.25s ease;
    opacity: 0.5;
}

.x-carousel-page.x-carousel-page-active {
    width: 22px;
    height: 10px;
    border-radius: 5px;
    background: #888;
    opacity: 1;
}
