/* Chevron icon */
.icon-chevron {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.icon-chevron svg {
    width: 100%;
    height: 100%;
}

/* Slider */
.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-slide {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
}

/* Fade-in animation */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in {
    animation: fade-in 0.8s ease-out;
}

/* Dot indicator */
.dot {
    height: 0.5rem;
    border-radius: 9999px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    padding: 0;
}
.dot.active {
    width: 2rem;
    background: var(--primary);
}
.dot:not(.active) {
    width: 0.5rem;
    background: color-mix(in srgb, var(--primary) 30%, transparent);
}
.dot:not(.active):hover {
    background: color-mix(in srgb, var(--primary) 50%, transparent);
}
