.carousel {
    width: 100%;
    /* max-width: 340px; */
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    user-select: none;
    touch-action: pan-y;
}

.track {
    display: flex;
    transition: transform 0.35s ease;
}

.slide {
    position: relative;
    min-width: 100%;
    /* height: 200px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 8px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #707070;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.dot.active {
    background: #8B2B09;
    border-color: #8B2B09;
}

.div-dot {
    width: 15px;
    height: 15px;
}