.shroom-carousel-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
}

.shroom-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.shroom-carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.shroom-carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shroom-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.shroom-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5em 1em;
    background: rgba(255, 0, 255, 0.6);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.4rem;
    border-radius: 8px;
    z-index: 10;
}

.shroom-carousel-btn.left {
    left: 10px;
}

.shroom-carousel-btn.right {
    right: 10px;
}