.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    perspective: 1200px;
}

.carousel {
    position: relative;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.card {
    position: absolute;
    top: 0;
    width: fit-content;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    background-color: white;

    overflow: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease;
    cursor: pointer;
    will-change: transform, opacity;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.indicators {
    margin-top: 20px;
    text-align: center;
}

.indicator {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 6px;
    background-color: #b3a1b9;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #5b3b5e;
}

/* Tablet */
@media (max-width: 768px) {
    .carousel {
    height: 250px;
    }

    .card {
    width: 160px;
    height: 240px;
    }
}

/* Smartphone */
@media (max-width: 500px) {

    .carousel {
    height: 210px;
    }

    .card {
    width: 120px;
    height: 180px;
    }

    .indicator {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    }
}