.related-products-section {
    margin-top: clamp(24px, 5vw, 48px);
}

.related-products-section h3 {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #333;
    margin-bottom: clamp(12px, 3vw, 16px);
    font-weight: 600;
}

.related-products-scroll {
    display: flex;
    overflow-x: auto;
    gap: max(8px, 3vw);
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #b3c6e0 #f7f9fa;

    ::-webkit-scrollbar {
        display: none;
    }

    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.related-product-card {
    background: #fff;
    border-radius: clamp(8px, 2vw, 10px);
    padding: clamp(10px, 2.5vw, 14px) clamp(8px, 2vw, 12px) clamp(12px, 3vw, 16px) clamp(8px, 2vw, 12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.related-product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.13);
}

.related-product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.related-product-image {
    width: clamp(80px, 20vw, 120px);
    height: clamp(100px, 25vw, 150px);
    object-fit: contain;
    margin-bottom: clamp(8px, 2vw, 10px);
    border-radius: clamp(4px, 1.5vw, 6px);
    background: #f7f9fa;
}

.related-product-title {
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 500;
    color: #222;
    margin-bottom: 4px;
    text-align: center;
}

.related-product-price {
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}
