﻿.related-scroll-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    scrollbar-width: thin;
}

.related-card {
    position: relative;
    min-width: 200px;
    max-width: 200px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    transition: box-shadow 0.2s;
}

    .related-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }

.related-badge {
    position: absolute;
    top: 45px;
    right: -28px;
    background: #dc3545;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 40px;
    z-index: 1;
    transform: rotate(35deg); 
    transform-origin: top right;
    text-align: center;
}

.related-img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    padding: 10px;
    display: block;
}

.related-body {
    padding: 10px;
}

.related-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    min-height: 40px;
}

.related-model {
    font-size: 11px;
    margin-bottom: 2px;
}

.related-price {
    font-size: 14px;
    min-height: 38px;
}
