.related-products {
    margin-top: 2.5rem;
}

.related-products__title {
    margin-bottom: 1.5rem;
}

.related-products__carousel {
    position: relative;
}

.related-products__viewport {
    overflow: hidden;
    width: 100%;
}

.related-products__list {
    --items-per-page: 1;
    display: flex;
    flex-wrap: nowrap !important;
    margin: 0;
    padding: 0;
    list-style: none;
    width: max-content;
    gap: 1.5rem;
}

.related-products__item {
    flex: 0 0 auto;
    width: 250px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .related-products__item {
        width: 200px;
    }
}

.related-products__link {
    display: block;
    text-decoration: none;
}

.related-products__thumbnail {
    display: block;
    margin-bottom: 0.5rem;
}

.related-products__name {
    display: block;
    margin-bottom: 0.5rem;
}

.related-products__price {
    display: block;
    font-weight: 600;
}

.related-products__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
    margin-bottom: 2.5rem;
}

.related-products__dot {
    width: 8px !important;
    height: 8px !important;
    min-height: 0 !important;
    border-radius: 50% !important;
    background: #ccc !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-size: 0 !important;
    line-height: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    flex-shrink: 0 !important;
    align-self: center !important;
}

.related-products__dot:hover {
    background: #999 !important;
}

.related-products__dot.is-active {
    background: #333 !important;
    transform: scale(1.2) !important;
}

