.top-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #fff6df 0%, #fff 100%);
    border-bottom: 2px solid #f2d38b;
}

.top-carousel-track {
    display: flex;
    width: 100%;
    aspect-ratio: 16 / 9;
    transition: transform 0.45s ease;
    will-change: transform;
}

.top-carousel-slide {
    flex: 0 0 100%;
}

.top-carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.top-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.top-carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.top-carousel-dot.is-active {
    background: #dd3d15;
    transform: scale(1.2);
}

@media (max-width: 600px) {
    .top-carousel-track {
        aspect-ratio: 5 / 3;
    }

    .top-carousel-dots {
        bottom: 10px;
        gap: 6px;
        padding: 5px 10px;
    }

    .top-carousel-dot {
        width: 8px;
        height: 8px;
    }
}