.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    touch-action: pan-y;
}

.carousel-container {
    position: relative;
    width: 100%;
    padding: 0 50px;
}

.carousel-inner {
    overflow: hidden;
    width: 100%;
}

.carousel-list {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    height: 100%;
}

.carousel-item {
    flex: 0 0 auto;
    width: 100%;
    user-select: none;
}

.carousel-link {
    display: block;
    width: 100%;
    height: 100%;
}

.carousel-image {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.carousel-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.carousel-prev {
    left: 5px;
}

.carousel-next {
    right: 5px;
}

.carousel-prev::after,
.carousel-next::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
}

.carousel-prev::after {
    transform: rotate(45deg);
    margin-left: 4px;
}

.carousel-next::after {
    transform: rotate(-135deg);
    margin-right: 4px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c4c4c4;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #be9462;
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .carousel-container {
        padding: 0;
    }

    .carousel-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .carousel-nav,
    .carousel-dots {
        display: none;
    }
}