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

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

.x-carousel-nav {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.x-carousel-switch {
    width: 50px;
    height: 25px;
    margin: 8px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    color: white;
    background: #6B8598;
    /* background: linear-gradient(120deg, #6B8598 0%, #8FA5B5 50%, #A0B4C4 100%); */
    box-shadow: 0 2px 6px rgba(107, 133, 152, 0.2);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.x-carousel-switch:hover {
    background: #C9A94D;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(201, 169, 77, 0.3);
}

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

.x-carousel-page {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #C4A597;
    /* background: linear-gradient(120deg, #6B8598 0%, #8FA5B5 50%, #A0B4C4 100%); */
    margin: 0 3px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.x-carousel-page.x-carousel-page-active {
    width: 12px;
    height: 13px;
    background: #C9A94D;
}

/* Mobile Responsive Styles for Carousel */
@media screen and (max-width: 768px) {
    .x-carousel-switch {
        width: 40px;
        height: 20px;
        margin: 4px;
        font-size: 12px;
    }

    .x-carousel-nav {
        height: 32px;
    }

    .x-carousel-page {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }

    .x-carousel-page.x-carousel-page-active {
        width: 10px;
        height: 10px;
    }
}
