.bp-product__related { margin: 60px 0 0; }
.bp-product__related-title {
    font-family: "Open Sans", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
    text-align: center;
    margin: 0 0 32px;
}
.bp-product__related-wrap {
    position: relative;
    display: block;
}
.bp-product__related-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    display: flex !important;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.bp-product__related-list::-webkit-scrollbar { height: 6px; }
.bp-product__related-list::-webkit-scrollbar-thumb { background: #dee2e6; border-radius: 3px; }
.bp-product__related-list > li {
    flex: 0 0 230px;
    width: 230px !important;
    max-width: 230px;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    list-style: none;
    scroll-snap-align: start;
}
.bp-product__related .bp-card__link {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.bp-product__related .bp-card__media {
    aspect-ratio: 1 / 1;
    width: 100%;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 14px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: border-color .2s ease;
}
.bp-product__related li:hover .bp-card__media { border-color: #e82693; }
.bp-product__related .bp-card__media img,
.bp-product__related .bp-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.bp-product__related .bp-card__body {
    text-align: center;
    padding: 0 4px;
}
.bp-product__related .bp-card__title {
    margin: 0;
    font-family: "Inter", "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #212529;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}
.bp-product__related .bp-card__price {
    margin: 8px 0 0;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #212529;
}
.bp-product__related .bp-card__price-sep { margin: 0 6px; color: #9c9797; }
.bp-product__related .bp-card__swatches {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    min-height: 20px;
}
.bp-product__related .bp-card__swatch {
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-block;
    flex: 0 0 auto;
}
.bp-product__related-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    z-index: 3;
    padding: 0;
    transition: background .15s ease, color .15s ease;
}
.bp-product__related-arrow:hover { background: #e82693; color: #fff; border-color: #e82693; }
.bp-product__related-arrow--prev { left: -18px; }
.bp-product__related-arrow--next { right: -18px; }
@media (max-width: 767px) {
    .bp-product__related-title { font-size: 24px; }
    .bp-product__related-list > li { flex-basis: 60vw; width: 60vw !important; max-width: 60vw; }
    .bp-product__related-arrow--prev { left: 0; }
    .bp-product__related-arrow--next { right: 0; }
}
